.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: #ee895d;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
.uk-link:hover {
  color: #ee895d;
}
/* 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: #ee895d;
}
/* 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: #ee895d;
  text-shadow: none;
}
::selection {
  background: #ee895d;
  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 #ee895d;
}
/* Small
   ========================================================================== */
/*
   * Reset child height, caused by `inline-block`
   */
.uk-divider-small {
  line-height: 0;
}
.uk-divider-small::after {
  border-top: 2px solid #ee895d;
}
/* ========================================================================
     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: #ee895d;
  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: #ee895d;
  outline: none;
}
/* OnClick + Active */
.uk-icon-button:active,
.uk-active > .uk-icon-button {
  background-color: #ee895d;
  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: #ee895d;
  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: #ee895d;
}
/* OnClick + Active */
.uk-button-default:active,
.uk-button-default.uk-active {
  background-color: #ee895d;
  color: #ffffff;
}
/*
   * Primary
   */
.uk-button-primary {
  background-color: #ee895d;
  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: #ee895d;
  color: #ffffff;
  border-color: #ee895d;
}
/*
   * 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: #ee895d;
}
/* 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: #ee895d;
}
/* Hover + Focus */
.uk-button-link:hover,
.uk-button-link:focus {
  color: #ee895d;
}
/* 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: #ee895d;
}
/*
   * 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: #ee895d;
}
/*
   * 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: #ee895d;
  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: #ee895d;
  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: #ee895d;
}
/*
   * 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: #ee895d;
  color: #ffffff;
}
/*
   * Required for `a`
   */
.uk-badge:hover,
.uk-badge:focus {
  color: #ffffff;
  text-decoration: none;
  outline: none;
}
/* ========================================================================
     Component: Label
   ========================================================================== */
.uk-label {
  background: #ee895d;
  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: #ee895d;
  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: #ee895d;
}
/* 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: #ee895d;
  outline: none;
}
.uk-navbar-nav > li > a:hover::before {
  background-color: currentColor;
}
/* OnClick */
.uk-navbar-nav > li.uk-active > a::before {
  background-color: #ee895d;
}
/* Item
   ========================================================================== */
.uk-navbar-item {
  color: #666;
}
/* Toggle
   ========================================================================== */
.uk-navbar-toggle:hover,
.uk-navbar-toggle:focus,
.uk-navbar-toggle.uk-open {
  color: #ee895d;
}
/* 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: #ee895d;
  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: #ee895d;
  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: #ee895d;
  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: #ee895d;
}
/* 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: #ee895d;
  border-color: transparent;
}
/* Active */
.uk-dotnav > .uk-active > * {
  background-color: #ee895d;
  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: #ee895d;
}
/*
   * 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: #ee895d;
}
/* 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: #ee895d;
}
/*
   * 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: #ee895d;
  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: #ee895d;
}
.uk-progress::-moz-progress-bar {
  background-color: #ee895d;
}
.uk-progress::-ms-fill {
  background-color: #ee895d;
}
/* ========================================================================
     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: #ee895d !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: #ee895d !important;
}
@supports (-webkit-background-clip: text) {
  .uk-text-background {
    background-color: #ee895d;
  }
}
/* ========================================================================
     Component: Background
   ========================================================================== */
/* Color
   ========================================================================== */
.uk-background-default {
  background-color: #ffffff;
}
.uk-background-muted {
  background-color: #f8f8f8;
}
.uk-background-primary {
  background-color: #ee895d;
}
.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: #ee895d;
  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: #ee895d;
  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: #ee895d;
  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: #ee895d;
}
.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: #ee895d;
}
.uk-section-muted .uk-navbar-container.uk-navbar-sticky {
  background-color: #f8f8f8;
}
.uk-section-primary .uk-navbar-container.uk-navbar-sticky {
  background-color: #ee895d;
}
.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: #ee895d;
  border-color: #ee895d;
}
.category .uk-pagination li:hover,
.ap-pagination li:hover,
.dynamic-pagination li:hover {
  border-color: #ee895d;
}
/* ========================================================================
   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: #e9672f;
}
.ap-list-filter dd a.active {
  background-color: #ee895d;
  color: #fff;
  border-radius: 2px;
}
.ap-filter-dropdown .filter-item-wrap.open,
.ap-filter-dropdown .filter-item.active {
  color: #ee895d;
}
.category li a.active {
  color: #ee895d;
}
.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: #ee895d;
}
.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: #ee895d;
  border: 1px solid rgba(238, 137, 93, 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: #ee895d;
}
form .step .ui-step.active .ui-step-title {
  color: #ee895d;
}
/**************** 自定义版块样式 ********************/
.btn-effect-1 {
  border-color: #ee895d;
  background-color: #ee895d;
  color: #fff;
}
.header-effect-6 [data-item='title']::before {
  background-color: #ee895d;
}
.header-effect-7 [data-item='subTitle'] {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  background-color: #ee895d;
  color: #fff !important;
}
.btn-effect-2 {
  background-color: transparent;
  border: 1px solid #ee895d;
  color: #ee895d;
}
.btn-effect-2:hover {
  background-color: #ee895d;
}
.uk-button.btn-effect-5 {
  background-color: #ee895d;
  box-shadow: 0 0 15px rgba(238, 137, 93, 0.8);
}
.header-effect-3 [data-item='title']::after {
  background: #ee895d;
}
.header-effect-6 [data-item='title']::before {
  background-color: #ee895d;
}
#aa2daad0aca13f9 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a905fae925a2f41 .sidebar {
  width: 280px;
}
@media (max-width: 640px) {
  #a905fae925a2f41 .sidebar {
    width: 100%;
  }
}
#a905fae925a2f41 .accordion-menu,
#a905fae925a2f41 .accordion-menu ul ul.submenu,
#a905fae925a2f41 .accordion-menu ul ul.submenu li ul.submenu {
  background: transparent;
}
#a905fae925a2f41 .accordion-menu-header h4 {
  color: #fff;
  font-weight: 500;
  line-height: 50px;
}
#a905fae925a2f41 .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;
}
#a905fae925a2f41 .accordion-menu > ul > li > a {
  background: #ddd;
  font-size: 16px;
}
#a905fae925a2f41 .accordion-menu li a:hover {
  background-color: #ee895d;
  color: #fff;
  border: none;
}
#a905fae925a2f41 .accordion-menu .submenu-indicator {
  cursor: pointer;
  position: absolute;
  font-size: 20px;
  line-height: 50px;
  padding: 0 20px;
  right: 0;
}
#a905fae925a2f41 .contact {
  color: #fff;
}
#a905fae925a2f41 .phone {
  display: block;
  font-size: 28px;
  font-weight: bold;
}
#a905fae925a2f41 .hot-list {
  background: #f7f8f9;
  padding: 15px;
}
#a905fae925a2f41 .hot-list a {
  color: #777;
}
#a905fae925a2f41 .hot-list a:hover {
  color: #ee895d;
}
#a905fae925a2f41 .hot-item .thumb {
  display: block;
  overflow: hidden;
}
#a905fae925a2f41 .hot-item:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  transition: all 0.3s ease-out 0s;
}
#a905fae925a2f41 .hot-item:hover a {
  color: #ee895d;
}
#a905fae925a2f41 .hot-title {
  position: relative;
  padding-left: 10px;
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
#a905fae925a2f41 .hot-title::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 16px;
  border-radius: 3px;
  background: #ee895d;
  content: "";
}
#a905fae925a2f41 .content-header {
  padding-bottom: 10px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a905fae925a2f41 [data-item*=".abstract"], #a905fae925a2f41 [data-item*=".abstract"] a {show: true;}#a905fae925a2f41 [data-item*=".subTitle"], #a905fae925a2f41 [data-item*=".subTitle"] a {show: true;}#a905fae925a2f41 [data-item*=".category"], #a905fae925a2f41 [data-item*=".category"] a {show: true;}#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#aa2daad0aca13f9 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ae4a5a163fa2ee9 .detail-content .goods-params div {
  margin: 4px 0;
}
#ae4a5a163fa2ee9 .desc {
  white-space: pre-wrap;
}
#ae4a5a163fa2ee9 .video-box,
#ae4a5a163fa2ee9 .preview-box {
  margin-bottom: 20px;
  border: 1px solid #eee;
}
#ae4a5a163fa2ee9 .video-box video {
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
#ae4a5a163fa2ee9 .goods-slider {
  width: 430px;
  max-width: 100%;
}
#ae4a5a163fa2ee9 .preview-box img {
  width: 100%;
}
#ae4a5a163fa2ee9 .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;
}
#ae4a5a163fa2ee9 .zoom-indicator {
  background-color: #fff;
  opacity: .3;
  position: absolute;
  right: 0;
  bottom: 0;
}
#ae4a5a163fa2ee9 .zoom-indicator i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
#ae4a5a163fa2ee9 .thumb-box {
  width: 100%;
  position: relative;
}
#ae4a5a163fa2ee9 .thumb-box .btn {
  width: 22px;
  height: 32px;
}
#ae4a5a163fa2ee9 .thumb-box .btn-next {
  background: url(/resources/sys/img/section/btn_next.png) no-repeat center center;
}
#ae4a5a163fa2ee9 .thumb-box .btn-prev {
  background: url(/resources/sys/img/section/btn_prev.png) no-repeat center center;
}
#ae4a5a163fa2ee9 .thumb-list {
  overflow: hidden;
}
#ae4a5a163fa2ee9 .thumb-list ul {
  width: 100000px;
}
#ae4a5a163fa2ee9 .thumb-list ul li {
  list-style: none;
  float: left;
  margin: 0 4px;
  cursor: pointer;
  position: relative;
}
#ae4a5a163fa2ee9 .thumb-list ul li img {
  width: 68px;
  height: 68px;
  border: 2px solid #fff;
}
#ae4a5a163fa2ee9 .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;
}
#ae4a5a163fa2ee9 .thumb-list ul li.thumb-video:hover::after {
  opacity: 1;
  background-size: 35px;
}
#ae4a5a163fa2ee9 .thumb-list ul li.active img {
  border-color: #ee895d;
}
#ae4a5a163fa2ee9 .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;
}
#ae4a5a163fa2ee9 .zoom-box img {
  max-width: initial;
}
#ae4a5a163fa2ee9 .goods-intro .title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}
#ae4a5a163fa2ee9 .goods-intro .desc {
  font-size: 14px;
  line-height: 20px;
  color: #999;
}
#ae4a5a163fa2ee9 .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;
}
#ae4a5a163fa2ee9 .goods-intro .price span {
  line-height: 30px;
}
#ae4a5a163fa2ee9 .goods-intro .price .label {
  min-width: 55px;
  font-size: 13px;
  float: left;
  color: #666;
}
#ae4a5a163fa2ee9 .price .present-price {
  display: inline-block;
  font-weight: 700;
  margin-right: 1px;
  height: 30px;
  font-size: 28px;
  line-height: 30px;
  margin-left: 2px;
  color: #ee895d;
  font-family: "Heiti SC", "Lucida Grande", "Hiragino Sans GB", "Hiragino Sans GB W3", verdana;
}
#ae4a5a163fa2ee9 .price .present-price .rmb {
  margin-left: 0;
  line-height: 30px;
  color: #ee895d;
  font-size: 18px;
}
#ae4a5a163fa2ee9 .price .origin-price {
  display: inline-block;
  font-size: 13px;
  color: #999;
  line-height: 24px;
}
#ae4a5a163fa2ee9 .line-through {
  text-decoration: line-through;
}
#ae4a5a163fa2ee9 .price hr {
  margin: 10px 20px 10px 0;
  overflow: hidden;
  border: none;
  height: 1px;
  border-bottom: 1px dashed #d2d2d2;
}
#ae4a5a163fa2ee9 .price .policy-info {
  margin-left: 65px;
  padding-top: 2px;
  line-height: 20px;
  color: #666;
  display: block;
}
#ae4a5a163fa2ee9 .price .policy-info li {
  display: inline-block;
  position: relative;
  margin-right: 30px;
  line-height: 24px;
}
#ae4a5a163fa2ee9 .price .policy-info li::before {
  content: '･ ';
  position: absolute;
  left: -10px;
  top: 0;
}
#ae4a5a163fa2ee9 .number {
  margin-top: 20px;
  margin-left: 10px;
}
#ae4a5a163fa2ee9 .number .name {
  line-height: 30px;
  width: 54px;
}
#ae4a5a163fa2ee9 .number .select-num {
  display: inline-block;
  border: 1px solid #ddd;
  overflow: hidden;
  line-height: 30px;
}
#ae4a5a163fa2ee9 .select-num .btn {
  position: relative;
  width: 36px;
  height: 30px;
  line-height: 28px;
  background: #fff;
  text-align: center;
  color: #888;
  cursor: pointer;
}
#ae4a5a163fa2ee9 .select-num .btn.disable {
  cursor: not-allowed;
  color: #ececec;
}
#ae4a5a163fa2ee9 .select-num i {
  line-height: 30px;
}
#ae4a5a163fa2ee9 .select-num .less {
  float: left;
  border-right: 1px solid #ddd;
}
#ae4a5a163fa2ee9 .select-num .more {
  float: right;
  border-left: 1px solid #ddd;
}
#ae4a5a163fa2ee9 .select-num input {
  border: none;
  text-align: center;
  font-size: 12px;
  color: #333;
  width: 60px;
  height: 28px;
}
#ae4a5a163fa2ee9 .buttons {
  margin: 30px 0 0 12px;
}
#ae4a5a163fa2ee9 .buttons .button {
  display: inline-block;
  margin-right: 8px;
  width: 168px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  color: #fff;
  background-color: #ee895d;
  text-align: center;
  border-radius: 2px;
}
#ae4a5a163fa2ee9 .promote-goods {
  margin-top: 40px;
  border: 1px solid #e8e8e8;
}
#ae4a5a163fa2ee9 .promote-goods .price {
  color: #d62525;
  line-height: 22px;
}
#ae4a5a163fa2ee9 .promote-goods .promote-title {
  height: 44px;
  line-height: 44px;
  padding-left: 15px;
  font-size: 17px;
  position: relative;
  background-color: #f5f5f5;
}
#ae4a5a163fa2ee9 .promote-goods .uk-slider {
  padding: 10px 50px;
}
#ae4a5a163fa2ee9 .hot-list .img-wrap {
  display: block;
}
#ae4a5a163fa2ee9 .right {
  width: 298px;
  border: 1px solid #e8e8e8;
}
#ae4a5a163fa2ee9 .right .title {
  line-height: 40px;
  background-color: #f5f5f5;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid #e8e8e8;
}
#ae4a5a163fa2ee9 .left .nav-wrap {
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  height: 44px;
}
#ae4a5a163fa2ee9 .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;
}
#ae4a5a163fa2ee9 .detail-nav-tab ul {
  display: flex;
  overflow: scroll;
  scrollbar-width: 0;
}
#ae4a5a163fa2ee9 ::-webkit-scrollbar {
  display: none;
}
#ae4a5a163fa2ee9 .left .detail-nav-tab .item a {
  color: #555;
  font-weight: 500;
  display: block;
}
#ae4a5a163fa2ee9 .left .detail-nav-tab .item.uk-active,
#ae4a5a163fa2ee9 .left .detail-nav-tab .item:hover {
  background: #fff;
  border-top: 3px solid #ee895d;
  background-color: #fff;
  border-bottom: 1px solid #fff;
  line-height: 40px;
}
#ae4a5a163fa2ee9 .left .detail-nav-tab .item.uk-active a {
  color: #ee895d;
  cursor: default;
}
#ae4a5a163fa2ee9 .hot-list .item {
  margin: 24px 24px 0;
  border-bottom: 1px solid #e8e8e8;
}
#ae4a5a163fa2ee9 .hot-list .item:last-child {
  border-bottom: none;
}
#ae4a5a163fa2ee9 .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;
}
#ae4a5a163fa2ee9 .hot-list .item .goods-title:hover {
  color: #ee895d;
}
#ae4a5a163fa2ee9 .hot-list .item .price {
  font-size: 14px;
  line-height: 1;
  color: #ee895d;
  text-align: center;
  font-weight: bolder;
  font-family: "Heiti SC", "Lucida Grande", "Hiragino Sans GB", "Hiragino Sans GB W3", verdana;
}
#ae4a5a163fa2ee9 .hot-list .item .origin-price {
  text-decoration: line-through;
  color: #666;
}
#ae4a5a163fa2ee9 .hot-list .item .goods-info {
  padding: 0 5px 18px;
}
#ae4a5a163fa2ee9 .goods-params span {
  display: inline-block;
  width: 100px;
  color: #999;
}
@media (max-width: 640px) {
  #ae4a5a163fa2ee9 .right {
    width: 100%;
  }
  #ae4a5a163fa2ee9 .preview-box img {
    height: 340px;
  }
  #ae4a5a163fa2ee9 .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;
  }
  #ae4a5a163fa2ee9 .goods-intro .buttons .button {
    margin: 0;
    width: 50%;
    font-size: 14px;
    border-radius: 0;
  }
  #ae4a5a163fa2ee9 .goods-intro .buttons .button-buy {
    border: 0;
    background: #fff;
  }
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac3d0a2df3afcc3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a9c6dada60ab5e6 .sidebar {
  width: 300px;
  margin-left: 20px;
}
#a9c6dada60ab5e6 .sidebar.left {
  margin-left: 0;
  margin-right: 20px;
}
@media (max-width: 640px) {
  #a9c6dada60ab5e6 .sidebar {
    width: 100%;
    margin: 0 0 15px;
  }
}
#a9c6dada60ab5e6 .data-list .uk-card {
  cursor: pointer !important;
}
#a9c6dada60ab5e6 .data-list .uk-card img {
  max-height: 300px;
}
#a9c6dada60ab5e6 .data-list .uk-card:hover {
  background: #fafafa;
}
#a9c6dada60ab5e6 .data-list .uk-card:hover .uk-h4 {
  color: #ee895d;
}
#a9c6dada60ab5e6 .data-list .uk-card .uk-card-media-left img {
  transition: all .3s ease;
}
#a9c6dada60ab5e6 .data-list .uk-card .uk-card-media-left:hover img {
  transform: scale(1.05);
}
#a9c6dada60ab5e6 .data-list .uk-card-media-left {
  border-radius: 4px;
  overflow: hidden;
}
#a9c6dada60ab5e6 .search-form {
  position: relative;
  overflow: hidden;
  background: #fff;
  display: block;
}
#a9c6dada60ab5e6 .search-form input.search-input {
  width: 100%;
  height: 34px;
  padding: 5px 52px 5px 10px;
  font-size: 14px;
  color: #333;
  border: 1px solid #efefef;
}
#a9c6dada60ab5e6 .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: #ee895d;
  cursor: pointer;
}
#a9c6dada60ab5e6 .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;
}
#a9c6dada60ab5e6 .uk-card .category:hover {
  background: #ee895d;
}
#a9c6dada60ab5e6 .accordion-menu {
  width: 100%;
}
#a9c6dada60ab5e6 .accordion-menu ul ul.submenu,
#a9c6dada60ab5e6 .accordion-menu ul ul.submenu li ul.submenu {
  background: transparent;
}
#a9c6dada60ab5e6 .accordion-menu-header {
  padding: 10px 10px 0;
  border-bottom: 1px solid #ececec;
}
#a9c6dada60ab5e6 .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;
}
#a9c6dada60ab5e6 .accordion-menu > ul > li > a {
  background: #fff;
  font-size: 14px;
  border-bottom: 1px solid #ececec;
}
#a9c6dada60ab5e6 .accordion-menu .menu-item.active > a {
  background: #ee895d;
  color: #fff;
}
#a9c6dada60ab5e6 .accordion-menu li a:hover {
  background-color: #ee895d;
  color: #fff;
  border: none;
}
#a9c6dada60ab5e6 .accordion-menu .submenu-indicator {
  cursor: pointer;
  position: absolute;
  font-size: 20px;
  line-height: 40px;
  padding: 0 20px;
  right: 0;
}
#a9c6dada60ab5e6 .phone {
  display: block;
  font-size: 24px;
  font-weight: bold;
}
#a9c6dada60ab5e6 .hot-list,
#a9c6dada60ab5e6 .new-list {
  padding: 12px;
}
#a9c6dada60ab5e6 .new-list a:hover,
#a9c6dada60ab5e6 .hot-list a:hover {
  color: #ee895d;
}
#a9c6dada60ab5e6 .hot-item .thumb {
  display: inline-block;
  width: 100px;
  overflow: hidden;
  margin-right: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
#a9c6dada60ab5e6 .hot-item:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  transition: all 0.3s ease-out 0s;
}
#a9c6dada60ab5e6 .hot-item:hover a {
  color: #ee895d;
}
#a9c6dada60ab5e6 .panel-title {
  position: relative;
  padding-left: 10px;
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
#a9c6dada60ab5e6 .panel-title::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 16px;
  border-radius: 3px;
  background: #ee895d;
  content: "";
}
#a9c6dada60ab5e6 .content-header {
  padding-bottom: 10px;
}
#a9c6dada60ab5e6 .item-title {
  color: #333;
}
#a9c6dada60ab5e6 input::placeholder {
  color: #999;
}
#a9c6dada60ab5e6 .datetime {
  color: #999;
}
#a9c6dada60ab5e6 .new-item a {
  padding-left: 25px;
}
#a9c6dada60ab5e6 .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;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac3d0a2df3afcc3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aff8ca361aaf9b4 {
  min-height: 300px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#ab19baa62baecb9 {
  overflow: hidden;
}
#ab19baa62baecb9 , #ab19baa62baecb9 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;text-align: left;font-family: inherit;color: rgba(17, 17, 17, 1);}#a0855a4260a1658 > .ele-wrap {background-color: rgba(231, 86, 23, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a413ea65a6ae6f0, #a413ea65a6ae6f0 a {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;text-align: left;font-family: inherit;color: rgba(17, 17, 17, 1);}#ad28dac889abe45, #ad28dac889abe45 a {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;text-align: left;font-family: inherit;color: rgba(17, 17, 17, 1);}#ab279ade5aaba35 {
  overflow: hidden;
}
#ab279ade5aaba35 , #ab279ade5aaba35 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 28px;text-align: left;font-family: inherit;color: rgba(51, 51, 51, 1);}#aff8ca361aaf9b4 [data-item="undefined"] {
        font-weight: normal;
        font-style: normal;
    font-size: 285px;text-align: left;font-family: inherit;color: rgba(51, 51, 51, 1);}#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac3d0a2df3afcc3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a6241a554aad56e .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aa2d5aeae7a31f6 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#af4e1a4e80a0b9e .ele-slideshow .uk-slidenav {
  background-color: rgba(75, 75, 75, 0.71);
}
#af4e1a4e80a0b9e .ele-slideshow .uk-slidenav {
  color: rgba(255, 255, 255, 0.76);
}
#ace8aafa7da85f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#ace8aafa7da85f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a1e9eadc58a0286 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a1e9eadc58a0286 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);}#a1440a290ba1bb3 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a1440a290ba1bb3 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);}#af972a3914a6606 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#af972a3914a6606 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);}#a783cab7c4a9932 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a783cab7c4a9932 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);}#af92ca041baa652 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#af92ca041baa652 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);}#ae106aaeecaaf7b {
  overflow: hidden;
  pointer-events: none;
  border-right-style: solid;
  border-left-style: solid;
}
#ae106aaeecaaf7b > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#ae106aaeecaaf7b > .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;
}
#ae106aaeecaaf7b > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ae106aaeecaaf7b > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#ae106aaeecaaf7b > .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;
}
#ae106aaeecaaf7b > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ae106aaeecaaf7b > .tab-wrap > div > .tab-nav,
#ae106aaeecaaf7b > .tab-nav,
#ae106aaeecaaf7b > .tab-tabs > .tab-wrap > div > .tab-nav,
#ae106aaeecaaf7b > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
}
#ae106aaeecaaf7b > .tab-wrap > div > .tab-nav-horizontal,
#ae106aaeecaaf7b > .tab-nav-horizontal,
#ae106aaeecaaf7b > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#ae106aaeecaaf7b > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#ae106aaeecaaf7b > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ae106aaeecaaf7b > .tab-nav-horizontal::-webkit-scrollbar,
#ae106aaeecaaf7b > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ae106aaeecaaf7b > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#ae106aaeecaaf7b > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ae106aaeecaaf7b > .tab-nav-horizontal.tagScroll,
#ae106aaeecaaf7b > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ae106aaeecaaf7b > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 46px;
  overflow-x: auto;
}
#ae106aaeecaaf7b > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ae106aaeecaaf7b > .tab-nav-horizontal.tagScroll li a,
#ae106aaeecaaf7b > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ae106aaeecaaf7b > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#ae106aaeecaaf7b > .tab-wrap > div > .tab-nav a,
#ae106aaeecaaf7b > .tab-nav a,
#ae106aaeecaaf7b > .tab-tabs > .tab-wrap > div > .tab-nav a,
#ae106aaeecaaf7b > .tab-tabs > .tab-nav a {
  padding: 0 156px;
}
#ae106aaeecaaf7b > .tab-wrap > div > .tab-nav li a,
#ae106aaeecaaf7b > .tab-nav li a,
#ae106aaeecaaf7b > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#ae106aaeecaaf7b > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 45px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 46px;
  font-weight: normal;
  font-style: normal;
  font-size: 26px;
  font-family: inherit;
  color: #000000;
  background-color: #ffffff;
  margin-top: 7px;
  border-bottom-width: 2px;
  border-bottom-color: #50e3c2;
  border-bottom-style: solid;
  margin-left: 70px;
  border-left-width: 0;
  border-left-style: solid;
  padding: 0 156px;
}
#ae106aaeecaaf7b > .tab-wrap > div > .tab-nav li a svg,
#ae106aaeecaaf7b > .tab-nav li a svg,
#ae106aaeecaaf7b > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#ae106aaeecaaf7b > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#ae106aaeecaaf7b > .tab-wrap > div > .tab-nav li a .ap_icon,
#ae106aaeecaaf7b > .tab-nav li a .ap_icon,
#ae106aaeecaaf7b > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#ae106aaeecaaf7b > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#ae106aaeecaaf7b > .tab-wrap > div > .tab-nav li a:hover,
#ae106aaeecaaf7b > .tab-nav li a:hover,
#ae106aaeecaaf7b > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#ae106aaeecaaf7b > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ea3e00;
}
#ae106aaeecaaf7b > .tab-wrap > div > .tab-nav li.uk-active a,
#ae106aaeecaaf7b > .tab-nav li.uk-active a,
#ae106aaeecaaf7b > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#ae106aaeecaaf7b > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #010101;
  border-bottom-width: 2px;
  border-bottom-color: #ff3d00;
}
#ae106aaeecaaf7b .layout-left li,
#ae106aaeecaaf7b .layout-center li,
#ae106aaeecaaf7b .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#ae106aaeecaaf7b .layout-left li a,
#ae106aaeecaaf7b .layout-center li a,
#ae106aaeecaaf7b .layout-right li a {
  height: 100%;
}
#ae106aaeecaaf7b > .tab-tabs .layout-left {
  text-align: left;
}
#ae106aaeecaaf7b > .tab-tabs .layout-center {
  text-align: center;
}
#ae106aaeecaaf7b > .tab-tabs .layout-right {
  text-align: right;
}
#ae106aaeecaaf7b .tab-contents {
  height: 100%;
  height: calc(100% - 46px);
}
#ae106aaeecaaf7b .tab-content-wrap {
  background-color: #f9f5f5;
  border-right-style: solid;
}
#ae106aaeecaaf7b .tab-contents,
#ae106aaeecaaf7b .tab-contents-wrap {
  pointer-events: none;
}
#ae106aaeecaaf7b .tab-content,
#ae106aaeecaaf7b .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#ae106aaeecaaf7b .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#ae106aaeecaaf7b .tab-wrap .tab-contents {
  height: 100%;
}
#ae106aaeecaaf7b .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#ae106aaeecaaf7b .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#ae106aaeecaaf7b .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#ae478a3ca2a5293 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abad8a2bb2a5557 .ele-slideshow .uk-slidenav {
  background-color: rgba(117, 117, 117, 0.84);
}
#ab9f3ac578a5a14 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a3304a9e68ab4e3 .uk-grid {
  margin-left: -50px;
}
#a3304a9e68ab4e3 .uk-grid > * {
  padding-left: 50px;
}
#a3304a9e68ab4e3 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a3304a9e68ab4e3 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a3304a9e68ab4e3 .uk-position-center-left-out {
    left: -30px;
  }
  #a3304a9e68ab4e3 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#aa0c1a95b7a802e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a96e5a631ba6b8c .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;
                background-image: linear-gradient(0deg,
                rgba(255, 88, 0, 1),
                rgba(253, 127, 2, 1));
            border-radius: 0px;justify-content: center;border-style: solid;}#a96e5a631ba6b8c .ele-wrap:hover {background-color: #0483cc;}#abbe5a8edeaa512 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#abbe5a8edeaa512 .ele-wrap:hover {background-color: #0483cc;}#a2612ab2e4a4396 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#a2612ab2e4a4396 .ele-wrap:hover {background-color: #0483cc;}#a4018ae781a6c17 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#a4018ae781a6c17 .ele-wrap:hover {background-color: #0483cc;}#a77ceaa6a6a9565 {
  overflow: hidden;
  pointer-events: none;
}
#a77ceaa6a6a9565 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a77ceaa6a6a9565 > .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;
}
#a77ceaa6a6a9565 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a77ceaa6a6a9565 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a77ceaa6a6a9565 > .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;
}
#a77ceaa6a6a9565 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a77ceaa6a6a9565 > .tab-wrap > div > .tab-nav,
#a77ceaa6a6a9565 > .tab-nav,
#a77ceaa6a6a9565 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a77ceaa6a6a9565 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  background-color: #ffffff;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#a77ceaa6a6a9565 > .tab-wrap > div > .tab-nav-horizontal,
#a77ceaa6a6a9565 > .tab-nav-horizontal,
#a77ceaa6a6a9565 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a77ceaa6a6a9565 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a77ceaa6a6a9565 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a77ceaa6a6a9565 > .tab-nav-horizontal::-webkit-scrollbar,
#a77ceaa6a6a9565 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a77ceaa6a6a9565 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a77ceaa6a6a9565 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a77ceaa6a6a9565 > .tab-nav-horizontal.tagScroll,
#a77ceaa6a6a9565 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a77ceaa6a6a9565 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 61px;
  overflow-x: auto;
}
#a77ceaa6a6a9565 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a77ceaa6a6a9565 > .tab-nav-horizontal.tagScroll li a,
#a77ceaa6a6a9565 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a77ceaa6a6a9565 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a77ceaa6a6a9565 > .tab-wrap > div > .tab-nav a,
#a77ceaa6a6a9565 > .tab-nav a,
#a77ceaa6a6a9565 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a77ceaa6a6a9565 > .tab-tabs > .tab-nav a {
  padding: 0 24px;
}
#a77ceaa6a6a9565 > .tab-wrap > div > .tab-nav li a,
#a77ceaa6a6a9565 > .tab-nav li a,
#a77ceaa6a6a9565 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a77ceaa6a6a9565 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 61px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  border-right-style: solid;
  margin-right: 7px;
  margin-left: 7px;
  border-right-width: 1px;
  border-right-color: #ababab;
  border-left-color: #d2d2d2;
  border-bottom-color: #d2d2d2;
  border-top-color: #d2d2d2;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
  padding: 0 24px;
}
#a77ceaa6a6a9565 > .tab-wrap > div > .tab-nav li a svg,
#a77ceaa6a6a9565 > .tab-nav li a svg,
#a77ceaa6a6a9565 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a77ceaa6a6a9565 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a77ceaa6a6a9565 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a77ceaa6a6a9565 > .tab-nav li a .ap_icon,
#a77ceaa6a6a9565 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a77ceaa6a6a9565 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a77ceaa6a6a9565 > .tab-wrap > div > .tab-nav li a:hover,
#a77ceaa6a6a9565 > .tab-nav li a:hover,
#a77ceaa6a6a9565 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a77ceaa6a6a9565 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff6a02;
  border-bottom-width: 2px;
  border-bottom-color: #ff6a02;
  border-bottom-style: solid;
}
#a77ceaa6a6a9565 > .tab-wrap > div > .tab-nav li.uk-active a,
#a77ceaa6a6a9565 > .tab-nav li.uk-active a,
#a77ceaa6a6a9565 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a77ceaa6a6a9565 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 2px;
  border-bottom-color: #9b9b9b;
  border-bottom-style: solid;
  background-color: #fb5800;
}
#a77ceaa6a6a9565 .layout-left li,
#a77ceaa6a6a9565 .layout-center li,
#a77ceaa6a6a9565 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a77ceaa6a6a9565 .layout-left li a,
#a77ceaa6a6a9565 .layout-center li a,
#a77ceaa6a6a9565 .layout-right li a {
  height: 100%;
}
#a77ceaa6a6a9565 > .tab-tabs .layout-left {
  text-align: left;
}
#a77ceaa6a6a9565 > .tab-tabs .layout-center {
  text-align: center;
}
#a77ceaa6a6a9565 > .tab-tabs .layout-right {
  text-align: right;
}
#a77ceaa6a6a9565 .tab-contents {
  height: 100%;
  height: calc(100% - 61px);
}
#a77ceaa6a6a9565 .tab-content-wrap {
  background-color: #ffffff;
}
#a77ceaa6a6a9565 .tab-contents,
#a77ceaa6a6a9565 .tab-contents-wrap {
  pointer-events: none;
}
#a77ceaa6a6a9565 .tab-content,
#a77ceaa6a6a9565 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a77ceaa6a6a9565 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a77ceaa6a6a9565 .tab-wrap .tab-contents {
  height: 100%;
}
#a77ceaa6a6a9565 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a77ceaa6a6a9565 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a77ceaa6a6a9565 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a3de9a0259a5728 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8c5cad338a929a .uk-grid {
  margin-left: -15px;
}
#a8c5cad338a929a .uk-grid > * {
  padding-left: 15px;
}
#a8c5cad338a929a .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a8c5cad338a929a .ap-category-filter ul li.active {
  border-color: #ee895d;
  color: #ee895d;
}
#a8c5cad338a929a .article {
  background-color: #fff;
  border-bottom: 1px solid #4d4d4e;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  background-color: #ffffff;
  border-bottom-style: dashed;
}
#a8c5cad338a929a .article .info {
  padding: 6px 10px;
  position: relative;
}
#a8c5cad338a929a .article .info p {
  margin: 10px 0 10px;
}
#a8c5cad338a929a .article svg {
  fill: currentColor;
}
#a8c5cad338a929a .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#a8c5cad338a929a .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#a8c5cad338a929a .article.list-icon .info {
  padding-left: 25px;
}
#a8c5cad338a929a .article .datetime {
  position: absolute;
  right: 10px;
  top: 6px;
}
#a8c5cad338a929a .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: left;
  font-family: inherit;
  color: #000000;
}
#a8c5cad338a929a .article .abstract {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  color: #626161;
}
#a8c5cad338a929a .article:hover {
  background-color: #ff5800;
  border-top: 1px solid auto;
}
#a8c5cad338a929a .article:hover .title {
  color: #ffffff;
}
#a8c5cad338a929a .article:hover .datetime {
  color: #b6b6b6;
}
#a8c5cad338a929a .article:hover .category {
  color: #b6b6b6;
}
#a8c5cad338a929a .article:hover .abstract {
  color: #ffffff;
}
#a8c5cad338a929a .article:hover .btn_icon {
  color: #b6b6b6;
}
#a8c5cad338a929a .article:hover .list_icon {
  color: #ff5800;
}
#aaca2a4d6cae88d > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0585a1d58a1baf .ad07aa5c52aa239 .img-wrap {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #c3c3c3;
  border-left-color: #c3c3c3;
  border-bottom-color: #c3c3c3;
  border-top-color: #c3c3c3;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#a0585a1d58a1baf .uk-grid {
  margin-left: 0px;
}
#a0585a1d58a1baf .uk-grid > * {
  padding-left: 0px;
}
#a0585a1d58a1baf .uk-grid > .uk-grid-margin {
  margin-top: 10px;
}
#a0585a1d58a1baf .dynamic-list-item {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a0585a1d58a1baf .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a0585a1d58a1baf .uk-position-center-left-out {
    left: -30px;
  }
  #a0585a1d58a1baf .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac09aa7b8caf466 {background-color: rgba(0,0,0,0.7);}#ac09aa7b8caf466 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#aa065abe0fad15d .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a3ed2a4d08ab865 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#adc18a4fa1a60c9 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#aa8fca2ffea37f7 .ele-slideshow .uk-slidenav {
  background-color: rgba(75, 75, 75, 0.71);
}
#aa8fca2ffea37f7 .ele-slideshow .uk-slidenav {
  color: rgba(255, 255, 255, 0.76);
}
#a90d7af2c2a7c23 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a90d7af2c2a7c23  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a4d52a9053ad3e0 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a4d52a9053ad3e0 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);}#ab021aa35ea5cb3 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#ab021aa35ea5cb3 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);}#a49ddaad4ead7c2 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a49ddaad4ead7c2 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);}#a9341ad1bbab743 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a9341ad1bbab743 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);}#a019ba05a2ad9a9 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a019ba05a2ad9a9 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);}#a054eae5a6ac438 {
  overflow: hidden;
  pointer-events: none;
  border-right-style: solid;
  border-left-style: solid;
}
#a054eae5a6ac438 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a054eae5a6ac438 > .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;
}
#a054eae5a6ac438 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a054eae5a6ac438 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a054eae5a6ac438 > .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;
}
#a054eae5a6ac438 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a054eae5a6ac438 > .tab-wrap > div > .tab-nav,
#a054eae5a6ac438 > .tab-nav,
#a054eae5a6ac438 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a054eae5a6ac438 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
}
#a054eae5a6ac438 > .tab-wrap > div > .tab-nav-horizontal,
#a054eae5a6ac438 > .tab-nav-horizontal,
#a054eae5a6ac438 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a054eae5a6ac438 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a054eae5a6ac438 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a054eae5a6ac438 > .tab-nav-horizontal::-webkit-scrollbar,
#a054eae5a6ac438 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a054eae5a6ac438 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a054eae5a6ac438 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a054eae5a6ac438 > .tab-nav-horizontal.tagScroll,
#a054eae5a6ac438 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a054eae5a6ac438 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 46px;
  overflow-x: auto;
}
#a054eae5a6ac438 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a054eae5a6ac438 > .tab-nav-horizontal.tagScroll li a,
#a054eae5a6ac438 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a054eae5a6ac438 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a054eae5a6ac438 > .tab-wrap > div > .tab-nav a,
#a054eae5a6ac438 > .tab-nav a,
#a054eae5a6ac438 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a054eae5a6ac438 > .tab-tabs > .tab-nav a {
  padding: 0 156px;
}
#a054eae5a6ac438 > .tab-wrap > div > .tab-nav li a,
#a054eae5a6ac438 > .tab-nav li a,
#a054eae5a6ac438 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a054eae5a6ac438 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 45px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 46px;
  font-weight: normal;
  font-style: normal;
  font-size: 26px;
  font-family: inherit;
  color: #000000;
  background-color: #ffffff;
  margin-top: 7px;
  border-bottom-width: 2px;
  border-bottom-color: #50e3c2;
  border-bottom-style: solid;
  margin-left: 70px;
  border-left-width: 0;
  border-left-style: solid;
  padding: 0 156px;
}
#a054eae5a6ac438 > .tab-wrap > div > .tab-nav li a svg,
#a054eae5a6ac438 > .tab-nav li a svg,
#a054eae5a6ac438 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a054eae5a6ac438 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a054eae5a6ac438 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a054eae5a6ac438 > .tab-nav li a .ap_icon,
#a054eae5a6ac438 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a054eae5a6ac438 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a054eae5a6ac438 > .tab-wrap > div > .tab-nav li a:hover,
#a054eae5a6ac438 > .tab-nav li a:hover,
#a054eae5a6ac438 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a054eae5a6ac438 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ea3e00;
}
#a054eae5a6ac438 > .tab-wrap > div > .tab-nav li.uk-active a,
#a054eae5a6ac438 > .tab-nav li.uk-active a,
#a054eae5a6ac438 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a054eae5a6ac438 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #010101;
  border-bottom-width: 2px;
  border-bottom-color: #ff3d00;
}
#a054eae5a6ac438 .layout-left li,
#a054eae5a6ac438 .layout-center li,
#a054eae5a6ac438 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a054eae5a6ac438 .layout-left li a,
#a054eae5a6ac438 .layout-center li a,
#a054eae5a6ac438 .layout-right li a {
  height: 100%;
}
#a054eae5a6ac438 > .tab-tabs .layout-left {
  text-align: left;
}
#a054eae5a6ac438 > .tab-tabs .layout-center {
  text-align: center;
}
#a054eae5a6ac438 > .tab-tabs .layout-right {
  text-align: right;
}
#a054eae5a6ac438 .tab-contents {
  height: 100%;
  height: calc(100% - 46px);
}
#a054eae5a6ac438 .tab-content-wrap {
  background-color: #f9f5f5;
  border-right-style: solid;
}
#a054eae5a6ac438 .tab-contents,
#a054eae5a6ac438 .tab-contents-wrap {
  pointer-events: none;
}
#a054eae5a6ac438 .tab-content,
#a054eae5a6ac438 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a054eae5a6ac438 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a054eae5a6ac438 .tab-wrap .tab-contents {
  height: 100%;
}
#a054eae5a6ac438 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a054eae5a6ac438 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a054eae5a6ac438 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a9830a4a20aabe5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a001ca4217a604b .ele-slideshow .uk-slidenav {
  background-color: rgba(117, 117, 117, 0.84);
}
#a8833a9e2aa5226 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a12c9a7e4faaf16 .uk-grid {
  margin-left: -50px;
}
#a12c9a7e4faaf16 .uk-grid > * {
  padding-left: 50px;
}
#a12c9a7e4faaf16 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a12c9a7e4faaf16 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a12c9a7e4faaf16 .uk-position-center-left-out {
    left: -30px;
  }
  #a12c9a7e4faaf16 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a0d77ae183abdda > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af3a4a432aaaf1c .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;
                background-image: linear-gradient(0deg,
                rgba(255, 88, 0, 1),
                rgba(253, 127, 2, 1));
            border-radius: 0px;justify-content: center;border-style: solid;}#af3a4a432aaaf1c .ele-wrap:hover {background-color: #0483cc;}#af3a8add17a39b1 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#af3a8add17a39b1 .ele-wrap:hover {background-color: #0483cc;}#ae335a882eab0e7 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#ae335a882eab0e7 .ele-wrap:hover {background-color: #0483cc;}#ad51ca0ebda02a9 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#ad51ca0ebda02a9 .ele-wrap:hover {background-color: #0483cc;}#a338eac4cfa3a95 {
  overflow: hidden;
  pointer-events: none;
}
#a338eac4cfa3a95 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a338eac4cfa3a95 > .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;
}
#a338eac4cfa3a95 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a338eac4cfa3a95 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a338eac4cfa3a95 > .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;
}
#a338eac4cfa3a95 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a338eac4cfa3a95 > .tab-wrap > div > .tab-nav,
#a338eac4cfa3a95 > .tab-nav,
#a338eac4cfa3a95 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a338eac4cfa3a95 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  background-color: #ffffff;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#a338eac4cfa3a95 > .tab-wrap > div > .tab-nav-horizontal,
#a338eac4cfa3a95 > .tab-nav-horizontal,
#a338eac4cfa3a95 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a338eac4cfa3a95 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a338eac4cfa3a95 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a338eac4cfa3a95 > .tab-nav-horizontal::-webkit-scrollbar,
#a338eac4cfa3a95 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a338eac4cfa3a95 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a338eac4cfa3a95 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a338eac4cfa3a95 > .tab-nav-horizontal.tagScroll,
#a338eac4cfa3a95 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a338eac4cfa3a95 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 61px;
  overflow-x: auto;
}
#a338eac4cfa3a95 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a338eac4cfa3a95 > .tab-nav-horizontal.tagScroll li a,
#a338eac4cfa3a95 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a338eac4cfa3a95 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a338eac4cfa3a95 > .tab-wrap > div > .tab-nav a,
#a338eac4cfa3a95 > .tab-nav a,
#a338eac4cfa3a95 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a338eac4cfa3a95 > .tab-tabs > .tab-nav a {
  padding: 0 24px;
}
#a338eac4cfa3a95 > .tab-wrap > div > .tab-nav li a,
#a338eac4cfa3a95 > .tab-nav li a,
#a338eac4cfa3a95 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a338eac4cfa3a95 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 61px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  border-right-style: solid;
  margin-right: 7px;
  margin-left: 7px;
  border-right-width: 1px;
  border-right-color: #ababab;
  border-left-color: #d2d2d2;
  border-bottom-color: #d2d2d2;
  border-top-color: #d2d2d2;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
  padding: 0 24px;
}
#a338eac4cfa3a95 > .tab-wrap > div > .tab-nav li a svg,
#a338eac4cfa3a95 > .tab-nav li a svg,
#a338eac4cfa3a95 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a338eac4cfa3a95 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a338eac4cfa3a95 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a338eac4cfa3a95 > .tab-nav li a .ap_icon,
#a338eac4cfa3a95 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a338eac4cfa3a95 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a338eac4cfa3a95 > .tab-wrap > div > .tab-nav li a:hover,
#a338eac4cfa3a95 > .tab-nav li a:hover,
#a338eac4cfa3a95 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a338eac4cfa3a95 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff6a02;
  border-bottom-width: 2px;
  border-bottom-color: #ff6a02;
  border-bottom-style: solid;
}
#a338eac4cfa3a95 > .tab-wrap > div > .tab-nav li.uk-active a,
#a338eac4cfa3a95 > .tab-nav li.uk-active a,
#a338eac4cfa3a95 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a338eac4cfa3a95 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 2px;
  border-bottom-color: #9b9b9b;
  border-bottom-style: solid;
  background-color: #fb5800;
}
#a338eac4cfa3a95 .layout-left li,
#a338eac4cfa3a95 .layout-center li,
#a338eac4cfa3a95 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a338eac4cfa3a95 .layout-left li a,
#a338eac4cfa3a95 .layout-center li a,
#a338eac4cfa3a95 .layout-right li a {
  height: 100%;
}
#a338eac4cfa3a95 > .tab-tabs .layout-left {
  text-align: left;
}
#a338eac4cfa3a95 > .tab-tabs .layout-center {
  text-align: center;
}
#a338eac4cfa3a95 > .tab-tabs .layout-right {
  text-align: right;
}
#a338eac4cfa3a95 .tab-contents {
  height: 100%;
  height: calc(100% - 61px);
}
#a338eac4cfa3a95 .tab-content-wrap {
  background-color: #ffffff;
}
#a338eac4cfa3a95 .tab-contents,
#a338eac4cfa3a95 .tab-contents-wrap {
  pointer-events: none;
}
#a338eac4cfa3a95 .tab-content,
#a338eac4cfa3a95 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a338eac4cfa3a95 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a338eac4cfa3a95 .tab-wrap .tab-contents {
  height: 100%;
}
#a338eac4cfa3a95 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a338eac4cfa3a95 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a338eac4cfa3a95 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a84f7ad9d6ab05f > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a74f0a7505acf8c .uk-grid {
  margin-left: -15px;
}
#a74f0a7505acf8c .uk-grid > * {
  padding-left: 15px;
}
#a74f0a7505acf8c .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a74f0a7505acf8c .ap-category-filter ul li.active {
  border-color: #ee895d;
  color: #ee895d;
}
#a74f0a7505acf8c .article {
  background-color: #fff;
  border-bottom: 1px solid #4d4d4e;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  background-color: #ffffff;
  border-bottom-style: dashed;
}
#a74f0a7505acf8c .article .info {
  padding: 6px 10px;
  position: relative;
}
#a74f0a7505acf8c .article .info p {
  margin: 10px 0 10px;
}
#a74f0a7505acf8c .article svg {
  fill: currentColor;
}
#a74f0a7505acf8c .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#a74f0a7505acf8c .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#a74f0a7505acf8c .article.list-icon .info {
  padding-left: 25px;
}
#a74f0a7505acf8c .article .datetime {
  position: absolute;
  right: 10px;
  top: 6px;
}
#a74f0a7505acf8c .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: left;
  font-family: inherit;
  color: #000000;
}
#a74f0a7505acf8c .article .abstract {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  color: #626161;
}
#a74f0a7505acf8c .article:hover {
  background-color: #ff5800;
  border-top: 1px solid auto;
}
#a74f0a7505acf8c .article:hover .title {
  color: #ffffff;
}
#a74f0a7505acf8c .article:hover .datetime {
  color: #b6b6b6;
}
#a74f0a7505acf8c .article:hover .category {
  color: #b6b6b6;
}
#a74f0a7505acf8c .article:hover .abstract {
  color: #ffffff;
}
#a74f0a7505acf8c .article:hover .btn_icon {
  color: #b6b6b6;
}
#a74f0a7505acf8c .article:hover .list_icon {
  color: #ff5800;
}
#acfeca8784a098f > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ab70aad550a2111 .abb7da74f8a1113 .img-wrap {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #c3c3c3;
  border-left-color: #c3c3c3;
  border-bottom-color: #c3c3c3;
  border-top-color: #c3c3c3;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ab70aad550a2111 .uk-grid {
  margin-left: 0px;
}
#ab70aad550a2111 .uk-grid > * {
  padding-left: 0px;
}
#ab70aad550a2111 .uk-grid > .uk-grid-margin {
  margin-top: 10px;
}
#ab70aad550a2111 .dynamic-list-item {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#ab70aad550a2111 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #ab70aad550a2111 .uk-position-center-left-out {
    left: -30px;
  }
  #ab70aad550a2111 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac09aa7b8caf466 {background-color: rgba(0,0,0,0.7);}#ac09aa7b8caf466 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#a83feaa437aa91d .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a8bf7ad902a36a9 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;background-color: rgba(250, 250, 250, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a8bf7ad902a36a9 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#aeff9aa6f0a0e34 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#aeff9aa6f0a0e34 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#ae7eca7981af937 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#ae7eca7981af937 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a7fa0a2d54a50c9 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a7fa0a2d54a50c9 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a213ca9a35a643f .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a213ca9a35a643f .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#af6e3aa96fa3ae8 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#af6e3aa96fa3ae8 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a5043a7cb2a262d .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a5043a7cb2a262d .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#aad17a6268aec0a .ace09a8898a766b {
  overflow: hidden;
}
#aad17a6268aec0a .ace09a8898a766b , #aad17a6268aec0a .ace09a8898a766b > * {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;text-align: center;font-family: inherit;color: rgba(0, 0, 0, 1);}#aad17a6268aec0a .ae561a5745ab8bb .img-wrap {
  border-right-style: solid;
  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-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#aad17a6268aec0a .dynamic-list-item {
  background-color: #f4f4f4;
}
#aad17a6268aec0a .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #aad17a6268aec0a .uk-position-center-left-out {
    left: -30px;
  }
  #aad17a6268aec0a .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac09aa7b8caf466 {background-color: rgba(0,0,0,0.7);}#ac09aa7b8caf466 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#af055a5be8af481 {background-color: rgba(0,0,0,0.7);}#af055a5be8af481 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#a599faeacbafb05 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#a9fbea7a00ad3dd .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a8e33ae0f3ad001 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a8e33ae0f3ad001 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#ab25ea58c6ad56e .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#ab25ea58c6ad56e .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a873da0f5aad497 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a873da0f5aad497 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#ab06ea4c74a0cce .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#ab06ea4c74a0cce .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#a5062a8575a4eb1 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a6732a3783a6433 {
  overflow: hidden;
  pointer-events: none;
}
#a6732a3783a6433 > .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;
}
#a6732a3783a6433 > .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;
}
#a6732a3783a6433 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a6732a3783a6433 > .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;
}
#a6732a3783a6433 > .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;
}
#a6732a3783a6433 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a6732a3783a6433 > .tab-wrap > div > .tab-nav,
#a6732a3783a6433 > .tab-nav,
#a6732a3783a6433 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a6732a3783a6433 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 0;
  border-bottom-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-top-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a6732a3783a6433 > .tab-wrap > div > .tab-nav-horizontal,
#a6732a3783a6433 > .tab-nav-horizontal,
#a6732a3783a6433 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a6732a3783a6433 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a6732a3783a6433 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a6732a3783a6433 > .tab-nav-horizontal::-webkit-scrollbar,
#a6732a3783a6433 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a6732a3783a6433 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a6732a3783a6433 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a6732a3783a6433 > .tab-nav-horizontal.tagScroll,
#a6732a3783a6433 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a6732a3783a6433 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#a6732a3783a6433 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a6732a3783a6433 > .tab-nav-horizontal.tagScroll li a,
#a6732a3783a6433 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a6732a3783a6433 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a6732a3783a6433 > .tab-wrap > div > .tab-nav a,
#a6732a3783a6433 > .tab-nav a,
#a6732a3783a6433 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a6732a3783a6433 > .tab-tabs > .tab-nav a {
  padding: 0 8px;
}
#a6732a3783a6433 > .tab-wrap > div > .tab-nav li a,
#a6732a3783a6433 > .tab-nav li a,
#a6732a3783a6433 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a6732a3783a6433 > .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: #000000;
  border-right-style: none;
  margin-right: 10px;
  margin-left: 10px;
  background-color: #ededed;
  padding: 0 8px;
}
#a6732a3783a6433 > .tab-wrap > div > .tab-nav li a svg,
#a6732a3783a6433 > .tab-nav li a svg,
#a6732a3783a6433 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a6732a3783a6433 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a6732a3783a6433 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a6732a3783a6433 > .tab-nav li a .ap_icon,
#a6732a3783a6433 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a6732a3783a6433 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a6732a3783a6433 > .tab-wrap > div > .tab-nav li a:hover,
#a6732a3783a6433 > .tab-nav li a:hover,
#a6732a3783a6433 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a6732a3783a6433 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 2px;
  border-bottom-color: #ff6b00;
  border-bottom-style: solid;
}
#a6732a3783a6433 > .tab-wrap > div > .tab-nav li.uk-active a,
#a6732a3783a6433 > .tab-nav li.uk-active a,
#a6732a3783a6433 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a6732a3783a6433 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 0;
  border-bottom-style: none;
  background-color: #ff6b00;
}
#a6732a3783a6433 > .tab-wrap > div > .tab-nav li:last-child a,
#a6732a3783a6433 > .tab-nav li:last-child a,
#a6732a3783a6433 > .tab-tabs > .tab-wrap > div > .tab-nav li:last-child a,
#a6732a3783a6433 > .tab-tabs > .tab-nav li:last-child a {
  border-right: undefined;
}
#a6732a3783a6433 .layout-left li,
#a6732a3783a6433 .layout-center li,
#a6732a3783a6433 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a6732a3783a6433 .layout-left li a,
#a6732a3783a6433 .layout-center li a,
#a6732a3783a6433 .layout-right li a {
  height: 100%;
}
#a6732a3783a6433 > .tab-tabs .layout-left {
  text-align: left;
}
#a6732a3783a6433 > .tab-tabs .layout-center {
  text-align: center;
}
#a6732a3783a6433 > .tab-tabs .layout-right {
  text-align: right;
}
#a6732a3783a6433 .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#a6732a3783a6433 .tab-content-wrap {
  background-color: #ffffff;
}
#a6732a3783a6433 .tab-contents,
#a6732a3783a6433 .tab-contents-wrap {
  pointer-events: none;
}
#a6732a3783a6433 .tab-content,
#a6732a3783a6433 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a6732a3783a6433 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a6732a3783a6433 .tab-wrap .tab-contents {
  height: 100%;
}
#a6732a3783a6433 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a6732a3783a6433 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a6732a3783a6433 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#aafc2a8900a8fc1 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#af7ddac86facd97 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a6110a5ec0a26dd .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a83fdaf304aef9c .ele-slideshow .uk-slidenav {
  background-color: rgba(75, 75, 75, 0.71);
}
#a83fdaf304aef9c .ele-slideshow .uk-slidenav {
  color: rgba(255, 255, 255, 0.76);
}
#aee99ac0caafaf4 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aee99ac0caafaf4  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a529ea6e8aad23d .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a529ea6e8aad23d .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);}#af55fa370badfcb .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#af55fa370badfcb .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);}#a8caaae3cea910c .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a8caaae3cea910c .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);}#ae2b4a986ea4df7 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#ae2b4a986ea4df7 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);}#a72d4ac9e6a3926 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a72d4ac9e6a3926 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);}#a3170a30ffa3541 {
  overflow: hidden;
  pointer-events: none;
  border-right-style: solid;
  border-left-style: solid;
}
#a3170a30ffa3541 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a3170a30ffa3541 > .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;
}
#a3170a30ffa3541 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a3170a30ffa3541 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a3170a30ffa3541 > .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;
}
#a3170a30ffa3541 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a3170a30ffa3541 > .tab-wrap > div > .tab-nav,
#a3170a30ffa3541 > .tab-nav,
#a3170a30ffa3541 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a3170a30ffa3541 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
}
#a3170a30ffa3541 > .tab-wrap > div > .tab-nav-horizontal,
#a3170a30ffa3541 > .tab-nav-horizontal,
#a3170a30ffa3541 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a3170a30ffa3541 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a3170a30ffa3541 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a3170a30ffa3541 > .tab-nav-horizontal::-webkit-scrollbar,
#a3170a30ffa3541 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a3170a30ffa3541 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a3170a30ffa3541 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a3170a30ffa3541 > .tab-nav-horizontal.tagScroll,
#a3170a30ffa3541 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a3170a30ffa3541 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 46px;
  overflow-x: auto;
}
#a3170a30ffa3541 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a3170a30ffa3541 > .tab-nav-horizontal.tagScroll li a,
#a3170a30ffa3541 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a3170a30ffa3541 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a3170a30ffa3541 > .tab-wrap > div > .tab-nav a,
#a3170a30ffa3541 > .tab-nav a,
#a3170a30ffa3541 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a3170a30ffa3541 > .tab-tabs > .tab-nav a {
  padding: 0 156px;
}
#a3170a30ffa3541 > .tab-wrap > div > .tab-nav li a,
#a3170a30ffa3541 > .tab-nav li a,
#a3170a30ffa3541 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a3170a30ffa3541 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 45px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 46px;
  font-weight: normal;
  font-style: normal;
  font-size: 26px;
  font-family: inherit;
  color: #000000;
  background-color: #ffffff;
  margin-top: 7px;
  border-bottom-width: 2px;
  border-bottom-color: #50e3c2;
  border-bottom-style: solid;
  margin-left: 70px;
  border-left-width: 0;
  border-left-style: solid;
  padding: 0 156px;
}
#a3170a30ffa3541 > .tab-wrap > div > .tab-nav li a svg,
#a3170a30ffa3541 > .tab-nav li a svg,
#a3170a30ffa3541 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a3170a30ffa3541 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a3170a30ffa3541 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a3170a30ffa3541 > .tab-nav li a .ap_icon,
#a3170a30ffa3541 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a3170a30ffa3541 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a3170a30ffa3541 > .tab-wrap > div > .tab-nav li a:hover,
#a3170a30ffa3541 > .tab-nav li a:hover,
#a3170a30ffa3541 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a3170a30ffa3541 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ea3e00;
}
#a3170a30ffa3541 > .tab-wrap > div > .tab-nav li.uk-active a,
#a3170a30ffa3541 > .tab-nav li.uk-active a,
#a3170a30ffa3541 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a3170a30ffa3541 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #010101;
  border-bottom-width: 2px;
  border-bottom-color: #ff3d00;
}
#a3170a30ffa3541 .layout-left li,
#a3170a30ffa3541 .layout-center li,
#a3170a30ffa3541 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a3170a30ffa3541 .layout-left li a,
#a3170a30ffa3541 .layout-center li a,
#a3170a30ffa3541 .layout-right li a {
  height: 100%;
}
#a3170a30ffa3541 > .tab-tabs .layout-left {
  text-align: left;
}
#a3170a30ffa3541 > .tab-tabs .layout-center {
  text-align: center;
}
#a3170a30ffa3541 > .tab-tabs .layout-right {
  text-align: right;
}
#a3170a30ffa3541 .tab-contents {
  height: 100%;
  height: calc(100% - 46px);
}
#a3170a30ffa3541 .tab-content-wrap {
  background-color: #f9f5f5;
  border-right-style: solid;
}
#a3170a30ffa3541 .tab-contents,
#a3170a30ffa3541 .tab-contents-wrap {
  pointer-events: none;
}
#a3170a30ffa3541 .tab-content,
#a3170a30ffa3541 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a3170a30ffa3541 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a3170a30ffa3541 .tab-wrap .tab-contents {
  height: 100%;
}
#a3170a30ffa3541 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a3170a30ffa3541 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a3170a30ffa3541 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a4c1fa0930a45ad > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1773ad635a22d5 .ele-slideshow .uk-slidenav {
  background-color: rgba(117, 117, 117, 0.84);
}
#abca6a36afad3ab > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ab736a9fc6acc44 .uk-grid {
  margin-left: -50px;
}
#ab736a9fc6acc44 .uk-grid > * {
  padding-left: 50px;
}
#ab736a9fc6acc44 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#ab736a9fc6acc44 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #ab736a9fc6acc44 .uk-position-center-left-out {
    left: -30px;
  }
  #ab736a9fc6acc44 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a822ea68e9a2a82 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a045aa2837a2ae3 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;
                background-image: linear-gradient(0deg,
                rgba(255, 88, 0, 1),
                rgba(253, 127, 2, 1));
            border-radius: 0px;justify-content: center;border-style: solid;}#a045aa2837a2ae3 .ele-wrap:hover {background-color: #0483cc;}#a113ba3cdca90ea .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#a113ba3cdca90ea .ele-wrap:hover {background-color: #0483cc;}#a2d52ac6c5add70 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#a2d52ac6c5add70 .ele-wrap:hover {background-color: #0483cc;}#a287badd81ac091 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#a287badd81ac091 .ele-wrap:hover {background-color: #0483cc;}#a6127ab14ea7dde {
  overflow: hidden;
  pointer-events: none;
}
#a6127ab14ea7dde > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a6127ab14ea7dde > .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;
}
#a6127ab14ea7dde > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a6127ab14ea7dde > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a6127ab14ea7dde > .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;
}
#a6127ab14ea7dde > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a6127ab14ea7dde > .tab-wrap > div > .tab-nav,
#a6127ab14ea7dde > .tab-nav,
#a6127ab14ea7dde > .tab-tabs > .tab-wrap > div > .tab-nav,
#a6127ab14ea7dde > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  background-color: #ffffff;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#a6127ab14ea7dde > .tab-wrap > div > .tab-nav-horizontal,
#a6127ab14ea7dde > .tab-nav-horizontal,
#a6127ab14ea7dde > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a6127ab14ea7dde > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a6127ab14ea7dde > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a6127ab14ea7dde > .tab-nav-horizontal::-webkit-scrollbar,
#a6127ab14ea7dde > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a6127ab14ea7dde > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a6127ab14ea7dde > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a6127ab14ea7dde > .tab-nav-horizontal.tagScroll,
#a6127ab14ea7dde > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a6127ab14ea7dde > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 61px;
  overflow-x: auto;
}
#a6127ab14ea7dde > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a6127ab14ea7dde > .tab-nav-horizontal.tagScroll li a,
#a6127ab14ea7dde > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a6127ab14ea7dde > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a6127ab14ea7dde > .tab-wrap > div > .tab-nav a,
#a6127ab14ea7dde > .tab-nav a,
#a6127ab14ea7dde > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a6127ab14ea7dde > .tab-tabs > .tab-nav a {
  padding: 0 24px;
}
#a6127ab14ea7dde > .tab-wrap > div > .tab-nav li a,
#a6127ab14ea7dde > .tab-nav li a,
#a6127ab14ea7dde > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a6127ab14ea7dde > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 61px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  border-right-style: solid;
  margin-right: 7px;
  margin-left: 7px;
  border-right-width: 1px;
  border-right-color: #ababab;
  border-left-color: #d2d2d2;
  border-bottom-color: #d2d2d2;
  border-top-color: #d2d2d2;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
  padding: 0 24px;
}
#a6127ab14ea7dde > .tab-wrap > div > .tab-nav li a svg,
#a6127ab14ea7dde > .tab-nav li a svg,
#a6127ab14ea7dde > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a6127ab14ea7dde > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a6127ab14ea7dde > .tab-wrap > div > .tab-nav li a .ap_icon,
#a6127ab14ea7dde > .tab-nav li a .ap_icon,
#a6127ab14ea7dde > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a6127ab14ea7dde > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a6127ab14ea7dde > .tab-wrap > div > .tab-nav li a:hover,
#a6127ab14ea7dde > .tab-nav li a:hover,
#a6127ab14ea7dde > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a6127ab14ea7dde > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff6a02;
  border-bottom-width: 2px;
  border-bottom-color: #ff6a02;
  border-bottom-style: solid;
}
#a6127ab14ea7dde > .tab-wrap > div > .tab-nav li.uk-active a,
#a6127ab14ea7dde > .tab-nav li.uk-active a,
#a6127ab14ea7dde > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a6127ab14ea7dde > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 2px;
  border-bottom-color: #9b9b9b;
  border-bottom-style: solid;
  background-color: #fb5800;
}
#a6127ab14ea7dde .layout-left li,
#a6127ab14ea7dde .layout-center li,
#a6127ab14ea7dde .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a6127ab14ea7dde .layout-left li a,
#a6127ab14ea7dde .layout-center li a,
#a6127ab14ea7dde .layout-right li a {
  height: 100%;
}
#a6127ab14ea7dde > .tab-tabs .layout-left {
  text-align: left;
}
#a6127ab14ea7dde > .tab-tabs .layout-center {
  text-align: center;
}
#a6127ab14ea7dde > .tab-tabs .layout-right {
  text-align: right;
}
#a6127ab14ea7dde .tab-contents {
  height: 100%;
  height: calc(100% - 61px);
}
#a6127ab14ea7dde .tab-content-wrap {
  background-color: #ffffff;
}
#a6127ab14ea7dde .tab-contents,
#a6127ab14ea7dde .tab-contents-wrap {
  pointer-events: none;
}
#a6127ab14ea7dde .tab-content,
#a6127ab14ea7dde .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a6127ab14ea7dde .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a6127ab14ea7dde .tab-wrap .tab-contents {
  height: 100%;
}
#a6127ab14ea7dde .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a6127ab14ea7dde .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a6127ab14ea7dde .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a2213acdf2a5146 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa61aa6ce8ac607 .uk-grid {
  margin-left: -15px;
}
#aa61aa6ce8ac607 .uk-grid > * {
  padding-left: 15px;
}
#aa61aa6ce8ac607 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#aa61aa6ce8ac607 .ap-category-filter ul li.active {
  border-color: #ee895d;
  color: #ee895d;
}
#aa61aa6ce8ac607 .article {
  background-color: #fff;
  border-bottom: 1px solid #4d4d4e;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  background-color: #ffffff;
  border-bottom-style: dashed;
}
#aa61aa6ce8ac607 .article .info {
  padding: 6px 10px;
  position: relative;
}
#aa61aa6ce8ac607 .article .info p {
  margin: 10px 0 10px;
}
#aa61aa6ce8ac607 .article svg {
  fill: currentColor;
}
#aa61aa6ce8ac607 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#aa61aa6ce8ac607 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#aa61aa6ce8ac607 .article.list-icon .info {
  padding-left: 25px;
}
#aa61aa6ce8ac607 .article .datetime {
  position: absolute;
  right: 10px;
  top: 6px;
}
#aa61aa6ce8ac607 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: left;
  font-family: inherit;
  color: #000000;
}
#aa61aa6ce8ac607 .article .abstract {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  color: #626161;
}
#aa61aa6ce8ac607 .article:hover {
  background-color: #ff5800;
  border-top: 1px solid auto;
}
#aa61aa6ce8ac607 .article:hover .title {
  color: #ffffff;
}
#aa61aa6ce8ac607 .article:hover .datetime {
  color: #b6b6b6;
}
#aa61aa6ce8ac607 .article:hover .category {
  color: #b6b6b6;
}
#aa61aa6ce8ac607 .article:hover .abstract {
  color: #ffffff;
}
#aa61aa6ce8ac607 .article:hover .btn_icon {
  color: #b6b6b6;
}
#aa61aa6ce8ac607 .article:hover .list_icon {
  color: #ff5800;
}
#af68aae81ca8807 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ace7ba749aae1a2 .a7cf8a6463a5014 .img-wrap {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #c3c3c3;
  border-left-color: #c3c3c3;
  border-bottom-color: #c3c3c3;
  border-top-color: #c3c3c3;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ace7ba749aae1a2 .uk-grid {
  margin-left: 0px;
}
#ace7ba749aae1a2 .uk-grid > * {
  padding-left: 0px;
}
#ace7ba749aae1a2 .uk-grid > .uk-grid-margin {
  margin-top: 10px;
}
#ace7ba749aae1a2 .dynamic-list-item {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#ace7ba749aae1a2 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #ace7ba749aae1a2 .uk-position-center-left-out {
    left: -30px;
  }
  #ace7ba749aae1a2 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac09aa7b8caf466 {background-color: rgba(0,0,0,0.7);}#ac09aa7b8caf466 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#ac3d0a2df3afcc3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#afdd3ac94fa1409 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;background-color: rgba(250, 250, 250, 1);border-radius: 0px;justify-content: center;border-style: solid;}#afdd3ac94fa1409 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a49a8adf82a658d .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a49a8adf82a658d .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#ae2ffab0b9aaf6d .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#ae2ffab0b9aaf6d .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#aa5b3ae205af0cf .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#aa5b3ae205af0cf .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a8e38a9f97a695d .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a8e38a9f97a695d .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a6ba3a9608aefb3 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a6ba3a9608aefb3 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a5b96a7394ac301 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a5b96a7394ac301 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac09aa7b8caf466 {background-color: rgba(0,0,0,0.7);}#ac09aa7b8caf466 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#a69f3a24cea55d8 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#ad5a3a627baea35 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;background-color: rgba(250, 250, 250, 1);border-radius: 0px;justify-content: center;border-style: solid;}#ad5a3a627baea35 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#aad1aa3ddbaa55b .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#aad1aa3ddbaa55b .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#ab999ae801acbe3 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#ab999ae801acbe3 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a3f16aef29a1d7a .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a3f16aef29a1d7a .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#aad11ad7b1a46cd .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#aad11ad7b1a46cd .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#aedffa0104a0321 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#aedffa0104a0321 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a9c6cadb32a467f .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a9c6cadb32a467f .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a1325a38aaa3ea9 .ad8f7aed5dab316 {
  overflow: hidden;
}
#a1325a38aaa3ea9 .ad8f7aed5dab316 , #a1325a38aaa3ea9 .ad8f7aed5dab316 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;text-align: center;font-family: inherit;color: rgba(0, 0, 0, 1);}#a1325a38aaa3ea9 .adf25a628fa3416 .img-wrap {
  border-right-width: 1px;
  border-right-style: solid;
  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-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#a1325a38aaa3ea9 .dynamic-list-item {
  background-color: #f4f4f4;
}
#a1325a38aaa3ea9 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a1325a38aaa3ea9 .uk-position-center-left-out {
    left: -30px;
  }
  #a1325a38aaa3ea9 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac09aa7b8caf466 {background-color: rgba(0,0,0,0.7);}#ac09aa7b8caf466 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#af055a5be8af481 {background-color: rgba(0,0,0,0.7);}#af055a5be8af481 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#a45d3a7f82a2688 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#a9704a0771ab925 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a1683a66eda8af8 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a1683a66eda8af8 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a4fffa7a4ba0c13 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a4fffa7a4ba0c13 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#af333ad007a9e43 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#af333ad007a9e43 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a0211a7e28a5932 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a0211a7e28a5932 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#a2e4ca7c80add99 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a1cd2a3682a913c .ele-wrap {color: #fff;font-size: 38px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a1cd2a3682a913c .ele-wrap:hover {background-color: #0483cc;background-color: rgba(255, 255, 255, 1);border-color: rgba(34, 25, 77, 0);color: #ff6b00;}#a0e3fac073ae92c .gallery-thumbnails .uk-thumbnav {
  justify-content: center;
}
#a0e3fac073ae92c .gallery-thumbnails .uk-thumbnav > * {
  padding-left: 8px;
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#aa25ca4519a4367 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a6a6fa5040a7af2 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#adea5a4976afb20 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a291aa3662a17c3 .ele-slideshow .uk-slidenav {
  background-color: rgba(75, 75, 75, 0.71);
}
#a291aa3662a17c3 .ele-slideshow .uk-slidenav {
  color: rgba(255, 255, 255, 0.76);
}
#acff8a41e5a9cea > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#acff8a41e5a9cea  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a3ff8a767ea22df .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a3ff8a767ea22df .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);}#aa010a3fa9ad665 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#aa010a3fa9ad665 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);}#ac440af910ac743 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#ac440af910ac743 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);}#a6115ac9eaa8fb2 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a6115ac9eaa8fb2 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);}#a8a7eadb99a2eb3 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a8a7eadb99a2eb3 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);}#a3db3a4343a6ef3 {
  overflow: hidden;
  pointer-events: none;
  border-right-style: solid;
  border-left-style: solid;
}
#a3db3a4343a6ef3 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a3db3a4343a6ef3 > .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;
}
#a3db3a4343a6ef3 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a3db3a4343a6ef3 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a3db3a4343a6ef3 > .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;
}
#a3db3a4343a6ef3 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a3db3a4343a6ef3 > .tab-wrap > div > .tab-nav,
#a3db3a4343a6ef3 > .tab-nav,
#a3db3a4343a6ef3 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a3db3a4343a6ef3 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
}
#a3db3a4343a6ef3 > .tab-wrap > div > .tab-nav-horizontal,
#a3db3a4343a6ef3 > .tab-nav-horizontal,
#a3db3a4343a6ef3 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a3db3a4343a6ef3 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a3db3a4343a6ef3 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a3db3a4343a6ef3 > .tab-nav-horizontal::-webkit-scrollbar,
#a3db3a4343a6ef3 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a3db3a4343a6ef3 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a3db3a4343a6ef3 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a3db3a4343a6ef3 > .tab-nav-horizontal.tagScroll,
#a3db3a4343a6ef3 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a3db3a4343a6ef3 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 46px;
  overflow-x: auto;
}
#a3db3a4343a6ef3 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a3db3a4343a6ef3 > .tab-nav-horizontal.tagScroll li a,
#a3db3a4343a6ef3 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a3db3a4343a6ef3 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a3db3a4343a6ef3 > .tab-wrap > div > .tab-nav a,
#a3db3a4343a6ef3 > .tab-nav a,
#a3db3a4343a6ef3 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a3db3a4343a6ef3 > .tab-tabs > .tab-nav a {
  padding: 0 156px;
}
#a3db3a4343a6ef3 > .tab-wrap > div > .tab-nav li a,
#a3db3a4343a6ef3 > .tab-nav li a,
#a3db3a4343a6ef3 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a3db3a4343a6ef3 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 45px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 46px;
  font-weight: normal;
  font-style: normal;
  font-size: 26px;
  font-family: inherit;
  color: #000000;
  background-color: #ffffff;
  margin-top: 7px;
  border-bottom-width: 2px;
  border-bottom-color: #50e3c2;
  border-bottom-style: solid;
  margin-left: 70px;
  border-left-width: 0;
  border-left-style: solid;
  padding: 0 156px;
}
#a3db3a4343a6ef3 > .tab-wrap > div > .tab-nav li a svg,
#a3db3a4343a6ef3 > .tab-nav li a svg,
#a3db3a4343a6ef3 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a3db3a4343a6ef3 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a3db3a4343a6ef3 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a3db3a4343a6ef3 > .tab-nav li a .ap_icon,
#a3db3a4343a6ef3 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a3db3a4343a6ef3 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a3db3a4343a6ef3 > .tab-wrap > div > .tab-nav li a:hover,
#a3db3a4343a6ef3 > .tab-nav li a:hover,
#a3db3a4343a6ef3 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a3db3a4343a6ef3 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ea3e00;
}
#a3db3a4343a6ef3 > .tab-wrap > div > .tab-nav li.uk-active a,
#a3db3a4343a6ef3 > .tab-nav li.uk-active a,
#a3db3a4343a6ef3 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a3db3a4343a6ef3 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #010101;
  border-bottom-width: 2px;
  border-bottom-color: #ff3d00;
}
#a3db3a4343a6ef3 .layout-left li,
#a3db3a4343a6ef3 .layout-center li,
#a3db3a4343a6ef3 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a3db3a4343a6ef3 .layout-left li a,
#a3db3a4343a6ef3 .layout-center li a,
#a3db3a4343a6ef3 .layout-right li a {
  height: 100%;
}
#a3db3a4343a6ef3 > .tab-tabs .layout-left {
  text-align: left;
}
#a3db3a4343a6ef3 > .tab-tabs .layout-center {
  text-align: center;
}
#a3db3a4343a6ef3 > .tab-tabs .layout-right {
  text-align: right;
}
#a3db3a4343a6ef3 .tab-contents {
  height: 100%;
  height: calc(100% - 46px);
}
#a3db3a4343a6ef3 .tab-content-wrap {
  background-color: #f9f5f5;
  border-right-style: solid;
}
#a3db3a4343a6ef3 .tab-contents,
#a3db3a4343a6ef3 .tab-contents-wrap {
  pointer-events: none;
}
#a3db3a4343a6ef3 .tab-content,
#a3db3a4343a6ef3 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a3db3a4343a6ef3 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a3db3a4343a6ef3 .tab-wrap .tab-contents {
  height: 100%;
}
#a3db3a4343a6ef3 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a3db3a4343a6ef3 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a3db3a4343a6ef3 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#ab95baea72a271e > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9933a006faafc4 .ele-slideshow .uk-slidenav {
  background-color: rgba(117, 117, 117, 0.84);
}
#ac7b0a136ba08f8 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5d65a7cf3a874a .uk-grid {
  margin-left: -50px;
}
#a5d65a7cf3a874a .uk-grid > * {
  padding-left: 50px;
}
#a5d65a7cf3a874a .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a5d65a7cf3a874a .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a5d65a7cf3a874a .uk-position-center-left-out {
    left: -30px;
  }
  #a5d65a7cf3a874a .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a4831aec8fa7db6 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8fb1a1bcaafd41 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;
                background-image: linear-gradient(0deg,
                rgba(255, 88, 0, 1),
                rgba(253, 127, 2, 1));
            border-radius: 0px;justify-content: center;border-style: solid;}#a8fb1a1bcaafd41 .ele-wrap:hover {background-color: #0483cc;}#af08baa10ba7aee .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#af08baa10ba7aee .ele-wrap:hover {background-color: #0483cc;}#af4a9aaf4aada47 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#af4a9aaf4aada47 .ele-wrap:hover {background-color: #0483cc;}#a96fba0ffda5ee7 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#a96fba0ffda5ee7 .ele-wrap:hover {background-color: #0483cc;}#a09e7a8449a3f1b {
  overflow: hidden;
  pointer-events: none;
}
#a09e7a8449a3f1b > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a09e7a8449a3f1b > .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;
}
#a09e7a8449a3f1b > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a09e7a8449a3f1b > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a09e7a8449a3f1b > .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;
}
#a09e7a8449a3f1b > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a09e7a8449a3f1b > .tab-wrap > div > .tab-nav,
#a09e7a8449a3f1b > .tab-nav,
#a09e7a8449a3f1b > .tab-tabs > .tab-wrap > div > .tab-nav,
#a09e7a8449a3f1b > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  background-color: #ffffff;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#a09e7a8449a3f1b > .tab-wrap > div > .tab-nav-horizontal,
#a09e7a8449a3f1b > .tab-nav-horizontal,
#a09e7a8449a3f1b > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a09e7a8449a3f1b > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a09e7a8449a3f1b > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a09e7a8449a3f1b > .tab-nav-horizontal::-webkit-scrollbar,
#a09e7a8449a3f1b > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a09e7a8449a3f1b > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a09e7a8449a3f1b > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a09e7a8449a3f1b > .tab-nav-horizontal.tagScroll,
#a09e7a8449a3f1b > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a09e7a8449a3f1b > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 61px;
  overflow-x: auto;
}
#a09e7a8449a3f1b > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a09e7a8449a3f1b > .tab-nav-horizontal.tagScroll li a,
#a09e7a8449a3f1b > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a09e7a8449a3f1b > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a09e7a8449a3f1b > .tab-wrap > div > .tab-nav a,
#a09e7a8449a3f1b > .tab-nav a,
#a09e7a8449a3f1b > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a09e7a8449a3f1b > .tab-tabs > .tab-nav a {
  padding: 0 24px;
}
#a09e7a8449a3f1b > .tab-wrap > div > .tab-nav li a,
#a09e7a8449a3f1b > .tab-nav li a,
#a09e7a8449a3f1b > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a09e7a8449a3f1b > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 61px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  border-right-style: solid;
  margin-right: 7px;
  margin-left: 7px;
  border-right-width: 1px;
  border-right-color: #ababab;
  border-left-color: #d2d2d2;
  border-bottom-color: #d2d2d2;
  border-top-color: #d2d2d2;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
  padding: 0 24px;
}
#a09e7a8449a3f1b > .tab-wrap > div > .tab-nav li a svg,
#a09e7a8449a3f1b > .tab-nav li a svg,
#a09e7a8449a3f1b > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a09e7a8449a3f1b > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a09e7a8449a3f1b > .tab-wrap > div > .tab-nav li a .ap_icon,
#a09e7a8449a3f1b > .tab-nav li a .ap_icon,
#a09e7a8449a3f1b > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a09e7a8449a3f1b > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a09e7a8449a3f1b > .tab-wrap > div > .tab-nav li a:hover,
#a09e7a8449a3f1b > .tab-nav li a:hover,
#a09e7a8449a3f1b > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a09e7a8449a3f1b > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff6a02;
  border-bottom-width: 2px;
  border-bottom-color: #ff6a02;
  border-bottom-style: solid;
}
#a09e7a8449a3f1b > .tab-wrap > div > .tab-nav li.uk-active a,
#a09e7a8449a3f1b > .tab-nav li.uk-active a,
#a09e7a8449a3f1b > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a09e7a8449a3f1b > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 2px;
  border-bottom-color: #9b9b9b;
  border-bottom-style: solid;
  background-color: #fb5800;
}
#a09e7a8449a3f1b .layout-left li,
#a09e7a8449a3f1b .layout-center li,
#a09e7a8449a3f1b .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a09e7a8449a3f1b .layout-left li a,
#a09e7a8449a3f1b .layout-center li a,
#a09e7a8449a3f1b .layout-right li a {
  height: 100%;
}
#a09e7a8449a3f1b > .tab-tabs .layout-left {
  text-align: left;
}
#a09e7a8449a3f1b > .tab-tabs .layout-center {
  text-align: center;
}
#a09e7a8449a3f1b > .tab-tabs .layout-right {
  text-align: right;
}
#a09e7a8449a3f1b .tab-contents {
  height: 100%;
  height: calc(100% - 61px);
}
#a09e7a8449a3f1b .tab-content-wrap {
  background-color: #ffffff;
}
#a09e7a8449a3f1b .tab-contents,
#a09e7a8449a3f1b .tab-contents-wrap {
  pointer-events: none;
}
#a09e7a8449a3f1b .tab-content,
#a09e7a8449a3f1b .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a09e7a8449a3f1b .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a09e7a8449a3f1b .tab-wrap .tab-contents {
  height: 100%;
}
#a09e7a8449a3f1b .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a09e7a8449a3f1b .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a09e7a8449a3f1b .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a9b75a960aa606b > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a27d5a959ca8cf6 .uk-grid {
  margin-left: -15px;
}
#a27d5a959ca8cf6 .uk-grid > * {
  padding-left: 15px;
}
#a27d5a959ca8cf6 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a27d5a959ca8cf6 .ap-category-filter ul li.active {
  border-color: #ee895d;
  color: #ee895d;
}
#a27d5a959ca8cf6 .article {
  background-color: #fff;
  border-bottom: 1px solid #4d4d4e;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  background-color: #ffffff;
  border-bottom-style: dashed;
}
#a27d5a959ca8cf6 .article .info {
  padding: 6px 10px;
  position: relative;
}
#a27d5a959ca8cf6 .article .info p {
  margin: 10px 0 10px;
}
#a27d5a959ca8cf6 .article svg {
  fill: currentColor;
}
#a27d5a959ca8cf6 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#a27d5a959ca8cf6 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#a27d5a959ca8cf6 .article.list-icon .info {
  padding-left: 25px;
}
#a27d5a959ca8cf6 .article .datetime {
  position: absolute;
  right: 10px;
  top: 6px;
}
#a27d5a959ca8cf6 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: left;
  font-family: inherit;
  color: #000000;
}
#a27d5a959ca8cf6 .article .abstract {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  color: #626161;
}
#a27d5a959ca8cf6 .article:hover {
  background-color: #ff5800;
  border-top: 1px solid auto;
}
#a27d5a959ca8cf6 .article:hover .title {
  color: #ffffff;
}
#a27d5a959ca8cf6 .article:hover .datetime {
  color: #b6b6b6;
}
#a27d5a959ca8cf6 .article:hover .category {
  color: #b6b6b6;
}
#a27d5a959ca8cf6 .article:hover .abstract {
  color: #ffffff;
}
#a27d5a959ca8cf6 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a27d5a959ca8cf6 .article:hover .list_icon {
  color: #ff5800;
}
#a7adaade42ad57a > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a57eca07aca2ad1 .ab9e7afd2fae103 .img-wrap {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #c3c3c3;
  border-left-color: #c3c3c3;
  border-bottom-color: #c3c3c3;
  border-top-color: #c3c3c3;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#a57eca07aca2ad1 .uk-grid {
  margin-left: 0px;
}
#a57eca07aca2ad1 .uk-grid > * {
  padding-left: 0px;
}
#a57eca07aca2ad1 .uk-grid > .uk-grid-margin {
  margin-top: 10px;
}
#a57eca07aca2ad1 .dynamic-list-item {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a57eca07aca2ad1 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a57eca07aca2ad1 .uk-position-center-left-out {
    left: -30px;
  }
  #a57eca07aca2ad1 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac09aa7b8caf466 {background-color: rgba(0,0,0,0.7);}#ac09aa7b8caf466 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#abb3ca06eea8ac9 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a64cdadceaa6a9e .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;background-color: rgba(250, 250, 250, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a64cdadceaa6a9e .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a28cfa3b83a2318 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a28cfa3b83a2318 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a917bace27afa3a .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a917bace27afa3a .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a57a4ab01ba4611 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a57a4ab01ba4611 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a5d9ca00c2a4709 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a5d9ca00c2a4709 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a1b70ac6dca2a71 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a1b70ac6dca2a71 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a6966a9d9ca83a7 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a6966a9d9ca83a7 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a1d10ab58ba6c77 .adc8ca8098a75ae {
  overflow: hidden;
}
#a1d10ab58ba6c77 .adc8ca8098a75ae , #a1d10ab58ba6c77 .adc8ca8098a75ae > * {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;text-align: center;font-family: inherit;color: rgba(0, 0, 0, 1);}#a1d10ab58ba6c77 .a846baa754a12e4 .img-wrap {
  border-top-width: 1px;
  border-top-color: #cccccc;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#a1d10ab58ba6c77 .dynamic-list-item {
  background-color: #f4f4f4;
}
#a1d10ab58ba6c77 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a1d10ab58ba6c77 .uk-position-center-left-out {
    left: -30px;
  }
  #a1d10ab58ba6c77 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac09aa7b8caf466 {background-color: rgba(0,0,0,0.7);}#ac09aa7b8caf466 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#af055a5be8af481 {background-color: rgba(0,0,0,0.7);}#af055a5be8af481 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#aa2daad0aca13f9 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a2926a0314a0bf6 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a2926a0314a0bf6 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a82aeabb2fa642d .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a82aeabb2fa642d .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a2d71a9227aa000 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a2d71a9227aa000 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#ae27ea974dab85c .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#ae27ea974dab85c .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a118ba67faa7948 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a118ba67faa7948 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a92ffafc1daa880 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a92ffafc1daa880 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#af2dcae1c3a53d7 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#af2dcae1c3a53d7 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a6c48a6724ad421 > .ele-wrap {background-color: rgba(74, 144, 226, 1);background-image: url(/resources/upload/a004aa2d95a7dd5/1732782663700.jpeg);}#a6c48a6724ad421  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a46f0a23c5ad9c8 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a1a33a85e8a9146 > .ele-wrap {background-color: rgba(74, 144, 226, 1);background-image: url(/resources/upload/a004aa2d95a7dd5/赵春平.jpeg);}#a1a33a85e8a9146  > .ele-wrap:hover {background-color: rgba(74, 74, 74, 1);}#a75cea8fa5ac2d6 > .ele-wrap {background-color: rgba(0, 0, 0, 0.65);border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac09aa7b8caf466 {background-color: rgba(0,0,0,0.7);}#ac09aa7b8caf466 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#af055a5be8af481 {background-color: rgba(0,0,0,0.7);}#af055a5be8af481 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#a2dc9a4cb4a7088 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#a8b82afef4a32aa .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#adf9aa51c9a41fc .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#adf9aa51c9a41fc .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a8420a916aadc1e .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a8420a916aadc1e .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a990ea5462a80fd .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a990ea5462a80fd .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#accfda5b9aa5ff0 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#accfda5b9aa5ff0 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac3d0a2df3afcc3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#a339bac5f8aff7d .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4a01a1f80a537d .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#af672a167ca9702 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a4050adc5aa2d71 .ele-slideshow .uk-slidenav {
  background-color: rgba(75, 75, 75, 0.71);
}
#a4050adc5aa2d71 .ele-slideshow .uk-slidenav {
  color: rgba(255, 255, 255, 0.76);
}
#a58b4a0a63a3b98 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a58b4a0a63a3b98  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a15eead297a8063 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a15eead297a8063 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);}#a4634ada68a04a2 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a4634ada68a04a2 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);}#a8eb2a59f9aba8d .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a8eb2a59f9aba8d .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);}#a72a5a8a38accd3 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a72a5a8a38accd3 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);}#a0ac9a1a11a46ec .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a0ac9a1a11a46ec .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);}#abf0fa90b6ae7fa {
  overflow: hidden;
  pointer-events: none;
  border-right-style: solid;
  border-left-style: solid;
}
#abf0fa90b6ae7fa > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#abf0fa90b6ae7fa > .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;
}
#abf0fa90b6ae7fa > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#abf0fa90b6ae7fa > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#abf0fa90b6ae7fa > .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;
}
#abf0fa90b6ae7fa > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#abf0fa90b6ae7fa > .tab-wrap > div > .tab-nav,
#abf0fa90b6ae7fa > .tab-nav,
#abf0fa90b6ae7fa > .tab-tabs > .tab-wrap > div > .tab-nav,
#abf0fa90b6ae7fa > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
}
#abf0fa90b6ae7fa > .tab-wrap > div > .tab-nav-horizontal,
#abf0fa90b6ae7fa > .tab-nav-horizontal,
#abf0fa90b6ae7fa > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#abf0fa90b6ae7fa > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#abf0fa90b6ae7fa > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#abf0fa90b6ae7fa > .tab-nav-horizontal::-webkit-scrollbar,
#abf0fa90b6ae7fa > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#abf0fa90b6ae7fa > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#abf0fa90b6ae7fa > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#abf0fa90b6ae7fa > .tab-nav-horizontal.tagScroll,
#abf0fa90b6ae7fa > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#abf0fa90b6ae7fa > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 46px;
  overflow-x: auto;
}
#abf0fa90b6ae7fa > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#abf0fa90b6ae7fa > .tab-nav-horizontal.tagScroll li a,
#abf0fa90b6ae7fa > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#abf0fa90b6ae7fa > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#abf0fa90b6ae7fa > .tab-wrap > div > .tab-nav a,
#abf0fa90b6ae7fa > .tab-nav a,
#abf0fa90b6ae7fa > .tab-tabs > .tab-wrap > div > .tab-nav a,
#abf0fa90b6ae7fa > .tab-tabs > .tab-nav a {
  padding: 0 156px;
}
#abf0fa90b6ae7fa > .tab-wrap > div > .tab-nav li a,
#abf0fa90b6ae7fa > .tab-nav li a,
#abf0fa90b6ae7fa > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#abf0fa90b6ae7fa > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 45px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 46px;
  font-weight: normal;
  font-style: normal;
  font-size: 26px;
  font-family: inherit;
  color: #000000;
  background-color: #ffffff;
  margin-top: 7px;
  border-bottom-width: 2px;
  border-bottom-color: #50e3c2;
  border-bottom-style: solid;
  margin-left: 70px;
  border-left-width: 0;
  border-left-style: solid;
  padding: 0 156px;
}
#abf0fa90b6ae7fa > .tab-wrap > div > .tab-nav li a svg,
#abf0fa90b6ae7fa > .tab-nav li a svg,
#abf0fa90b6ae7fa > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#abf0fa90b6ae7fa > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#abf0fa90b6ae7fa > .tab-wrap > div > .tab-nav li a .ap_icon,
#abf0fa90b6ae7fa > .tab-nav li a .ap_icon,
#abf0fa90b6ae7fa > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#abf0fa90b6ae7fa > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#abf0fa90b6ae7fa > .tab-wrap > div > .tab-nav li a:hover,
#abf0fa90b6ae7fa > .tab-nav li a:hover,
#abf0fa90b6ae7fa > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#abf0fa90b6ae7fa > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ea3e00;
}
#abf0fa90b6ae7fa > .tab-wrap > div > .tab-nav li.uk-active a,
#abf0fa90b6ae7fa > .tab-nav li.uk-active a,
#abf0fa90b6ae7fa > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#abf0fa90b6ae7fa > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #010101;
  border-bottom-width: 2px;
  border-bottom-color: #ff3d00;
}
#abf0fa90b6ae7fa .layout-left li,
#abf0fa90b6ae7fa .layout-center li,
#abf0fa90b6ae7fa .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#abf0fa90b6ae7fa .layout-left li a,
#abf0fa90b6ae7fa .layout-center li a,
#abf0fa90b6ae7fa .layout-right li a {
  height: 100%;
}
#abf0fa90b6ae7fa > .tab-tabs .layout-left {
  text-align: left;
}
#abf0fa90b6ae7fa > .tab-tabs .layout-center {
  text-align: center;
}
#abf0fa90b6ae7fa > .tab-tabs .layout-right {
  text-align: right;
}
#abf0fa90b6ae7fa .tab-contents {
  height: 100%;
  height: calc(100% - 46px);
}
#abf0fa90b6ae7fa .tab-content-wrap {
  background-color: #f9f5f5;
  border-right-style: solid;
}
#abf0fa90b6ae7fa .tab-contents,
#abf0fa90b6ae7fa .tab-contents-wrap {
  pointer-events: none;
}
#abf0fa90b6ae7fa .tab-content,
#abf0fa90b6ae7fa .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#abf0fa90b6ae7fa .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#abf0fa90b6ae7fa .tab-wrap .tab-contents {
  height: 100%;
}
#abf0fa90b6ae7fa .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#abf0fa90b6ae7fa .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#abf0fa90b6ae7fa .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a0be8a1bdbada7b > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a7ef1a4143ad009 .ele-slideshow .uk-slidenav {
  background-color: rgba(117, 117, 117, 0.84);
}
#a4778ab58eab202 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0412a5d5ba0315 .uk-grid {
  margin-left: -50px;
}
#a0412a5d5ba0315 .uk-grid > * {
  padding-left: 50px;
}
#a0412a5d5ba0315 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a0412a5d5ba0315 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a0412a5d5ba0315 .uk-position-center-left-out {
    left: -30px;
  }
  #a0412a5d5ba0315 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#aa365adc7baeea7 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ab4aca1626a220f .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;
                background-image: linear-gradient(0deg,
                rgba(255, 88, 0, 1),
                rgba(253, 127, 2, 1));
            border-radius: 0px;justify-content: center;border-style: solid;}#ab4aca1626a220f .ele-wrap:hover {background-color: #0483cc;}#ae627ae253a24bb .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#ae627ae253a24bb .ele-wrap:hover {background-color: #0483cc;}#ab47ea96b0a3891 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#ab47ea96b0a3891 .ele-wrap:hover {background-color: #0483cc;}#a8ac7a3aaba0dba .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#a8ac7a3aaba0dba .ele-wrap:hover {background-color: #0483cc;}#ad3b6ae670a2d30 {
  overflow: hidden;
  pointer-events: none;
}
#ad3b6ae670a2d30 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#ad3b6ae670a2d30 > .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;
}
#ad3b6ae670a2d30 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ad3b6ae670a2d30 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#ad3b6ae670a2d30 > .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;
}
#ad3b6ae670a2d30 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ad3b6ae670a2d30 > .tab-wrap > div > .tab-nav,
#ad3b6ae670a2d30 > .tab-nav,
#ad3b6ae670a2d30 > .tab-tabs > .tab-wrap > div > .tab-nav,
#ad3b6ae670a2d30 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  background-color: #ffffff;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#ad3b6ae670a2d30 > .tab-wrap > div > .tab-nav-horizontal,
#ad3b6ae670a2d30 > .tab-nav-horizontal,
#ad3b6ae670a2d30 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#ad3b6ae670a2d30 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#ad3b6ae670a2d30 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ad3b6ae670a2d30 > .tab-nav-horizontal::-webkit-scrollbar,
#ad3b6ae670a2d30 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ad3b6ae670a2d30 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#ad3b6ae670a2d30 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ad3b6ae670a2d30 > .tab-nav-horizontal.tagScroll,
#ad3b6ae670a2d30 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ad3b6ae670a2d30 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 61px;
  overflow-x: auto;
}
#ad3b6ae670a2d30 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ad3b6ae670a2d30 > .tab-nav-horizontal.tagScroll li a,
#ad3b6ae670a2d30 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ad3b6ae670a2d30 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#ad3b6ae670a2d30 > .tab-wrap > div > .tab-nav a,
#ad3b6ae670a2d30 > .tab-nav a,
#ad3b6ae670a2d30 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#ad3b6ae670a2d30 > .tab-tabs > .tab-nav a {
  padding: 0 24px;
}
#ad3b6ae670a2d30 > .tab-wrap > div > .tab-nav li a,
#ad3b6ae670a2d30 > .tab-nav li a,
#ad3b6ae670a2d30 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#ad3b6ae670a2d30 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 61px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  border-right-style: solid;
  margin-right: 7px;
  margin-left: 7px;
  border-right-width: 1px;
  border-right-color: #ababab;
  border-left-color: #d2d2d2;
  border-bottom-color: #d2d2d2;
  border-top-color: #d2d2d2;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
  padding: 0 24px;
}
#ad3b6ae670a2d30 > .tab-wrap > div > .tab-nav li a svg,
#ad3b6ae670a2d30 > .tab-nav li a svg,
#ad3b6ae670a2d30 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#ad3b6ae670a2d30 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#ad3b6ae670a2d30 > .tab-wrap > div > .tab-nav li a .ap_icon,
#ad3b6ae670a2d30 > .tab-nav li a .ap_icon,
#ad3b6ae670a2d30 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#ad3b6ae670a2d30 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#ad3b6ae670a2d30 > .tab-wrap > div > .tab-nav li a:hover,
#ad3b6ae670a2d30 > .tab-nav li a:hover,
#ad3b6ae670a2d30 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#ad3b6ae670a2d30 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff6a02;
  border-bottom-width: 2px;
  border-bottom-color: #ff6a02;
  border-bottom-style: solid;
}
#ad3b6ae670a2d30 > .tab-wrap > div > .tab-nav li.uk-active a,
#ad3b6ae670a2d30 > .tab-nav li.uk-active a,
#ad3b6ae670a2d30 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#ad3b6ae670a2d30 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 2px;
  border-bottom-color: #9b9b9b;
  border-bottom-style: solid;
  background-color: #fb5800;
}
#ad3b6ae670a2d30 .layout-left li,
#ad3b6ae670a2d30 .layout-center li,
#ad3b6ae670a2d30 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#ad3b6ae670a2d30 .layout-left li a,
#ad3b6ae670a2d30 .layout-center li a,
#ad3b6ae670a2d30 .layout-right li a {
  height: 100%;
}
#ad3b6ae670a2d30 > .tab-tabs .layout-left {
  text-align: left;
}
#ad3b6ae670a2d30 > .tab-tabs .layout-center {
  text-align: center;
}
#ad3b6ae670a2d30 > .tab-tabs .layout-right {
  text-align: right;
}
#ad3b6ae670a2d30 .tab-contents {
  height: 100%;
  height: calc(100% - 61px);
}
#ad3b6ae670a2d30 .tab-content-wrap {
  background-color: #ffffff;
}
#ad3b6ae670a2d30 .tab-contents,
#ad3b6ae670a2d30 .tab-contents-wrap {
  pointer-events: none;
}
#ad3b6ae670a2d30 .tab-content,
#ad3b6ae670a2d30 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#ad3b6ae670a2d30 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#ad3b6ae670a2d30 .tab-wrap .tab-contents {
  height: 100%;
}
#ad3b6ae670a2d30 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#ad3b6ae670a2d30 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#ad3b6ae670a2d30 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a196ea425ba1996 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aab08a4040a7ec9 .uk-grid {
  margin-left: -15px;
}
#aab08a4040a7ec9 .uk-grid > * {
  padding-left: 15px;
}
#aab08a4040a7ec9 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#aab08a4040a7ec9 .ap-category-filter ul li.active {
  border-color: #ee895d;
  color: #ee895d;
}
#aab08a4040a7ec9 .article {
  background-color: #fff;
  border-bottom: 1px solid #4d4d4e;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  background-color: #ffffff;
  border-bottom-style: dashed;
}
#aab08a4040a7ec9 .article .info {
  padding: 6px 10px;
  position: relative;
}
#aab08a4040a7ec9 .article .info p {
  margin: 10px 0 10px;
}
#aab08a4040a7ec9 .article svg {
  fill: currentColor;
}
#aab08a4040a7ec9 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#aab08a4040a7ec9 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#aab08a4040a7ec9 .article.list-icon .info {
  padding-left: 25px;
}
#aab08a4040a7ec9 .article .datetime {
  position: absolute;
  right: 10px;
  top: 6px;
}
#aab08a4040a7ec9 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: left;
  font-family: inherit;
  color: #000000;
}
#aab08a4040a7ec9 .article .abstract {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  color: #626161;
}
#aab08a4040a7ec9 .article:hover {
  background-color: #ff5800;
  border-top: 1px solid auto;
}
#aab08a4040a7ec9 .article:hover .title {
  color: #ffffff;
}
#aab08a4040a7ec9 .article:hover .datetime {
  color: #b6b6b6;
}
#aab08a4040a7ec9 .article:hover .category {
  color: #b6b6b6;
}
#aab08a4040a7ec9 .article:hover .abstract {
  color: #ffffff;
}
#aab08a4040a7ec9 .article:hover .btn_icon {
  color: #b6b6b6;
}
#aab08a4040a7ec9 .article:hover .list_icon {
  color: #ff5800;
}
#a35efa3195a94f4 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5c33a5929a416e .a5c89ac29da670c .img-wrap {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #c3c3c3;
  border-left-color: #c3c3c3;
  border-bottom-color: #c3c3c3;
  border-top-color: #c3c3c3;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#a5c33a5929a416e .uk-grid {
  margin-left: 0px;
}
#a5c33a5929a416e .uk-grid > * {
  padding-left: 0px;
}
#a5c33a5929a416e .uk-grid > .uk-grid-margin {
  margin-top: 10px;
}
#a5c33a5929a416e .dynamic-list-item {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a5c33a5929a416e .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a5c33a5929a416e .uk-position-center-left-out {
    left: -30px;
  }
  #a5c33a5929a416e .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac09aa7b8caf466 {background-color: rgba(0,0,0,0.7);}#ac09aa7b8caf466 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#a5f2ea51c8af3ee .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#af212abfdbae47d .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;background-color: rgba(250, 250, 250, 1);border-radius: 0px;justify-content: center;border-style: solid;}#af212abfdbae47d .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a9e0ba85c5a764a .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a9e0ba85c5a764a .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a2baaa414da941c .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a2baaa414da941c .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#afd77a18b4aac50 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#afd77a18b4aac50 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a7d15a6cd9aa06e .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a7d15a6cd9aa06e .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a84d4a3c55af1aa .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a84d4a3c55af1aa .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a18dba3ba3a7172 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a18dba3ba3a7172 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a6114a7bc7a8f21 .ac720ab196a20bf {
  overflow: hidden;
}
#a6114a7bc7a8f21 .ac720ab196a20bf , #a6114a7bc7a8f21 .ac720ab196a20bf > * {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;text-align: center;font-family: inherit;color: rgba(0, 0, 0, 1);}#a6114a7bc7a8f21 .a819da7aa8afd2d .img-wrap {
  border-top-width: 1px;
  border-top-color: #cccccc;
}
#a6114a7bc7a8f21 .dynamic-list-item {
  background-color: #f4f4f4;
}
#a6114a7bc7a8f21 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a6114a7bc7a8f21 .uk-position-center-left-out {
    left: -30px;
  }
  #a6114a7bc7a8f21 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac09aa7b8caf466 {background-color: rgba(0,0,0,0.7);}#ac09aa7b8caf466 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#af055a5be8af481 {background-color: rgba(0,0,0,0.7);}#af055a5be8af481 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#ac3d0a2df3afcc3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#abe50af9e5ae13c {
  overflow: hidden;
  pointer-events: none;
}
#abe50af9e5ae13c > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 40px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#abe50af9e5ae13c > .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;
}
#abe50af9e5ae13c > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#abe50af9e5ae13c > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 40px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#abe50af9e5ae13c > .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;
}
#abe50af9e5ae13c > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#abe50af9e5ae13c > .tab-wrap > div > .tab-nav,
#abe50af9e5ae13c > .tab-nav,
#abe50af9e5ae13c > .tab-tabs > .tab-wrap > div > .tab-nav,
#abe50af9e5ae13c > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-style: none;
}
#abe50af9e5ae13c > .tab-wrap > div > .tab-nav-horizontal,
#abe50af9e5ae13c > .tab-nav-horizontal,
#abe50af9e5ae13c > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#abe50af9e5ae13c > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#abe50af9e5ae13c > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#abe50af9e5ae13c > .tab-nav-horizontal::-webkit-scrollbar,
#abe50af9e5ae13c > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#abe50af9e5ae13c > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#abe50af9e5ae13c > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#abe50af9e5ae13c > .tab-nav-horizontal.tagScroll,
#abe50af9e5ae13c > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#abe50af9e5ae13c > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 40px;
  overflow-x: auto;
}
#abe50af9e5ae13c > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#abe50af9e5ae13c > .tab-nav-horizontal.tagScroll li a,
#abe50af9e5ae13c > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#abe50af9e5ae13c > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#abe50af9e5ae13c > .tab-wrap > div > .tab-nav a,
#abe50af9e5ae13c > .tab-nav a,
#abe50af9e5ae13c > .tab-tabs > .tab-wrap > div > .tab-nav a,
#abe50af9e5ae13c > .tab-tabs > .tab-nav a {
  padding: 0 0px;
}
#abe50af9e5ae13c > .tab-wrap > div > .tab-nav li a,
#abe50af9e5ae13c > .tab-nav li a,
#abe50af9e5ae13c > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#abe50af9e5ae13c > .tab-tabs > .tab-nav li a {
  display: block;
  line-height: 39px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 40px;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: center;
  font-family: inherit;
  color: #4a4a4a;
  border-right-style: none;
  margin-right: 10px;
  margin-left: 0;
  background-color: #e3e3e3;
}
#abe50af9e5ae13c > .tab-wrap > div > .tab-nav li a svg,
#abe50af9e5ae13c > .tab-nav li a svg,
#abe50af9e5ae13c > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#abe50af9e5ae13c > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#abe50af9e5ae13c > .tab-wrap > div > .tab-nav li a .ap_icon,
#abe50af9e5ae13c > .tab-nav li a .ap_icon,
#abe50af9e5ae13c > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#abe50af9e5ae13c > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#abe50af9e5ae13c > .tab-wrap > div > .tab-nav li a:hover,
#abe50af9e5ae13c > .tab-nav li a:hover,
#abe50af9e5ae13c > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#abe50af9e5ae13c > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  border-bottom-width: 2px;
  border-bottom-color: #ff5800;
  border-bottom-style: solid;
}
#abe50af9e5ae13c > .tab-wrap > div > .tab-nav li.uk-active a,
#abe50af9e5ae13c > .tab-nav li.uk-active a,
#abe50af9e5ae13c > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#abe50af9e5ae13c > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 0;
  border-bottom-style: solid;
  border-right-width: 0;
  border-left-width: 0;
  border-top-width: 0;
  border-right-style: solid;
  border-left-style: solid;
  border-top-style: solid;
  background-color: #ff6b00;
}
#abe50af9e5ae13c > .tab-wrap > div > .tab-nav li:last-child a,
#abe50af9e5ae13c > .tab-nav li:last-child a,
#abe50af9e5ae13c > .tab-tabs > .tab-wrap > div > .tab-nav li:last-child a,
#abe50af9e5ae13c > .tab-tabs > .tab-nav li:last-child a {
  border-right: undefined;
}
#abe50af9e5ae13c .layout-left li,
#abe50af9e5ae13c .layout-center li,
#abe50af9e5ae13c .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#abe50af9e5ae13c .layout-left li a,
#abe50af9e5ae13c .layout-center li a,
#abe50af9e5ae13c .layout-right li a {
  height: 100%;
}
#abe50af9e5ae13c > .tab-tabs .layout-left {
  text-align: left;
}
#abe50af9e5ae13c > .tab-tabs .layout-center {
  text-align: center;
}
#abe50af9e5ae13c > .tab-tabs .layout-right {
  text-align: right;
}
#abe50af9e5ae13c .tab-contents {
  height: 100%;
  height: calc(100% - 40px);
}
#abe50af9e5ae13c .tab-content-wrap {
  background-color: #ffffff;
}
#abe50af9e5ae13c .tab-contents,
#abe50af9e5ae13c .tab-contents-wrap {
  pointer-events: none;
}
#abe50af9e5ae13c .tab-content,
#abe50af9e5ae13c .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#abe50af9e5ae13c .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#abe50af9e5ae13c .tab-wrap .tab-contents {
  height: 100%;
}
#abe50af9e5ae13c .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#abe50af9e5ae13c .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#abe50af9e5ae13c .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#af47ca13bead44a > .ele-wrap {background-color: rgba(255, 107, 0, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a8bf9a3708ae053 > .ele-wrap {background-color: rgba(255, 107, 0, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a07e5ae383a7525 > .ele-wrap {background-color: rgba(255, 107, 0, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ad9cbaad13ad0f9 > .ele-wrap {background-color: rgba(255, 107, 0, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#abd4cac7aba5690 > .ele-wrap {background-color: rgba(255, 107, 0, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#adc3fadf79a289f > .ele-wrap {background-color: rgba(255, 107, 0, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a2bd4a4296a9f2c > .ele-wrap {background-color: rgba(255, 107, 0, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a1b0aaa9eca2a0f > .ele-wrap {background-color: rgba(255, 107, 0, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a6138a724babd61 > .ele-wrap {background-color: rgba(255, 107, 0, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#aa6a4ae738ae697 > .ele-wrap {background-color: rgba(255, 107, 0, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a55aaa65eaa7d13 > .ele-wrap {background-color: rgba(255, 107, 0, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a1b42a08a6aeb95 > .ele-wrap {background-color: rgba(255, 107, 0, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a1979a5acba72dc > .ele-wrap {background-color: rgba(255, 107, 0, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a9167a7cf8a081b > .ele-wrap {background-color: rgba(255, 107, 0, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#affe0a2953af4b1 > .ele-wrap {background-color: rgba(255, 107, 0, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a18f3a3fa1a698c > .ele-wrap {background-color: rgba(255, 107, 0, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a08bbacd8aa69d5 .uk-grid {
  margin-left: -15px;
}
#a08bbacd8aa69d5 .uk-grid > * {
  padding-left: 15px;
}
#a08bbacd8aa69d5 .uk-grid > .uk-grid-margin {
  margin-top: 10px;
}
#a08bbacd8aa69d5 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a08bbacd8aa69d5 .uk-position-center-left-out {
    left: -30px;
  }
  #a08bbacd8aa69d5 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#a42aba1959aeb62 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#ad98dac423a7e34 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#ad98dac423a7e34 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a1f3faf6b8aeddc .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a1f3faf6b8aeddc .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a0c22ac64aad0a3 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a0c22ac64aad0a3 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#ae34fa219ca6bb1 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#ae34fa219ca6bb1 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#aa4c0a7789a21aa .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#a626bae0e9ac300 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a76fea5682a8a31 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a272baa41fac41d .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a1e79a6d42a006e .ele-slideshow .uk-slidenav {
  background-color: rgba(75, 75, 75, 0.71);
}
#a1e79a6d42a006e .ele-slideshow .uk-slidenav {
  color: rgba(255, 255, 255, 0.76);
}
#aa12dac69ca55cd > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa12dac69ca55cd  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#adb31ad0deafda6 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#adb31ad0deafda6 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);}#a3871a70a9ae0e0 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a3871a70a9ae0e0 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);}#a0dd3a2419a9d36 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a0dd3a2419a9d36 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);}#a152fa2626aa27b .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a152fa2626aa27b .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);}#a5af9a9d36a8d89 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a5af9a9d36a8d89 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);}#a31c8a255da7660 {
  overflow: hidden;
  pointer-events: none;
  border-right-style: solid;
  border-left-style: solid;
}
#a31c8a255da7660 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a31c8a255da7660 > .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;
}
#a31c8a255da7660 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a31c8a255da7660 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a31c8a255da7660 > .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;
}
#a31c8a255da7660 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a31c8a255da7660 > .tab-wrap > div > .tab-nav,
#a31c8a255da7660 > .tab-nav,
#a31c8a255da7660 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a31c8a255da7660 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
}
#a31c8a255da7660 > .tab-wrap > div > .tab-nav-horizontal,
#a31c8a255da7660 > .tab-nav-horizontal,
#a31c8a255da7660 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a31c8a255da7660 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a31c8a255da7660 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a31c8a255da7660 > .tab-nav-horizontal::-webkit-scrollbar,
#a31c8a255da7660 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a31c8a255da7660 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a31c8a255da7660 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a31c8a255da7660 > .tab-nav-horizontal.tagScroll,
#a31c8a255da7660 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a31c8a255da7660 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 46px;
  overflow-x: auto;
}
#a31c8a255da7660 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a31c8a255da7660 > .tab-nav-horizontal.tagScroll li a,
#a31c8a255da7660 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a31c8a255da7660 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a31c8a255da7660 > .tab-wrap > div > .tab-nav a,
#a31c8a255da7660 > .tab-nav a,
#a31c8a255da7660 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a31c8a255da7660 > .tab-tabs > .tab-nav a {
  padding: 0 156px;
}
#a31c8a255da7660 > .tab-wrap > div > .tab-nav li a,
#a31c8a255da7660 > .tab-nav li a,
#a31c8a255da7660 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a31c8a255da7660 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 45px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 46px;
  font-weight: normal;
  font-style: normal;
  font-size: 26px;
  font-family: inherit;
  color: #000000;
  background-color: #ffffff;
  margin-top: 7px;
  border-bottom-width: 2px;
  border-bottom-color: #50e3c2;
  border-bottom-style: solid;
  margin-left: 70px;
  border-left-width: 0;
  border-left-style: solid;
  padding: 0 156px;
}
#a31c8a255da7660 > .tab-wrap > div > .tab-nav li a svg,
#a31c8a255da7660 > .tab-nav li a svg,
#a31c8a255da7660 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a31c8a255da7660 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a31c8a255da7660 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a31c8a255da7660 > .tab-nav li a .ap_icon,
#a31c8a255da7660 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a31c8a255da7660 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a31c8a255da7660 > .tab-wrap > div > .tab-nav li a:hover,
#a31c8a255da7660 > .tab-nav li a:hover,
#a31c8a255da7660 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a31c8a255da7660 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ea3e00;
}
#a31c8a255da7660 > .tab-wrap > div > .tab-nav li.uk-active a,
#a31c8a255da7660 > .tab-nav li.uk-active a,
#a31c8a255da7660 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a31c8a255da7660 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #010101;
  border-bottom-width: 2px;
  border-bottom-color: #ff3d00;
}
#a31c8a255da7660 .layout-left li,
#a31c8a255da7660 .layout-center li,
#a31c8a255da7660 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a31c8a255da7660 .layout-left li a,
#a31c8a255da7660 .layout-center li a,
#a31c8a255da7660 .layout-right li a {
  height: 100%;
}
#a31c8a255da7660 > .tab-tabs .layout-left {
  text-align: left;
}
#a31c8a255da7660 > .tab-tabs .layout-center {
  text-align: center;
}
#a31c8a255da7660 > .tab-tabs .layout-right {
  text-align: right;
}
#a31c8a255da7660 .tab-contents {
  height: 100%;
  height: calc(100% - 46px);
}
#a31c8a255da7660 .tab-content-wrap {
  background-color: #f9f5f5;
  border-right-style: solid;
}
#a31c8a255da7660 .tab-contents,
#a31c8a255da7660 .tab-contents-wrap {
  pointer-events: none;
}
#a31c8a255da7660 .tab-content,
#a31c8a255da7660 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a31c8a255da7660 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a31c8a255da7660 .tab-wrap .tab-contents {
  height: 100%;
}
#a31c8a255da7660 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a31c8a255da7660 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a31c8a255da7660 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a6a52a8282abced > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#afdcca5845a2b65 .ele-slideshow .uk-slidenav {
  background-color: rgba(117, 117, 117, 0.84);
}
#acc25aacbda33a3 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa427a0676aca74 .uk-grid {
  margin-left: -50px;
}
#aa427a0676aca74 .uk-grid > * {
  padding-left: 50px;
}
#aa427a0676aca74 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#aa427a0676aca74 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #aa427a0676aca74 .uk-position-center-left-out {
    left: -30px;
  }
  #aa427a0676aca74 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a752ea3122a0bb6 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b55a4e6cadb17 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;
                background-image: linear-gradient(0deg,
                rgba(255, 88, 0, 1),
                rgba(253, 127, 2, 1));
            border-radius: 0px;justify-content: center;border-style: solid;}#a0b55a4e6cadb17 .ele-wrap:hover {background-color: #0483cc;}#a7dada97a7a2cd9 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#a7dada97a7a2cd9 .ele-wrap:hover {background-color: #0483cc;}#ac135ac17da0da6 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#ac135ac17da0da6 .ele-wrap:hover {background-color: #0483cc;}#a395da8e84a30e0 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#a395da8e84a30e0 .ele-wrap:hover {background-color: #0483cc;}#ae2b2aa476afc05 {
  overflow: hidden;
  pointer-events: none;
}
#ae2b2aa476afc05 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#ae2b2aa476afc05 > .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;
}
#ae2b2aa476afc05 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ae2b2aa476afc05 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#ae2b2aa476afc05 > .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;
}
#ae2b2aa476afc05 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ae2b2aa476afc05 > .tab-wrap > div > .tab-nav,
#ae2b2aa476afc05 > .tab-nav,
#ae2b2aa476afc05 > .tab-tabs > .tab-wrap > div > .tab-nav,
#ae2b2aa476afc05 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  background-color: #ffffff;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#ae2b2aa476afc05 > .tab-wrap > div > .tab-nav-horizontal,
#ae2b2aa476afc05 > .tab-nav-horizontal,
#ae2b2aa476afc05 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#ae2b2aa476afc05 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#ae2b2aa476afc05 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ae2b2aa476afc05 > .tab-nav-horizontal::-webkit-scrollbar,
#ae2b2aa476afc05 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ae2b2aa476afc05 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#ae2b2aa476afc05 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ae2b2aa476afc05 > .tab-nav-horizontal.tagScroll,
#ae2b2aa476afc05 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ae2b2aa476afc05 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 61px;
  overflow-x: auto;
}
#ae2b2aa476afc05 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ae2b2aa476afc05 > .tab-nav-horizontal.tagScroll li a,
#ae2b2aa476afc05 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ae2b2aa476afc05 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#ae2b2aa476afc05 > .tab-wrap > div > .tab-nav a,
#ae2b2aa476afc05 > .tab-nav a,
#ae2b2aa476afc05 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#ae2b2aa476afc05 > .tab-tabs > .tab-nav a {
  padding: 0 24px;
}
#ae2b2aa476afc05 > .tab-wrap > div > .tab-nav li a,
#ae2b2aa476afc05 > .tab-nav li a,
#ae2b2aa476afc05 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#ae2b2aa476afc05 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 61px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  border-right-style: solid;
  margin-right: 7px;
  margin-left: 7px;
  border-right-width: 1px;
  border-right-color: #ababab;
  border-left-color: #d2d2d2;
  border-bottom-color: #d2d2d2;
  border-top-color: #d2d2d2;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
  padding: 0 24px;
}
#ae2b2aa476afc05 > .tab-wrap > div > .tab-nav li a svg,
#ae2b2aa476afc05 > .tab-nav li a svg,
#ae2b2aa476afc05 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#ae2b2aa476afc05 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#ae2b2aa476afc05 > .tab-wrap > div > .tab-nav li a .ap_icon,
#ae2b2aa476afc05 > .tab-nav li a .ap_icon,
#ae2b2aa476afc05 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#ae2b2aa476afc05 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#ae2b2aa476afc05 > .tab-wrap > div > .tab-nav li a:hover,
#ae2b2aa476afc05 > .tab-nav li a:hover,
#ae2b2aa476afc05 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#ae2b2aa476afc05 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff6a02;
  border-bottom-width: 2px;
  border-bottom-color: #ff6a02;
  border-bottom-style: solid;
}
#ae2b2aa476afc05 > .tab-wrap > div > .tab-nav li.uk-active a,
#ae2b2aa476afc05 > .tab-nav li.uk-active a,
#ae2b2aa476afc05 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#ae2b2aa476afc05 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 2px;
  border-bottom-color: #9b9b9b;
  border-bottom-style: solid;
  background-color: #fb5800;
}
#ae2b2aa476afc05 .layout-left li,
#ae2b2aa476afc05 .layout-center li,
#ae2b2aa476afc05 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#ae2b2aa476afc05 .layout-left li a,
#ae2b2aa476afc05 .layout-center li a,
#ae2b2aa476afc05 .layout-right li a {
  height: 100%;
}
#ae2b2aa476afc05 > .tab-tabs .layout-left {
  text-align: left;
}
#ae2b2aa476afc05 > .tab-tabs .layout-center {
  text-align: center;
}
#ae2b2aa476afc05 > .tab-tabs .layout-right {
  text-align: right;
}
#ae2b2aa476afc05 .tab-contents {
  height: 100%;
  height: calc(100% - 61px);
}
#ae2b2aa476afc05 .tab-content-wrap {
  background-color: #ffffff;
}
#ae2b2aa476afc05 .tab-contents,
#ae2b2aa476afc05 .tab-contents-wrap {
  pointer-events: none;
}
#ae2b2aa476afc05 .tab-content,
#ae2b2aa476afc05 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#ae2b2aa476afc05 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#ae2b2aa476afc05 .tab-wrap .tab-contents {
  height: 100%;
}
#ae2b2aa476afc05 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#ae2b2aa476afc05 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#ae2b2aa476afc05 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a35aea1a34afc86 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5e9eaea03acabc .uk-grid {
  margin-left: -15px;
}
#a5e9eaea03acabc .uk-grid > * {
  padding-left: 15px;
}
#a5e9eaea03acabc .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a5e9eaea03acabc .ap-category-filter ul li.active {
  border-color: #ee895d;
  color: #ee895d;
}
#a5e9eaea03acabc .article {
  background-color: #fff;
  border-bottom: 1px solid #4d4d4e;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  background-color: #ffffff;
  border-bottom-style: dashed;
}
#a5e9eaea03acabc .article .info {
  padding: 6px 10px;
  position: relative;
}
#a5e9eaea03acabc .article .info p {
  margin: 10px 0 10px;
}
#a5e9eaea03acabc .article svg {
  fill: currentColor;
}
#a5e9eaea03acabc .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#a5e9eaea03acabc .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#a5e9eaea03acabc .article.list-icon .info {
  padding-left: 25px;
}
#a5e9eaea03acabc .article .datetime {
  position: absolute;
  right: 10px;
  top: 6px;
}
#a5e9eaea03acabc .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: left;
  font-family: inherit;
  color: #000000;
}
#a5e9eaea03acabc .article .abstract {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  color: #626161;
}
#a5e9eaea03acabc .article:hover {
  background-color: #ff5800;
  border-top: 1px solid auto;
}
#a5e9eaea03acabc .article:hover .title {
  color: #ffffff;
}
#a5e9eaea03acabc .article:hover .datetime {
  color: #b6b6b6;
}
#a5e9eaea03acabc .article:hover .category {
  color: #b6b6b6;
}
#a5e9eaea03acabc .article:hover .abstract {
  color: #ffffff;
}
#a5e9eaea03acabc .article:hover .btn_icon {
  color: #b6b6b6;
}
#a5e9eaea03acabc .article:hover .list_icon {
  color: #ff5800;
}
#a321cae917a23c4 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae3b9a5ebfacdca .aaee7aebbeab45c .img-wrap {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #c3c3c3;
  border-left-color: #c3c3c3;
  border-bottom-color: #c3c3c3;
  border-top-color: #c3c3c3;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ae3b9a5ebfacdca .uk-grid {
  margin-left: 0px;
}
#ae3b9a5ebfacdca .uk-grid > * {
  padding-left: 0px;
}
#ae3b9a5ebfacdca .uk-grid > .uk-grid-margin {
  margin-top: 10px;
}
#ae3b9a5ebfacdca .dynamic-list-item {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#ae3b9a5ebfacdca .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #ae3b9a5ebfacdca .uk-position-center-left-out {
    left: -30px;
  }
  #ae3b9a5ebfacdca .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac09aa7b8caf466 {background-color: rgba(0,0,0,0.7);}#ac09aa7b8caf466 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#a2947adff8a88ed .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a8d5eab361a2448 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;background-color: rgba(250, 250, 250, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a8d5eab361a2448 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a70aea49c4a01e5 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a70aea49c4a01e5 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a74d4a5858a2f9e .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a74d4a5858a2f9e .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a5e63a63a7aa21c .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a5e63a63a7aa21c .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a56f6a907ca618c .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a56f6a907ca618c .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#ac097ae9e0ae3a1 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#ac097ae9e0ae3a1 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a44f7af727a4b8b .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a44f7af727a4b8b .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a3e73affe3a69f1 .a73b3a2fb3a8bda {
  overflow: hidden;
}
#a3e73affe3a69f1 .a73b3a2fb3a8bda , #a3e73affe3a69f1 .a73b3a2fb3a8bda > * {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;text-align: center;font-family: inherit;color: rgba(0, 0, 0, 1);}#a3e73affe3a69f1 .a33baa1772aee0a .img-wrap {
  border-right-width: 1px;
  border-right-color: #cccccc;
  border-right-style: solid;
  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-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#a3e73affe3a69f1 .dynamic-list-item {
  background-color: #f4f4f4;
}
#a3e73affe3a69f1 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a3e73affe3a69f1 .uk-position-center-left-out {
    left: -30px;
  }
  #a3e73affe3a69f1 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac09aa7b8caf466 {background-color: rgba(0,0,0,0.7);}#ac09aa7b8caf466 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#af055a5be8af481 {background-color: rgba(0,0,0,0.7);}#af055a5be8af481 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#ac3d0a2df3afcc3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#ad344ad68eaf5fb > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a1330aa443aae3a .ap-category-filter ul li.active {
  border-color: #ee895d;
  color: #ee895d;
}
#a1330aa443aae3a .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a1330aa443aae3a .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a1330aa443aae3a .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a1330aa443aae3a .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a1330aa443aae3a .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a1330aa443aae3a .ele-article-list .pic-article .img_wrap .tag {
  display: inline-block;
  padding: 0 .5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: .6rem;
  text-align: center;
  border-radius: 1rem;
  margin: 0 5px 5px 0;
}
#a1330aa443aae3a .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a1330aa443aae3a .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a1330aa443aae3a .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a1330aa443aae3a .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a1330aa443aae3a .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a1330aa443aae3a .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a1330aa443aae3a .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a1330aa443aae3a .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a1330aa443aae3a .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a1330aa443aae3a .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a1330aa443aae3a .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a1330aa443aae3a .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a1330aa443aae3a .ele-article-list .text-article h3 a:hover {
  text-decoration: underline;
  color: #222;
}
/* mobile */
@media (max-width: 640px) {
  .ele-article-list .pic-article {
    padding: 10px 0;
  }
  .ele-article-list .pic-article .img_wrap {
    margin-right: 10px;
  }
  .ele-article-list .pic-article .img_wrap .tag {
    display: none;
  }
  .ele-article-list .pic-article .info {
    font-size: 12px;
  }
  .ele-article-list .pic-article .abstract {
    display: none;
  }
  .ele-article-list .pic-article .info h3 {
    font-size: 14px;
  }
}
#a1330aa443aae3a .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px solid #ececec;
}
#a1330aa443aae3a .ele-article-list .pic-article .img_wrap {
  width: 22%;
  border-radius: 0px;
  overflow: hidden;
}
#a1330aa443aae3a .ele-article-list .pic-article .info .abstract {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000000;
  min-height: 40px;
}
#a1330aa443aae3a .ele-article-list .pic-article .info h3 a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff6b00;
}
#a1330aa443aae3a .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a1330aa443aae3a .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a1330aa443aae3a .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a1330aa443aae3a .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a1330aa443aae3a .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a1330aa443aae3a .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
}
#a1330aa443aae3a .ele-article-list .text-article h3 a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff6b00;
}
#a1330aa443aae3a .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a1330aa443aae3a .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a1330aa443aae3a .ele-article-list .text-article:hover .time {
  color: auto;
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#a3c3ca11b8a5f71 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#a3968a1636af5a6 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a8ca1a2b7aae074 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a808caf123ad781 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a4ccba839da5f0d .ele-slideshow .uk-slidenav {
  background-color: rgba(75, 75, 75, 0.71);
}
#a4ccba839da5f0d .ele-slideshow .uk-slidenav {
  color: rgba(255, 255, 255, 0.76);
}
#a0339a6448a6421 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0339a6448a6421  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ac6cfaeb9faf4cc .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#ac6cfaeb9faf4cc .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);}#a5698a48b8aa5e5 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a5698a48b8aa5e5 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);}#a9a4da00eba950e .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a9a4da00eba950e .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);}#ab6b5a578aa66d2 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#ab6b5a578aa66d2 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);}#a1beba472da85b7 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a1beba472da85b7 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);}#ac0aaa5344a3c6f {
  overflow: hidden;
  pointer-events: none;
  border-right-style: solid;
  border-left-style: solid;
}
#ac0aaa5344a3c6f > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#ac0aaa5344a3c6f > .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;
}
#ac0aaa5344a3c6f > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ac0aaa5344a3c6f > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#ac0aaa5344a3c6f > .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;
}
#ac0aaa5344a3c6f > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ac0aaa5344a3c6f > .tab-wrap > div > .tab-nav,
#ac0aaa5344a3c6f > .tab-nav,
#ac0aaa5344a3c6f > .tab-tabs > .tab-wrap > div > .tab-nav,
#ac0aaa5344a3c6f > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
}
#ac0aaa5344a3c6f > .tab-wrap > div > .tab-nav-horizontal,
#ac0aaa5344a3c6f > .tab-nav-horizontal,
#ac0aaa5344a3c6f > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#ac0aaa5344a3c6f > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#ac0aaa5344a3c6f > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ac0aaa5344a3c6f > .tab-nav-horizontal::-webkit-scrollbar,
#ac0aaa5344a3c6f > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ac0aaa5344a3c6f > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#ac0aaa5344a3c6f > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ac0aaa5344a3c6f > .tab-nav-horizontal.tagScroll,
#ac0aaa5344a3c6f > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ac0aaa5344a3c6f > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 46px;
  overflow-x: auto;
}
#ac0aaa5344a3c6f > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ac0aaa5344a3c6f > .tab-nav-horizontal.tagScroll li a,
#ac0aaa5344a3c6f > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ac0aaa5344a3c6f > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#ac0aaa5344a3c6f > .tab-wrap > div > .tab-nav a,
#ac0aaa5344a3c6f > .tab-nav a,
#ac0aaa5344a3c6f > .tab-tabs > .tab-wrap > div > .tab-nav a,
#ac0aaa5344a3c6f > .tab-tabs > .tab-nav a {
  padding: 0 156px;
}
#ac0aaa5344a3c6f > .tab-wrap > div > .tab-nav li a,
#ac0aaa5344a3c6f > .tab-nav li a,
#ac0aaa5344a3c6f > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#ac0aaa5344a3c6f > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 45px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 46px;
  font-weight: normal;
  font-style: normal;
  font-size: 26px;
  font-family: inherit;
  color: #000000;
  background-color: #ffffff;
  margin-top: 7px;
  border-bottom-width: 2px;
  border-bottom-color: #50e3c2;
  border-bottom-style: solid;
  margin-left: 70px;
  border-left-width: 0;
  border-left-style: solid;
  padding: 0 156px;
}
#ac0aaa5344a3c6f > .tab-wrap > div > .tab-nav li a svg,
#ac0aaa5344a3c6f > .tab-nav li a svg,
#ac0aaa5344a3c6f > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#ac0aaa5344a3c6f > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#ac0aaa5344a3c6f > .tab-wrap > div > .tab-nav li a .ap_icon,
#ac0aaa5344a3c6f > .tab-nav li a .ap_icon,
#ac0aaa5344a3c6f > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#ac0aaa5344a3c6f > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#ac0aaa5344a3c6f > .tab-wrap > div > .tab-nav li a:hover,
#ac0aaa5344a3c6f > .tab-nav li a:hover,
#ac0aaa5344a3c6f > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#ac0aaa5344a3c6f > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ea3e00;
}
#ac0aaa5344a3c6f > .tab-wrap > div > .tab-nav li.uk-active a,
#ac0aaa5344a3c6f > .tab-nav li.uk-active a,
#ac0aaa5344a3c6f > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#ac0aaa5344a3c6f > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #010101;
  border-bottom-width: 2px;
  border-bottom-color: #ff3d00;
}
#ac0aaa5344a3c6f .layout-left li,
#ac0aaa5344a3c6f .layout-center li,
#ac0aaa5344a3c6f .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#ac0aaa5344a3c6f .layout-left li a,
#ac0aaa5344a3c6f .layout-center li a,
#ac0aaa5344a3c6f .layout-right li a {
  height: 100%;
}
#ac0aaa5344a3c6f > .tab-tabs .layout-left {
  text-align: left;
}
#ac0aaa5344a3c6f > .tab-tabs .layout-center {
  text-align: center;
}
#ac0aaa5344a3c6f > .tab-tabs .layout-right {
  text-align: right;
}
#ac0aaa5344a3c6f .tab-contents {
  height: 100%;
  height: calc(100% - 46px);
}
#ac0aaa5344a3c6f .tab-content-wrap {
  background-color: #f9f5f5;
  border-right-style: solid;
}
#ac0aaa5344a3c6f .tab-contents,
#ac0aaa5344a3c6f .tab-contents-wrap {
  pointer-events: none;
}
#ac0aaa5344a3c6f .tab-content,
#ac0aaa5344a3c6f .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#ac0aaa5344a3c6f .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#ac0aaa5344a3c6f .tab-wrap .tab-contents {
  height: 100%;
}
#ac0aaa5344a3c6f .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#ac0aaa5344a3c6f .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#ac0aaa5344a3c6f .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a4dc8ae823acd65 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5413a4c74a2493 .ele-slideshow .uk-slidenav {
  background-color: rgba(117, 117, 117, 0.84);
}
#afe05a9f20a33f1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2838a8cfdab39f .uk-grid {
  margin-left: -50px;
}
#a2838a8cfdab39f .uk-grid > * {
  padding-left: 50px;
}
#a2838a8cfdab39f .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a2838a8cfdab39f .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a2838a8cfdab39f .uk-position-center-left-out {
    left: -30px;
  }
  #a2838a8cfdab39f .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a1666af43ca2c82 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af74ba6eeda2d8e .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;
                background-image: linear-gradient(0deg,
                rgba(255, 88, 0, 1),
                rgba(253, 127, 2, 1));
            border-radius: 0px;justify-content: center;border-style: solid;}#af74ba6eeda2d8e .ele-wrap:hover {background-color: #0483cc;}#afa9ca3bbdaa9c6 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#afa9ca3bbdaa9c6 .ele-wrap:hover {background-color: #0483cc;}#aa2f5ad1e0ab75e .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#aa2f5ad1e0ab75e .ele-wrap:hover {background-color: #0483cc;}#a23c9ad00aa6342 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#a23c9ad00aa6342 .ele-wrap:hover {background-color: #0483cc;}#a5d23aec07a8105 {
  overflow: hidden;
  pointer-events: none;
}
#a5d23aec07a8105 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a5d23aec07a8105 > .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;
}
#a5d23aec07a8105 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a5d23aec07a8105 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a5d23aec07a8105 > .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;
}
#a5d23aec07a8105 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a5d23aec07a8105 > .tab-wrap > div > .tab-nav,
#a5d23aec07a8105 > .tab-nav,
#a5d23aec07a8105 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a5d23aec07a8105 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  background-color: #ffffff;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#a5d23aec07a8105 > .tab-wrap > div > .tab-nav-horizontal,
#a5d23aec07a8105 > .tab-nav-horizontal,
#a5d23aec07a8105 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a5d23aec07a8105 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a5d23aec07a8105 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a5d23aec07a8105 > .tab-nav-horizontal::-webkit-scrollbar,
#a5d23aec07a8105 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a5d23aec07a8105 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a5d23aec07a8105 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a5d23aec07a8105 > .tab-nav-horizontal.tagScroll,
#a5d23aec07a8105 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a5d23aec07a8105 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 61px;
  overflow-x: auto;
}
#a5d23aec07a8105 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a5d23aec07a8105 > .tab-nav-horizontal.tagScroll li a,
#a5d23aec07a8105 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a5d23aec07a8105 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a5d23aec07a8105 > .tab-wrap > div > .tab-nav a,
#a5d23aec07a8105 > .tab-nav a,
#a5d23aec07a8105 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a5d23aec07a8105 > .tab-tabs > .tab-nav a {
  padding: 0 24px;
}
#a5d23aec07a8105 > .tab-wrap > div > .tab-nav li a,
#a5d23aec07a8105 > .tab-nav li a,
#a5d23aec07a8105 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a5d23aec07a8105 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 61px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  border-right-style: solid;
  margin-right: 7px;
  margin-left: 7px;
  border-right-width: 1px;
  border-right-color: #ababab;
  border-left-color: #d2d2d2;
  border-bottom-color: #d2d2d2;
  border-top-color: #d2d2d2;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
  padding: 0 24px;
}
#a5d23aec07a8105 > .tab-wrap > div > .tab-nav li a svg,
#a5d23aec07a8105 > .tab-nav li a svg,
#a5d23aec07a8105 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a5d23aec07a8105 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a5d23aec07a8105 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a5d23aec07a8105 > .tab-nav li a .ap_icon,
#a5d23aec07a8105 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a5d23aec07a8105 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a5d23aec07a8105 > .tab-wrap > div > .tab-nav li a:hover,
#a5d23aec07a8105 > .tab-nav li a:hover,
#a5d23aec07a8105 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a5d23aec07a8105 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff6a02;
  border-bottom-width: 2px;
  border-bottom-color: #ff6a02;
  border-bottom-style: solid;
}
#a5d23aec07a8105 > .tab-wrap > div > .tab-nav li.uk-active a,
#a5d23aec07a8105 > .tab-nav li.uk-active a,
#a5d23aec07a8105 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a5d23aec07a8105 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 2px;
  border-bottom-color: #9b9b9b;
  border-bottom-style: solid;
  background-color: #fb5800;
}
#a5d23aec07a8105 .layout-left li,
#a5d23aec07a8105 .layout-center li,
#a5d23aec07a8105 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a5d23aec07a8105 .layout-left li a,
#a5d23aec07a8105 .layout-center li a,
#a5d23aec07a8105 .layout-right li a {
  height: 100%;
}
#a5d23aec07a8105 > .tab-tabs .layout-left {
  text-align: left;
}
#a5d23aec07a8105 > .tab-tabs .layout-center {
  text-align: center;
}
#a5d23aec07a8105 > .tab-tabs .layout-right {
  text-align: right;
}
#a5d23aec07a8105 .tab-contents {
  height: 100%;
  height: calc(100% - 61px);
}
#a5d23aec07a8105 .tab-content-wrap {
  background-color: #ffffff;
}
#a5d23aec07a8105 .tab-contents,
#a5d23aec07a8105 .tab-contents-wrap {
  pointer-events: none;
}
#a5d23aec07a8105 .tab-content,
#a5d23aec07a8105 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a5d23aec07a8105 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a5d23aec07a8105 .tab-wrap .tab-contents {
  height: 100%;
}
#a5d23aec07a8105 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a5d23aec07a8105 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a5d23aec07a8105 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#acbc4a137fa0364 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2841a27afae513 .uk-grid {
  margin-left: -15px;
}
#a2841a27afae513 .uk-grid > * {
  padding-left: 15px;
}
#a2841a27afae513 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a2841a27afae513 .ap-category-filter ul li.active {
  border-color: #ee895d;
  color: #ee895d;
}
#a2841a27afae513 .article {
  background-color: #fff;
  border-bottom: 1px solid #4d4d4e;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  background-color: #ffffff;
  border-bottom-style: dashed;
}
#a2841a27afae513 .article .info {
  padding: 6px 10px;
  position: relative;
}
#a2841a27afae513 .article .info p {
  margin: 10px 0 10px;
}
#a2841a27afae513 .article svg {
  fill: currentColor;
}
#a2841a27afae513 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#a2841a27afae513 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#a2841a27afae513 .article.list-icon .info {
  padding-left: 25px;
}
#a2841a27afae513 .article .datetime {
  position: absolute;
  right: 10px;
  top: 6px;
}
#a2841a27afae513 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: left;
  font-family: inherit;
  color: #000000;
}
#a2841a27afae513 .article .abstract {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  color: #626161;
}
#a2841a27afae513 .article:hover {
  background-color: #ff5800;
  border-top: 1px solid auto;
}
#a2841a27afae513 .article:hover .title {
  color: #ffffff;
}
#a2841a27afae513 .article:hover .datetime {
  color: #b6b6b6;
}
#a2841a27afae513 .article:hover .category {
  color: #b6b6b6;
}
#a2841a27afae513 .article:hover .abstract {
  color: #ffffff;
}
#a2841a27afae513 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a2841a27afae513 .article:hover .list_icon {
  color: #ff5800;
}
#af216a8efbaee59 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a89c7a3dc9a1d21 .ab0baa53c7adf4d .img-wrap {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #c3c3c3;
  border-left-color: #c3c3c3;
  border-bottom-color: #c3c3c3;
  border-top-color: #c3c3c3;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#a89c7a3dc9a1d21 .uk-grid {
  margin-left: 0px;
}
#a89c7a3dc9a1d21 .uk-grid > * {
  padding-left: 0px;
}
#a89c7a3dc9a1d21 .uk-grid > .uk-grid-margin {
  margin-top: 10px;
}
#a89c7a3dc9a1d21 .dynamic-list-item {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a89c7a3dc9a1d21 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a89c7a3dc9a1d21 .uk-position-center-left-out {
    left: -30px;
  }
  #a89c7a3dc9a1d21 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac09aa7b8caf466 {background-color: rgba(0,0,0,0.7);}#ac09aa7b8caf466 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#a6293a8cd1ab55d .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a0f7ea3abbaca98 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;background-color: rgba(250, 250, 250, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a0f7ea3abbaca98 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#aa281a3a15a0e9b .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#aa281a3a15a0e9b .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a6bfcae611aaedc .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a6bfcae611aaedc .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#adaeda6524af002 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#adaeda6524af002 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a8d83a32bda03a4 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a8d83a32bda03a4 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a775da19baab3b6 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a775da19baab3b6 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a4531a7e94a3ccf .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a4531a7e94a3ccf .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#aa0a8a423fa4e60 .ad77cab7a2ae465 {
  overflow: hidden;
}
#aa0a8a423fa4e60 .ad77cab7a2ae465 , #aa0a8a423fa4e60 .ad77cab7a2ae465 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;text-align: center;font-family: inherit;color: rgba(0, 0, 0, 1);}#aa0a8a423fa4e60 .a98bea8f95a21ff .img-wrap {
  border-top-width: 1px;
  border-top-color: #cccccc;
  border-top-style: solid;
  border-right-color: #cccccc;
  border-left-color: #cccccc;
  border-bottom-color: #cccccc;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#aa0a8a423fa4e60 .dynamic-list-item {
  background-color: #f4f4f4;
}
#aa0a8a423fa4e60 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #aa0a8a423fa4e60 .uk-position-center-left-out {
    left: -30px;
  }
  #aa0a8a423fa4e60 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac09aa7b8caf466 {background-color: rgba(0,0,0,0.7);}#ac09aa7b8caf466 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#af055a5be8af481 {background-color: rgba(0,0,0,0.7);}#af055a5be8af481 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#ac3d0a2df3afcc3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a81d3a8a3ba6c97 {
  overflow: hidden;
  pointer-events: none;
}
#a81d3a8a3ba6c97 > .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;
}
#a81d3a8a3ba6c97 > .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;
}
#a81d3a8a3ba6c97 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a81d3a8a3ba6c97 > .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;
}
#a81d3a8a3ba6c97 > .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;
}
#a81d3a8a3ba6c97 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a81d3a8a3ba6c97 > .tab-wrap > div > .tab-nav,
#a81d3a8a3ba6c97 > .tab-nav,
#a81d3a8a3ba6c97 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a81d3a8a3ba6c97 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-bottom-width: 0;
  border-bottom-style: none;
  border-right-width: 0;
  border-left-width: 0;
  border-top-width: 0;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a81d3a8a3ba6c97 > .tab-wrap > div > .tab-nav-horizontal,
#a81d3a8a3ba6c97 > .tab-nav-horizontal,
#a81d3a8a3ba6c97 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a81d3a8a3ba6c97 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a81d3a8a3ba6c97 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a81d3a8a3ba6c97 > .tab-nav-horizontal::-webkit-scrollbar,
#a81d3a8a3ba6c97 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a81d3a8a3ba6c97 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a81d3a8a3ba6c97 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a81d3a8a3ba6c97 > .tab-nav-horizontal.tagScroll,
#a81d3a8a3ba6c97 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a81d3a8a3ba6c97 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 50px;
  overflow-x: auto;
}
#a81d3a8a3ba6c97 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a81d3a8a3ba6c97 > .tab-nav-horizontal.tagScroll li a,
#a81d3a8a3ba6c97 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a81d3a8a3ba6c97 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a81d3a8a3ba6c97 > .tab-wrap > div > .tab-nav a,
#a81d3a8a3ba6c97 > .tab-nav a,
#a81d3a8a3ba6c97 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a81d3a8a3ba6c97 > .tab-tabs > .tab-nav a {
  padding: 0 68px;
}
#a81d3a8a3ba6c97 > .tab-wrap > div > .tab-nav li a,
#a81d3a8a3ba6c97 > .tab-nav li a,
#a81d3a8a3ba6c97 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a81d3a8a3ba6c97 > .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: #000000;
  border-right-style: none;
  margin-right: 10px;
  margin-left: 0;
  background-color: #ededed;
  padding: 0 68px;
}
#a81d3a8a3ba6c97 > .tab-wrap > div > .tab-nav li a svg,
#a81d3a8a3ba6c97 > .tab-nav li a svg,
#a81d3a8a3ba6c97 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a81d3a8a3ba6c97 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a81d3a8a3ba6c97 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a81d3a8a3ba6c97 > .tab-nav li a .ap_icon,
#a81d3a8a3ba6c97 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a81d3a8a3ba6c97 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a81d3a8a3ba6c97 > .tab-wrap > div > .tab-nav li a:hover,
#a81d3a8a3ba6c97 > .tab-nav li a:hover,
#a81d3a8a3ba6c97 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a81d3a8a3ba6c97 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 2px;
  border-bottom-color: #ff6b00;
  border-bottom-style: solid;
}
#a81d3a8a3ba6c97 > .tab-wrap > div > .tab-nav li.uk-active a,
#a81d3a8a3ba6c97 > .tab-nav li.uk-active a,
#a81d3a8a3ba6c97 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a81d3a8a3ba6c97 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 0;
  border-bottom-style: none;
  background-color: #ff6b00;
}
#a81d3a8a3ba6c97 > .tab-wrap > div > .tab-nav li:last-child a,
#a81d3a8a3ba6c97 > .tab-nav li:last-child a,
#a81d3a8a3ba6c97 > .tab-tabs > .tab-wrap > div > .tab-nav li:last-child a,
#a81d3a8a3ba6c97 > .tab-tabs > .tab-nav li:last-child a {
  border-right: undefined;
}
#a81d3a8a3ba6c97 .layout-left li,
#a81d3a8a3ba6c97 .layout-center li,
#a81d3a8a3ba6c97 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a81d3a8a3ba6c97 .layout-left li a,
#a81d3a8a3ba6c97 .layout-center li a,
#a81d3a8a3ba6c97 .layout-right li a {
  height: 100%;
}
#a81d3a8a3ba6c97 > .tab-tabs .layout-left {
  text-align: left;
}
#a81d3a8a3ba6c97 > .tab-tabs .layout-center {
  text-align: center;
}
#a81d3a8a3ba6c97 > .tab-tabs .layout-right {
  text-align: right;
}
#a81d3a8a3ba6c97 .tab-contents {
  height: 100%;
  height: calc(100% - 50px);
}
#a81d3a8a3ba6c97 .tab-content-wrap {
  background-color: #ffffff;
}
#a81d3a8a3ba6c97 .tab-contents,
#a81d3a8a3ba6c97 .tab-contents-wrap {
  pointer-events: none;
}
#a81d3a8a3ba6c97 .tab-content,
#a81d3a8a3ba6c97 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a81d3a8a3ba6c97 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a81d3a8a3ba6c97 .tab-wrap .tab-contents {
  height: 100%;
}
#a81d3a8a3ba6c97 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a81d3a8a3ba6c97 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a81d3a8a3ba6c97 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#a907bad48ba4d81 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#a0cf5aef8fa9a1a .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a713aada63a8a51 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a5878aced1a1151 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a03afaf20daed2f .ele-slideshow .uk-slidenav {
  background-color: rgba(75, 75, 75, 0.71);
}
#a03afaf20daed2f .ele-slideshow .uk-slidenav {
  color: rgba(255, 255, 255, 0.76);
}
#af36fa0a77a9fe3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#af36fa0a77a9fe3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab6a4a0ceba2645 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#ab6a4a0ceba2645 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);}#add06ae49ba4714 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#add06ae49ba4714 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);}#a158ba18a1a3a99 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a158ba18a1a3a99 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);}#a4edfaa54fa4d12 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a4edfaa54fa4d12 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);}#ab4c7a89a2abb7d .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#ab4c7a89a2abb7d .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);}#ab7c6a0ce5ae9c3 {
  overflow: hidden;
  pointer-events: none;
  border-right-style: solid;
  border-left-style: solid;
}
#ab7c6a0ce5ae9c3 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#ab7c6a0ce5ae9c3 > .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;
}
#ab7c6a0ce5ae9c3 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ab7c6a0ce5ae9c3 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#ab7c6a0ce5ae9c3 > .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;
}
#ab7c6a0ce5ae9c3 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ab7c6a0ce5ae9c3 > .tab-wrap > div > .tab-nav,
#ab7c6a0ce5ae9c3 > .tab-nav,
#ab7c6a0ce5ae9c3 > .tab-tabs > .tab-wrap > div > .tab-nav,
#ab7c6a0ce5ae9c3 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
}
#ab7c6a0ce5ae9c3 > .tab-wrap > div > .tab-nav-horizontal,
#ab7c6a0ce5ae9c3 > .tab-nav-horizontal,
#ab7c6a0ce5ae9c3 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#ab7c6a0ce5ae9c3 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#ab7c6a0ce5ae9c3 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ab7c6a0ce5ae9c3 > .tab-nav-horizontal::-webkit-scrollbar,
#ab7c6a0ce5ae9c3 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ab7c6a0ce5ae9c3 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#ab7c6a0ce5ae9c3 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ab7c6a0ce5ae9c3 > .tab-nav-horizontal.tagScroll,
#ab7c6a0ce5ae9c3 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ab7c6a0ce5ae9c3 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 46px;
  overflow-x: auto;
}
#ab7c6a0ce5ae9c3 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ab7c6a0ce5ae9c3 > .tab-nav-horizontal.tagScroll li a,
#ab7c6a0ce5ae9c3 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ab7c6a0ce5ae9c3 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#ab7c6a0ce5ae9c3 > .tab-wrap > div > .tab-nav a,
#ab7c6a0ce5ae9c3 > .tab-nav a,
#ab7c6a0ce5ae9c3 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#ab7c6a0ce5ae9c3 > .tab-tabs > .tab-nav a {
  padding: 0 156px;
}
#ab7c6a0ce5ae9c3 > .tab-wrap > div > .tab-nav li a,
#ab7c6a0ce5ae9c3 > .tab-nav li a,
#ab7c6a0ce5ae9c3 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#ab7c6a0ce5ae9c3 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 45px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 46px;
  font-weight: normal;
  font-style: normal;
  font-size: 26px;
  font-family: inherit;
  color: #000000;
  background-color: #ffffff;
  margin-top: 7px;
  border-bottom-width: 2px;
  border-bottom-color: #50e3c2;
  border-bottom-style: solid;
  margin-left: 70px;
  border-left-width: 0;
  border-left-style: solid;
  padding: 0 156px;
}
#ab7c6a0ce5ae9c3 > .tab-wrap > div > .tab-nav li a svg,
#ab7c6a0ce5ae9c3 > .tab-nav li a svg,
#ab7c6a0ce5ae9c3 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#ab7c6a0ce5ae9c3 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#ab7c6a0ce5ae9c3 > .tab-wrap > div > .tab-nav li a .ap_icon,
#ab7c6a0ce5ae9c3 > .tab-nav li a .ap_icon,
#ab7c6a0ce5ae9c3 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#ab7c6a0ce5ae9c3 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#ab7c6a0ce5ae9c3 > .tab-wrap > div > .tab-nav li a:hover,
#ab7c6a0ce5ae9c3 > .tab-nav li a:hover,
#ab7c6a0ce5ae9c3 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#ab7c6a0ce5ae9c3 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ea3e00;
}
#ab7c6a0ce5ae9c3 > .tab-wrap > div > .tab-nav li.uk-active a,
#ab7c6a0ce5ae9c3 > .tab-nav li.uk-active a,
#ab7c6a0ce5ae9c3 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#ab7c6a0ce5ae9c3 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #010101;
  border-bottom-width: 2px;
  border-bottom-color: #ff3d00;
}
#ab7c6a0ce5ae9c3 .layout-left li,
#ab7c6a0ce5ae9c3 .layout-center li,
#ab7c6a0ce5ae9c3 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#ab7c6a0ce5ae9c3 .layout-left li a,
#ab7c6a0ce5ae9c3 .layout-center li a,
#ab7c6a0ce5ae9c3 .layout-right li a {
  height: 100%;
}
#ab7c6a0ce5ae9c3 > .tab-tabs .layout-left {
  text-align: left;
}
#ab7c6a0ce5ae9c3 > .tab-tabs .layout-center {
  text-align: center;
}
#ab7c6a0ce5ae9c3 > .tab-tabs .layout-right {
  text-align: right;
}
#ab7c6a0ce5ae9c3 .tab-contents {
  height: 100%;
  height: calc(100% - 46px);
}
#ab7c6a0ce5ae9c3 .tab-content-wrap {
  background-color: #f9f5f5;
  border-right-style: solid;
}
#ab7c6a0ce5ae9c3 .tab-contents,
#ab7c6a0ce5ae9c3 .tab-contents-wrap {
  pointer-events: none;
}
#ab7c6a0ce5ae9c3 .tab-content,
#ab7c6a0ce5ae9c3 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#ab7c6a0ce5ae9c3 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#ab7c6a0ce5ae9c3 .tab-wrap .tab-contents {
  height: 100%;
}
#ab7c6a0ce5ae9c3 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#ab7c6a0ce5ae9c3 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#ab7c6a0ce5ae9c3 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a6c64aacaea1de0 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aeb1da5e38a8bbe .ele-slideshow .uk-slidenav {
  background-color: rgba(117, 117, 117, 0.84);
}
#a157aaea63aa71d > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#adfffa47cbab706 .uk-grid {
  margin-left: -50px;
}
#adfffa47cbab706 .uk-grid > * {
  padding-left: 50px;
}
#adfffa47cbab706 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#adfffa47cbab706 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #adfffa47cbab706 .uk-position-center-left-out {
    left: -30px;
  }
  #adfffa47cbab706 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#af7c5a0232a1fe8 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae446aeccaaf8b7 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;
                background-image: linear-gradient(0deg,
                rgba(255, 88, 0, 1),
                rgba(253, 127, 2, 1));
            border-radius: 0px;justify-content: center;border-style: solid;}#ae446aeccaaf8b7 .ele-wrap:hover {background-color: #0483cc;}#afcbea2d35ac748 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#afcbea2d35ac748 .ele-wrap:hover {background-color: #0483cc;}#a99c3af7b4a1d23 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#a99c3af7b4a1d23 .ele-wrap:hover {background-color: #0483cc;}#a5ba4a982ba2857 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#a5ba4a982ba2857 .ele-wrap:hover {background-color: #0483cc;}#a557eaaed7ae134 {
  overflow: hidden;
  pointer-events: none;
}
#a557eaaed7ae134 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a557eaaed7ae134 > .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;
}
#a557eaaed7ae134 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a557eaaed7ae134 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a557eaaed7ae134 > .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;
}
#a557eaaed7ae134 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a557eaaed7ae134 > .tab-wrap > div > .tab-nav,
#a557eaaed7ae134 > .tab-nav,
#a557eaaed7ae134 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a557eaaed7ae134 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  background-color: #ffffff;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#a557eaaed7ae134 > .tab-wrap > div > .tab-nav-horizontal,
#a557eaaed7ae134 > .tab-nav-horizontal,
#a557eaaed7ae134 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a557eaaed7ae134 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a557eaaed7ae134 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a557eaaed7ae134 > .tab-nav-horizontal::-webkit-scrollbar,
#a557eaaed7ae134 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a557eaaed7ae134 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a557eaaed7ae134 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a557eaaed7ae134 > .tab-nav-horizontal.tagScroll,
#a557eaaed7ae134 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a557eaaed7ae134 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 61px;
  overflow-x: auto;
}
#a557eaaed7ae134 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a557eaaed7ae134 > .tab-nav-horizontal.tagScroll li a,
#a557eaaed7ae134 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a557eaaed7ae134 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a557eaaed7ae134 > .tab-wrap > div > .tab-nav a,
#a557eaaed7ae134 > .tab-nav a,
#a557eaaed7ae134 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a557eaaed7ae134 > .tab-tabs > .tab-nav a {
  padding: 0 24px;
}
#a557eaaed7ae134 > .tab-wrap > div > .tab-nav li a,
#a557eaaed7ae134 > .tab-nav li a,
#a557eaaed7ae134 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a557eaaed7ae134 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 61px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  border-right-style: solid;
  margin-right: 7px;
  margin-left: 7px;
  border-right-width: 1px;
  border-right-color: #ababab;
  border-left-color: #d2d2d2;
  border-bottom-color: #d2d2d2;
  border-top-color: #d2d2d2;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
  padding: 0 24px;
}
#a557eaaed7ae134 > .tab-wrap > div > .tab-nav li a svg,
#a557eaaed7ae134 > .tab-nav li a svg,
#a557eaaed7ae134 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a557eaaed7ae134 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a557eaaed7ae134 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a557eaaed7ae134 > .tab-nav li a .ap_icon,
#a557eaaed7ae134 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a557eaaed7ae134 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a557eaaed7ae134 > .tab-wrap > div > .tab-nav li a:hover,
#a557eaaed7ae134 > .tab-nav li a:hover,
#a557eaaed7ae134 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a557eaaed7ae134 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff6a02;
  border-bottom-width: 2px;
  border-bottom-color: #ff6a02;
  border-bottom-style: solid;
}
#a557eaaed7ae134 > .tab-wrap > div > .tab-nav li.uk-active a,
#a557eaaed7ae134 > .tab-nav li.uk-active a,
#a557eaaed7ae134 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a557eaaed7ae134 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 2px;
  border-bottom-color: #9b9b9b;
  border-bottom-style: solid;
  background-color: #fb5800;
}
#a557eaaed7ae134 .layout-left li,
#a557eaaed7ae134 .layout-center li,
#a557eaaed7ae134 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a557eaaed7ae134 .layout-left li a,
#a557eaaed7ae134 .layout-center li a,
#a557eaaed7ae134 .layout-right li a {
  height: 100%;
}
#a557eaaed7ae134 > .tab-tabs .layout-left {
  text-align: left;
}
#a557eaaed7ae134 > .tab-tabs .layout-center {
  text-align: center;
}
#a557eaaed7ae134 > .tab-tabs .layout-right {
  text-align: right;
}
#a557eaaed7ae134 .tab-contents {
  height: 100%;
  height: calc(100% - 61px);
}
#a557eaaed7ae134 .tab-content-wrap {
  background-color: #ffffff;
}
#a557eaaed7ae134 .tab-contents,
#a557eaaed7ae134 .tab-contents-wrap {
  pointer-events: none;
}
#a557eaaed7ae134 .tab-content,
#a557eaaed7ae134 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a557eaaed7ae134 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a557eaaed7ae134 .tab-wrap .tab-contents {
  height: 100%;
}
#a557eaaed7ae134 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a557eaaed7ae134 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a557eaaed7ae134 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#afe5da11bda2fbb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9a85a0f75a2b93 .uk-grid {
  margin-left: -15px;
}
#a9a85a0f75a2b93 .uk-grid > * {
  padding-left: 15px;
}
#a9a85a0f75a2b93 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a9a85a0f75a2b93 .ap-category-filter ul li.active {
  border-color: #ee895d;
  color: #ee895d;
}
#a9a85a0f75a2b93 .article {
  background-color: #fff;
  border-bottom: 1px solid #4d4d4e;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  background-color: #ffffff;
  border-bottom-style: dashed;
}
#a9a85a0f75a2b93 .article .info {
  padding: 6px 10px;
  position: relative;
}
#a9a85a0f75a2b93 .article .info p {
  margin: 10px 0 10px;
}
#a9a85a0f75a2b93 .article svg {
  fill: currentColor;
}
#a9a85a0f75a2b93 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#a9a85a0f75a2b93 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#a9a85a0f75a2b93 .article.list-icon .info {
  padding-left: 25px;
}
#a9a85a0f75a2b93 .article .datetime {
  position: absolute;
  right: 10px;
  top: 6px;
}
#a9a85a0f75a2b93 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: left;
  font-family: inherit;
  color: #000000;
}
#a9a85a0f75a2b93 .article .abstract {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  color: #626161;
}
#a9a85a0f75a2b93 .article:hover {
  background-color: #ff5800;
  border-top: 1px solid auto;
}
#a9a85a0f75a2b93 .article:hover .title {
  color: #ffffff;
}
#a9a85a0f75a2b93 .article:hover .datetime {
  color: #b6b6b6;
}
#a9a85a0f75a2b93 .article:hover .category {
  color: #b6b6b6;
}
#a9a85a0f75a2b93 .article:hover .abstract {
  color: #ffffff;
}
#a9a85a0f75a2b93 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a9a85a0f75a2b93 .article:hover .list_icon {
  color: #ff5800;
}
#a59f3a05e3a7c47 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a131ba90f2a6a17 .a8d02a41a7ad859 .img-wrap {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #c3c3c3;
  border-left-color: #c3c3c3;
  border-bottom-color: #c3c3c3;
  border-top-color: #c3c3c3;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#a131ba90f2a6a17 .uk-grid {
  margin-left: 0px;
}
#a131ba90f2a6a17 .uk-grid > * {
  padding-left: 0px;
}
#a131ba90f2a6a17 .uk-grid > .uk-grid-margin {
  margin-top: 10px;
}
#a131ba90f2a6a17 .dynamic-list-item {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a131ba90f2a6a17 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a131ba90f2a6a17 .uk-position-center-left-out {
    left: -30px;
  }
  #a131ba90f2a6a17 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac09aa7b8caf466 {background-color: rgba(0,0,0,0.7);}#ac09aa7b8caf466 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#a4f11a5b0da4c9a .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a24f4ae76bacbc3 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;background-color: rgba(250, 250, 250, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a24f4ae76bacbc3 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a500cac435a6ea2 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a500cac435a6ea2 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#adf95a3f8da9f2c .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#adf95a3f8da9f2c .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a9f69a6e50a6156 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a9f69a6e50a6156 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#af1b3a2503aa5bb .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#af1b3a2503aa5bb .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a0a20ace50aa78c .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a0a20ace50aa78c .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#aa93dabe7faace0 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#aa93dabe7faace0 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a5cf9ad137a7eeb .a3984a3ca4a7f64 {
  overflow: hidden;
}
#a5cf9ad137a7eeb .a3984a3ca4a7f64 , #a5cf9ad137a7eeb .a3984a3ca4a7f64 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 18px;text-align: center;font-family: inherit;color: rgba(0, 0, 0, 1);}#a5cf9ad137a7eeb .a71fea3720a10d5 .img-wrap {
  border-right-width: 1px;
  border-right-color: #cccccc;
  border-right-style: solid;
  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-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#a5cf9ad137a7eeb .dynamic-list-item {
  background-color: #f4f4f4;
}
#a5cf9ad137a7eeb .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a5cf9ad137a7eeb .uk-position-center-left-out {
    left: -30px;
  }
  #a5cf9ad137a7eeb .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac09aa7b8caf466 {background-color: rgba(0,0,0,0.7);}#ac09aa7b8caf466 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#af055a5be8af481 {background-color: rgba(0,0,0,0.7);}#af055a5be8af481 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#ac3d0a2df3afcc3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a448cae31badf28 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a448cae31badf28 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a4f4ba0a23a676b .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a4f4ba0a23a676b .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a1328a3b09a4ec4 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a1328a3b09a4ec4 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a76c5ab63ba3203 .ele-wrap {color: #000000;font-size: 18px;font-weight: 500;border-radius: 0px;justify-content: center;border-style: solid;}#a76c5ab63ba3203 .ele-wrap:hover {background-color: #0483cc;color: #ffffff;background-color: rgba(255, 107, 0, 1);}#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ad7f5aeceba8713 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#acc9aa8d3bab5c3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aff01a516daf679 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a9106abec8ac913 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a0d59a2ea5a8ba4 .ele-slideshow .uk-slidenav {
  background-color: rgba(75, 75, 75, 0.71);
}
#a0d59a2ea5a8ba4 .ele-slideshow .uk-slidenav {
  color: rgba(255, 255, 255, 0.76);
}
#a1da4a1e1fa368e > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a1da4a1e1fa368e  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a5dc7a5b79addbe .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a5dc7a5b79addbe .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);}#a8130a296cad5c8 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a8130a296cad5c8 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);}#a22f9aebbea75c4 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a22f9aebbea75c4 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);}#a55eba5bd6a1942 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a55eba5bd6a1942 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);}#a3cbcafeb3aaf70 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a3cbcafeb3aaf70 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);}#aa2a1ab9d0a0ab4 {
  overflow: hidden;
  pointer-events: none;
  border-right-style: solid;
  border-left-style: solid;
}
#aa2a1ab9d0a0ab4 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#aa2a1ab9d0a0ab4 > .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;
}
#aa2a1ab9d0a0ab4 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#aa2a1ab9d0a0ab4 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#aa2a1ab9d0a0ab4 > .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;
}
#aa2a1ab9d0a0ab4 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#aa2a1ab9d0a0ab4 > .tab-wrap > div > .tab-nav,
#aa2a1ab9d0a0ab4 > .tab-nav,
#aa2a1ab9d0a0ab4 > .tab-tabs > .tab-wrap > div > .tab-nav,
#aa2a1ab9d0a0ab4 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
}
#aa2a1ab9d0a0ab4 > .tab-wrap > div > .tab-nav-horizontal,
#aa2a1ab9d0a0ab4 > .tab-nav-horizontal,
#aa2a1ab9d0a0ab4 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#aa2a1ab9d0a0ab4 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#aa2a1ab9d0a0ab4 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#aa2a1ab9d0a0ab4 > .tab-nav-horizontal::-webkit-scrollbar,
#aa2a1ab9d0a0ab4 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#aa2a1ab9d0a0ab4 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#aa2a1ab9d0a0ab4 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#aa2a1ab9d0a0ab4 > .tab-nav-horizontal.tagScroll,
#aa2a1ab9d0a0ab4 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#aa2a1ab9d0a0ab4 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 46px;
  overflow-x: auto;
}
#aa2a1ab9d0a0ab4 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#aa2a1ab9d0a0ab4 > .tab-nav-horizontal.tagScroll li a,
#aa2a1ab9d0a0ab4 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#aa2a1ab9d0a0ab4 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#aa2a1ab9d0a0ab4 > .tab-wrap > div > .tab-nav a,
#aa2a1ab9d0a0ab4 > .tab-nav a,
#aa2a1ab9d0a0ab4 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#aa2a1ab9d0a0ab4 > .tab-tabs > .tab-nav a {
  padding: 0 156px;
}
#aa2a1ab9d0a0ab4 > .tab-wrap > div > .tab-nav li a,
#aa2a1ab9d0a0ab4 > .tab-nav li a,
#aa2a1ab9d0a0ab4 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#aa2a1ab9d0a0ab4 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 45px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 46px;
  font-weight: normal;
  font-style: normal;
  font-size: 26px;
  font-family: inherit;
  color: #000000;
  background-color: #ffffff;
  margin-top: 7px;
  border-bottom-width: 2px;
  border-bottom-color: #50e3c2;
  border-bottom-style: solid;
  margin-left: 70px;
  border-left-width: 0;
  border-left-style: solid;
  padding: 0 156px;
}
#aa2a1ab9d0a0ab4 > .tab-wrap > div > .tab-nav li a svg,
#aa2a1ab9d0a0ab4 > .tab-nav li a svg,
#aa2a1ab9d0a0ab4 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#aa2a1ab9d0a0ab4 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#aa2a1ab9d0a0ab4 > .tab-wrap > div > .tab-nav li a .ap_icon,
#aa2a1ab9d0a0ab4 > .tab-nav li a .ap_icon,
#aa2a1ab9d0a0ab4 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#aa2a1ab9d0a0ab4 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#aa2a1ab9d0a0ab4 > .tab-wrap > div > .tab-nav li a:hover,
#aa2a1ab9d0a0ab4 > .tab-nav li a:hover,
#aa2a1ab9d0a0ab4 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#aa2a1ab9d0a0ab4 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ea3e00;
}
#aa2a1ab9d0a0ab4 > .tab-wrap > div > .tab-nav li.uk-active a,
#aa2a1ab9d0a0ab4 > .tab-nav li.uk-active a,
#aa2a1ab9d0a0ab4 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#aa2a1ab9d0a0ab4 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #010101;
  border-bottom-width: 2px;
  border-bottom-color: #ff3d00;
}
#aa2a1ab9d0a0ab4 .layout-left li,
#aa2a1ab9d0a0ab4 .layout-center li,
#aa2a1ab9d0a0ab4 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#aa2a1ab9d0a0ab4 .layout-left li a,
#aa2a1ab9d0a0ab4 .layout-center li a,
#aa2a1ab9d0a0ab4 .layout-right li a {
  height: 100%;
}
#aa2a1ab9d0a0ab4 > .tab-tabs .layout-left {
  text-align: left;
}
#aa2a1ab9d0a0ab4 > .tab-tabs .layout-center {
  text-align: center;
}
#aa2a1ab9d0a0ab4 > .tab-tabs .layout-right {
  text-align: right;
}
#aa2a1ab9d0a0ab4 .tab-contents {
  height: 100%;
  height: calc(100% - 46px);
}
#aa2a1ab9d0a0ab4 .tab-content-wrap {
  background-color: #f9f5f5;
  border-right-style: solid;
}
#aa2a1ab9d0a0ab4 .tab-contents,
#aa2a1ab9d0a0ab4 .tab-contents-wrap {
  pointer-events: none;
}
#aa2a1ab9d0a0ab4 .tab-content,
#aa2a1ab9d0a0ab4 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#aa2a1ab9d0a0ab4 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#aa2a1ab9d0a0ab4 .tab-wrap .tab-contents {
  height: 100%;
}
#aa2a1ab9d0a0ab4 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#aa2a1ab9d0a0ab4 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#aa2a1ab9d0a0ab4 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a9c0aa901ba9b8a > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a73e9a60a9a0acc .ele-slideshow .uk-slidenav {
  background-color: rgba(117, 117, 117, 0.84);
}
#ae834ac5f4a78c3 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aff3daddf8a1a43 .uk-grid {
  margin-left: -50px;
}
#aff3daddf8a1a43 .uk-grid > * {
  padding-left: 50px;
}
#aff3daddf8a1a43 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#aff3daddf8a1a43 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #aff3daddf8a1a43 .uk-position-center-left-out {
    left: -30px;
  }
  #aff3daddf8a1a43 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#aaef3adc9aa8964 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a7d0ba5b8aadac5 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;
                background-image: linear-gradient(0deg,
                rgba(255, 88, 0, 1),
                rgba(253, 127, 2, 1));
            border-radius: 0px;justify-content: center;border-style: solid;}#a7d0ba5b8aadac5 .ele-wrap:hover {background-color: #0483cc;}#acff0a9a23a5133 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#acff0a9a23a5133 .ele-wrap:hover {background-color: #0483cc;}#aa9faae5fea9487 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#aa9faae5fea9487 .ele-wrap:hover {background-color: #0483cc;}#a5886a8a60a535f .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#a5886a8a60a535f .ele-wrap:hover {background-color: #0483cc;}#a80d8a9a1ca4424 {
  overflow: hidden;
  pointer-events: none;
}
#a80d8a9a1ca4424 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a80d8a9a1ca4424 > .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;
}
#a80d8a9a1ca4424 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a80d8a9a1ca4424 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a80d8a9a1ca4424 > .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;
}
#a80d8a9a1ca4424 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a80d8a9a1ca4424 > .tab-wrap > div > .tab-nav,
#a80d8a9a1ca4424 > .tab-nav,
#a80d8a9a1ca4424 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a80d8a9a1ca4424 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  background-color: #ffffff;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#a80d8a9a1ca4424 > .tab-wrap > div > .tab-nav-horizontal,
#a80d8a9a1ca4424 > .tab-nav-horizontal,
#a80d8a9a1ca4424 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a80d8a9a1ca4424 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a80d8a9a1ca4424 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a80d8a9a1ca4424 > .tab-nav-horizontal::-webkit-scrollbar,
#a80d8a9a1ca4424 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a80d8a9a1ca4424 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a80d8a9a1ca4424 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a80d8a9a1ca4424 > .tab-nav-horizontal.tagScroll,
#a80d8a9a1ca4424 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a80d8a9a1ca4424 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 61px;
  overflow-x: auto;
}
#a80d8a9a1ca4424 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a80d8a9a1ca4424 > .tab-nav-horizontal.tagScroll li a,
#a80d8a9a1ca4424 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a80d8a9a1ca4424 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a80d8a9a1ca4424 > .tab-wrap > div > .tab-nav a,
#a80d8a9a1ca4424 > .tab-nav a,
#a80d8a9a1ca4424 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a80d8a9a1ca4424 > .tab-tabs > .tab-nav a {
  padding: 0 24px;
}
#a80d8a9a1ca4424 > .tab-wrap > div > .tab-nav li a,
#a80d8a9a1ca4424 > .tab-nav li a,
#a80d8a9a1ca4424 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a80d8a9a1ca4424 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 61px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  border-right-style: solid;
  margin-right: 7px;
  margin-left: 7px;
  border-right-width: 1px;
  border-right-color: #ababab;
  border-left-color: #d2d2d2;
  border-bottom-color: #d2d2d2;
  border-top-color: #d2d2d2;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
  padding: 0 24px;
}
#a80d8a9a1ca4424 > .tab-wrap > div > .tab-nav li a svg,
#a80d8a9a1ca4424 > .tab-nav li a svg,
#a80d8a9a1ca4424 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a80d8a9a1ca4424 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a80d8a9a1ca4424 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a80d8a9a1ca4424 > .tab-nav li a .ap_icon,
#a80d8a9a1ca4424 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a80d8a9a1ca4424 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a80d8a9a1ca4424 > .tab-wrap > div > .tab-nav li a:hover,
#a80d8a9a1ca4424 > .tab-nav li a:hover,
#a80d8a9a1ca4424 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a80d8a9a1ca4424 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff6a02;
  border-bottom-width: 2px;
  border-bottom-color: #ff6a02;
  border-bottom-style: solid;
}
#a80d8a9a1ca4424 > .tab-wrap > div > .tab-nav li.uk-active a,
#a80d8a9a1ca4424 > .tab-nav li.uk-active a,
#a80d8a9a1ca4424 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a80d8a9a1ca4424 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 2px;
  border-bottom-color: #9b9b9b;
  border-bottom-style: solid;
  background-color: #fb5800;
}
#a80d8a9a1ca4424 .layout-left li,
#a80d8a9a1ca4424 .layout-center li,
#a80d8a9a1ca4424 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a80d8a9a1ca4424 .layout-left li a,
#a80d8a9a1ca4424 .layout-center li a,
#a80d8a9a1ca4424 .layout-right li a {
  height: 100%;
}
#a80d8a9a1ca4424 > .tab-tabs .layout-left {
  text-align: left;
}
#a80d8a9a1ca4424 > .tab-tabs .layout-center {
  text-align: center;
}
#a80d8a9a1ca4424 > .tab-tabs .layout-right {
  text-align: right;
}
#a80d8a9a1ca4424 .tab-contents {
  height: 100%;
  height: calc(100% - 61px);
}
#a80d8a9a1ca4424 .tab-content-wrap {
  background-color: #ffffff;
}
#a80d8a9a1ca4424 .tab-contents,
#a80d8a9a1ca4424 .tab-contents-wrap {
  pointer-events: none;
}
#a80d8a9a1ca4424 .tab-content,
#a80d8a9a1ca4424 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a80d8a9a1ca4424 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a80d8a9a1ca4424 .tab-wrap .tab-contents {
  height: 100%;
}
#a80d8a9a1ca4424 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a80d8a9a1ca4424 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a80d8a9a1ca4424 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a9962a2704a1375 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a084fa2031a70ff .uk-grid {
  margin-left: -15px;
}
#a084fa2031a70ff .uk-grid > * {
  padding-left: 15px;
}
#a084fa2031a70ff .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a084fa2031a70ff .ap-category-filter ul li.active {
  border-color: #ee895d;
  color: #ee895d;
}
#a084fa2031a70ff .article {
  background-color: #fff;
  border-bottom: 1px solid #4d4d4e;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  background-color: #ffffff;
  border-bottom-style: dashed;
}
#a084fa2031a70ff .article .info {
  padding: 6px 10px;
  position: relative;
}
#a084fa2031a70ff .article .info p {
  margin: 10px 0 10px;
}
#a084fa2031a70ff .article svg {
  fill: currentColor;
}
#a084fa2031a70ff .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#a084fa2031a70ff .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#a084fa2031a70ff .article.list-icon .info {
  padding-left: 25px;
}
#a084fa2031a70ff .article .datetime {
  position: absolute;
  right: 10px;
  top: 6px;
}
#a084fa2031a70ff .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: left;
  font-family: inherit;
  color: #000000;
}
#a084fa2031a70ff .article .abstract {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  color: #626161;
}
#a084fa2031a70ff .article:hover {
  background-color: #ff5800;
  border-top: 1px solid auto;
}
#a084fa2031a70ff .article:hover .title {
  color: #ffffff;
}
#a084fa2031a70ff .article:hover .datetime {
  color: #b6b6b6;
}
#a084fa2031a70ff .article:hover .category {
  color: #b6b6b6;
}
#a084fa2031a70ff .article:hover .abstract {
  color: #ffffff;
}
#a084fa2031a70ff .article:hover .btn_icon {
  color: #b6b6b6;
}
#a084fa2031a70ff .article:hover .list_icon {
  color: #ff5800;
}
#ad3deace46a3a5c > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a606baaf1aa3290 .ae16aae3d8a75ee .img-wrap {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #c3c3c3;
  border-left-color: #c3c3c3;
  border-bottom-color: #c3c3c3;
  border-top-color: #c3c3c3;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#a606baaf1aa3290 .uk-grid {
  margin-left: 0px;
}
#a606baaf1aa3290 .uk-grid > * {
  padding-left: 0px;
}
#a606baaf1aa3290 .uk-grid > .uk-grid-margin {
  margin-top: 10px;
}
#a606baaf1aa3290 .dynamic-list-item {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a606baaf1aa3290 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a606baaf1aa3290 .uk-position-center-left-out {
    left: -30px;
  }
  #a606baaf1aa3290 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac09aa7b8caf466 {background-color: rgba(0,0,0,0.7);}#ac09aa7b8caf466 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#a8b82afef4a32aa .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#af40fa8589a0c95 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-shadow: -2px 2px 2px 4px rgba(162, 162, 162, 0.07);}#a269ea2570a00c0 .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(255, 107, 0, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a269ea2570a00c0 .ele-wrap:hover {background-color: #0483cc;}#ad196a6181ae25a > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-shadow: -1px 3px 2px 4px rgba(162, 162, 162, 0.07);}#a36b5a1331ada94 .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(255, 107, 0, 1);border-radius: 0px;justify-content: center;border-style: solid;}#a36b5a1331ada94 .ele-wrap:hover {background-color: #0483cc;}#abb19ae27ba9ea4 .ele-wrap {color: #ffffff;font-size: 28px;font-weight: 400;background-color: rgba(79, 79, 79, 1);border-radius: 0px;justify-content: center;border-style: solid;font-family: FZHei-B01S;box-shadow: 0px 3px 3px 3px rgba(164, 164, 164, 1);}#abb19ae27ba9ea4 .ele-wrap:hover {background-color: #0483cc;}#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac3d0a2df3afcc3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ab7f7a1558aff4d .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ad38fac5baade3c .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a1e24a13bba0fc5 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a1b65aef73a4c2c .ele-slideshow .uk-slidenav {
  background-color: rgba(75, 75, 75, 0.71);
}
#a1b65aef73a4c2c .ele-slideshow .uk-slidenav {
  color: rgba(255, 255, 255, 0.76);
}
#acfe2a566ca4a38 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#acfe2a566ca4a38  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#af57ba3710aa15f .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#af57ba3710aa15f .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);}#ad372aff9dad9e1 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#ad372aff9dad9e1 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);}#a1e02a4634a3170 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a1e02a4634a3170 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);}#ad962a7e30a4c87 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#ad962a7e30a4c87 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);}#a95b5a44afaebe2 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a95b5a44afaebe2 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);}#a515fa033ba8096 {
  overflow: hidden;
  pointer-events: none;
  border-right-style: solid;
  border-left-style: solid;
}
#a515fa033ba8096 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a515fa033ba8096 > .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;
}
#a515fa033ba8096 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a515fa033ba8096 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a515fa033ba8096 > .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;
}
#a515fa033ba8096 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a515fa033ba8096 > .tab-wrap > div > .tab-nav,
#a515fa033ba8096 > .tab-nav,
#a515fa033ba8096 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a515fa033ba8096 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
}
#a515fa033ba8096 > .tab-wrap > div > .tab-nav-horizontal,
#a515fa033ba8096 > .tab-nav-horizontal,
#a515fa033ba8096 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a515fa033ba8096 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a515fa033ba8096 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a515fa033ba8096 > .tab-nav-horizontal::-webkit-scrollbar,
#a515fa033ba8096 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a515fa033ba8096 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a515fa033ba8096 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a515fa033ba8096 > .tab-nav-horizontal.tagScroll,
#a515fa033ba8096 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a515fa033ba8096 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 46px;
  overflow-x: auto;
}
#a515fa033ba8096 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a515fa033ba8096 > .tab-nav-horizontal.tagScroll li a,
#a515fa033ba8096 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a515fa033ba8096 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a515fa033ba8096 > .tab-wrap > div > .tab-nav a,
#a515fa033ba8096 > .tab-nav a,
#a515fa033ba8096 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a515fa033ba8096 > .tab-tabs > .tab-nav a {
  padding: 0 156px;
}
#a515fa033ba8096 > .tab-wrap > div > .tab-nav li a,
#a515fa033ba8096 > .tab-nav li a,
#a515fa033ba8096 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a515fa033ba8096 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 45px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 46px;
  font-weight: normal;
  font-style: normal;
  font-size: 26px;
  font-family: inherit;
  color: #000000;
  background-color: #ffffff;
  margin-top: 7px;
  border-bottom-width: 2px;
  border-bottom-color: #50e3c2;
  border-bottom-style: solid;
  margin-left: 70px;
  border-left-width: 0;
  border-left-style: solid;
  padding: 0 156px;
}
#a515fa033ba8096 > .tab-wrap > div > .tab-nav li a svg,
#a515fa033ba8096 > .tab-nav li a svg,
#a515fa033ba8096 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a515fa033ba8096 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a515fa033ba8096 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a515fa033ba8096 > .tab-nav li a .ap_icon,
#a515fa033ba8096 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a515fa033ba8096 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a515fa033ba8096 > .tab-wrap > div > .tab-nav li a:hover,
#a515fa033ba8096 > .tab-nav li a:hover,
#a515fa033ba8096 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a515fa033ba8096 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ea3e00;
}
#a515fa033ba8096 > .tab-wrap > div > .tab-nav li.uk-active a,
#a515fa033ba8096 > .tab-nav li.uk-active a,
#a515fa033ba8096 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a515fa033ba8096 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #010101;
  border-bottom-width: 2px;
  border-bottom-color: #ff3d00;
}
#a515fa033ba8096 .layout-left li,
#a515fa033ba8096 .layout-center li,
#a515fa033ba8096 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a515fa033ba8096 .layout-left li a,
#a515fa033ba8096 .layout-center li a,
#a515fa033ba8096 .layout-right li a {
  height: 100%;
}
#a515fa033ba8096 > .tab-tabs .layout-left {
  text-align: left;
}
#a515fa033ba8096 > .tab-tabs .layout-center {
  text-align: center;
}
#a515fa033ba8096 > .tab-tabs .layout-right {
  text-align: right;
}
#a515fa033ba8096 .tab-contents {
  height: 100%;
  height: calc(100% - 46px);
}
#a515fa033ba8096 .tab-content-wrap {
  background-color: #f9f5f5;
  border-right-style: solid;
}
#a515fa033ba8096 .tab-contents,
#a515fa033ba8096 .tab-contents-wrap {
  pointer-events: none;
}
#a515fa033ba8096 .tab-content,
#a515fa033ba8096 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a515fa033ba8096 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a515fa033ba8096 .tab-wrap .tab-contents {
  height: 100%;
}
#a515fa033ba8096 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a515fa033ba8096 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a515fa033ba8096 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a633aab970aebcd > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aea17a8572aca3d .ele-slideshow .uk-slidenav {
  background-color: rgba(117, 117, 117, 0.84);
}
#a3620af3d1a8243 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5c0dac411a0771 .uk-grid {
  margin-left: -50px;
}
#a5c0dac411a0771 .uk-grid > * {
  padding-left: 50px;
}
#a5c0dac411a0771 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a5c0dac411a0771 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a5c0dac411a0771 .uk-position-center-left-out {
    left: -30px;
  }
  #a5c0dac411a0771 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a0ce9a030ba1a41 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ab198aa346a450a .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;
                background-image: linear-gradient(0deg,
                rgba(255, 88, 0, 1),
                rgba(253, 127, 2, 1));
            border-radius: 0px;justify-content: center;border-style: solid;}#ab198aa346a450a .ele-wrap:hover {background-color: #0483cc;}#a05c2ad1f0ad5a0 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#a05c2ad1f0ad5a0 .ele-wrap:hover {background-color: #0483cc;}#a1683a3919a323b .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#a1683a3919a323b .ele-wrap:hover {background-color: #0483cc;}#a6335a390ba0b67 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#a6335a390ba0b67 .ele-wrap:hover {background-color: #0483cc;}#ab5f4a2347aa384 {
  overflow: hidden;
  pointer-events: none;
}
#ab5f4a2347aa384 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#ab5f4a2347aa384 > .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;
}
#ab5f4a2347aa384 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ab5f4a2347aa384 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#ab5f4a2347aa384 > .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;
}
#ab5f4a2347aa384 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ab5f4a2347aa384 > .tab-wrap > div > .tab-nav,
#ab5f4a2347aa384 > .tab-nav,
#ab5f4a2347aa384 > .tab-tabs > .tab-wrap > div > .tab-nav,
#ab5f4a2347aa384 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  background-color: #ffffff;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#ab5f4a2347aa384 > .tab-wrap > div > .tab-nav-horizontal,
#ab5f4a2347aa384 > .tab-nav-horizontal,
#ab5f4a2347aa384 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#ab5f4a2347aa384 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#ab5f4a2347aa384 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ab5f4a2347aa384 > .tab-nav-horizontal::-webkit-scrollbar,
#ab5f4a2347aa384 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ab5f4a2347aa384 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#ab5f4a2347aa384 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ab5f4a2347aa384 > .tab-nav-horizontal.tagScroll,
#ab5f4a2347aa384 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ab5f4a2347aa384 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 61px;
  overflow-x: auto;
}
#ab5f4a2347aa384 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ab5f4a2347aa384 > .tab-nav-horizontal.tagScroll li a,
#ab5f4a2347aa384 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ab5f4a2347aa384 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#ab5f4a2347aa384 > .tab-wrap > div > .tab-nav a,
#ab5f4a2347aa384 > .tab-nav a,
#ab5f4a2347aa384 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#ab5f4a2347aa384 > .tab-tabs > .tab-nav a {
  padding: 0 24px;
}
#ab5f4a2347aa384 > .tab-wrap > div > .tab-nav li a,
#ab5f4a2347aa384 > .tab-nav li a,
#ab5f4a2347aa384 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#ab5f4a2347aa384 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 61px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  border-right-style: solid;
  margin-right: 7px;
  margin-left: 7px;
  border-right-width: 1px;
  border-right-color: #ababab;
  border-left-color: #d2d2d2;
  border-bottom-color: #d2d2d2;
  border-top-color: #d2d2d2;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
  padding: 0 24px;
}
#ab5f4a2347aa384 > .tab-wrap > div > .tab-nav li a svg,
#ab5f4a2347aa384 > .tab-nav li a svg,
#ab5f4a2347aa384 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#ab5f4a2347aa384 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#ab5f4a2347aa384 > .tab-wrap > div > .tab-nav li a .ap_icon,
#ab5f4a2347aa384 > .tab-nav li a .ap_icon,
#ab5f4a2347aa384 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#ab5f4a2347aa384 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#ab5f4a2347aa384 > .tab-wrap > div > .tab-nav li a:hover,
#ab5f4a2347aa384 > .tab-nav li a:hover,
#ab5f4a2347aa384 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#ab5f4a2347aa384 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff6a02;
  border-bottom-width: 2px;
  border-bottom-color: #ff6a02;
  border-bottom-style: solid;
}
#ab5f4a2347aa384 > .tab-wrap > div > .tab-nav li.uk-active a,
#ab5f4a2347aa384 > .tab-nav li.uk-active a,
#ab5f4a2347aa384 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#ab5f4a2347aa384 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 2px;
  border-bottom-color: #9b9b9b;
  border-bottom-style: solid;
  background-color: #fb5800;
}
#ab5f4a2347aa384 .layout-left li,
#ab5f4a2347aa384 .layout-center li,
#ab5f4a2347aa384 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#ab5f4a2347aa384 .layout-left li a,
#ab5f4a2347aa384 .layout-center li a,
#ab5f4a2347aa384 .layout-right li a {
  height: 100%;
}
#ab5f4a2347aa384 > .tab-tabs .layout-left {
  text-align: left;
}
#ab5f4a2347aa384 > .tab-tabs .layout-center {
  text-align: center;
}
#ab5f4a2347aa384 > .tab-tabs .layout-right {
  text-align: right;
}
#ab5f4a2347aa384 .tab-contents {
  height: 100%;
  height: calc(100% - 61px);
}
#ab5f4a2347aa384 .tab-content-wrap {
  background-color: #ffffff;
}
#ab5f4a2347aa384 .tab-contents,
#ab5f4a2347aa384 .tab-contents-wrap {
  pointer-events: none;
}
#ab5f4a2347aa384 .tab-content,
#ab5f4a2347aa384 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#ab5f4a2347aa384 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#ab5f4a2347aa384 .tab-wrap .tab-contents {
  height: 100%;
}
#ab5f4a2347aa384 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#ab5f4a2347aa384 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#ab5f4a2347aa384 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a7930a28b8a8135 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a669da977bab9c7 .uk-grid {
  margin-left: -15px;
}
#a669da977bab9c7 .uk-grid > * {
  padding-left: 15px;
}
#a669da977bab9c7 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a669da977bab9c7 .ap-category-filter ul li.active {
  border-color: #ee895d;
  color: #ee895d;
}
#a669da977bab9c7 .article {
  background-color: #fff;
  border-bottom: 1px solid #4d4d4e;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  background-color: #ffffff;
  border-bottom-style: dashed;
}
#a669da977bab9c7 .article .info {
  padding: 6px 10px;
  position: relative;
}
#a669da977bab9c7 .article .info p {
  margin: 10px 0 10px;
}
#a669da977bab9c7 .article svg {
  fill: currentColor;
}
#a669da977bab9c7 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#a669da977bab9c7 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#a669da977bab9c7 .article.list-icon .info {
  padding-left: 25px;
}
#a669da977bab9c7 .article .datetime {
  position: absolute;
  right: 10px;
  top: 6px;
}
#a669da977bab9c7 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: left;
  font-family: inherit;
  color: #000000;
}
#a669da977bab9c7 .article .abstract {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  color: #626161;
}
#a669da977bab9c7 .article:hover {
  background-color: #ff5800;
  border-top: 1px solid auto;
}
#a669da977bab9c7 .article:hover .title {
  color: #ffffff;
}
#a669da977bab9c7 .article:hover .datetime {
  color: #b6b6b6;
}
#a669da977bab9c7 .article:hover .category {
  color: #b6b6b6;
}
#a669da977bab9c7 .article:hover .abstract {
  color: #ffffff;
}
#a669da977bab9c7 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a669da977bab9c7 .article:hover .list_icon {
  color: #ff5800;
}
#a14b5aa109a7397 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a85b5a7ac1ac367 .ae3c3a02ccadb25 .img-wrap {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #c3c3c3;
  border-left-color: #c3c3c3;
  border-bottom-color: #c3c3c3;
  border-top-color: #c3c3c3;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#a85b5a7ac1ac367 .uk-grid {
  margin-left: 0px;
}
#a85b5a7ac1ac367 .uk-grid > * {
  padding-left: 0px;
}
#a85b5a7ac1ac367 .uk-grid > .uk-grid-margin {
  margin-top: 10px;
}
#a85b5a7ac1ac367 .dynamic-list-item {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a85b5a7ac1ac367 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a85b5a7ac1ac367 .uk-position-center-left-out {
    left: -30px;
  }
  #a85b5a7ac1ac367 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac09aa7b8caf466 {background-color: rgba(0,0,0,0.7);}#ac09aa7b8caf466 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#ac3d0a2df3afcc3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#a7342adff6a0964 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4077ab0c2aae56 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a367ea5b3ea1487 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#af311a7292a73d0 .ele-slideshow .uk-slidenav {
  background-color: rgba(75, 75, 75, 0.71);
}
#af311a7292a73d0 .ele-slideshow .uk-slidenav {
  color: rgba(255, 255, 255, 0.76);
}
#a823ca4b56a8dc8 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a823ca4b56a8dc8  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ad992a9380ac62c .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#ad992a9380ac62c .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);}#a01aeab73dac055 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a01aeab73dac055 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);}#aab0caaf30ae17c .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#aab0caaf30ae17c .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);}#a5c41a77b4ad69c .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a5c41a77b4ad69c .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);}#a3eb8aebd9af23d .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a3eb8aebd9af23d .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);}#a3d62abeabaac2f {
  overflow: hidden;
  pointer-events: none;
  border-right-style: solid;
  border-left-style: solid;
}
#a3d62abeabaac2f > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a3d62abeabaac2f > .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;
}
#a3d62abeabaac2f > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a3d62abeabaac2f > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a3d62abeabaac2f > .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;
}
#a3d62abeabaac2f > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a3d62abeabaac2f > .tab-wrap > div > .tab-nav,
#a3d62abeabaac2f > .tab-nav,
#a3d62abeabaac2f > .tab-tabs > .tab-wrap > div > .tab-nav,
#a3d62abeabaac2f > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
}
#a3d62abeabaac2f > .tab-wrap > div > .tab-nav-horizontal,
#a3d62abeabaac2f > .tab-nav-horizontal,
#a3d62abeabaac2f > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a3d62abeabaac2f > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a3d62abeabaac2f > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a3d62abeabaac2f > .tab-nav-horizontal::-webkit-scrollbar,
#a3d62abeabaac2f > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a3d62abeabaac2f > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a3d62abeabaac2f > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a3d62abeabaac2f > .tab-nav-horizontal.tagScroll,
#a3d62abeabaac2f > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a3d62abeabaac2f > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 46px;
  overflow-x: auto;
}
#a3d62abeabaac2f > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a3d62abeabaac2f > .tab-nav-horizontal.tagScroll li a,
#a3d62abeabaac2f > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a3d62abeabaac2f > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a3d62abeabaac2f > .tab-wrap > div > .tab-nav a,
#a3d62abeabaac2f > .tab-nav a,
#a3d62abeabaac2f > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a3d62abeabaac2f > .tab-tabs > .tab-nav a {
  padding: 0 156px;
}
#a3d62abeabaac2f > .tab-wrap > div > .tab-nav li a,
#a3d62abeabaac2f > .tab-nav li a,
#a3d62abeabaac2f > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a3d62abeabaac2f > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 45px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 46px;
  font-weight: normal;
  font-style: normal;
  font-size: 26px;
  font-family: inherit;
  color: #000000;
  background-color: #ffffff;
  margin-top: 7px;
  border-bottom-width: 2px;
  border-bottom-color: #50e3c2;
  border-bottom-style: solid;
  margin-left: 70px;
  border-left-width: 0;
  border-left-style: solid;
  padding: 0 156px;
}
#a3d62abeabaac2f > .tab-wrap > div > .tab-nav li a svg,
#a3d62abeabaac2f > .tab-nav li a svg,
#a3d62abeabaac2f > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a3d62abeabaac2f > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a3d62abeabaac2f > .tab-wrap > div > .tab-nav li a .ap_icon,
#a3d62abeabaac2f > .tab-nav li a .ap_icon,
#a3d62abeabaac2f > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a3d62abeabaac2f > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a3d62abeabaac2f > .tab-wrap > div > .tab-nav li a:hover,
#a3d62abeabaac2f > .tab-nav li a:hover,
#a3d62abeabaac2f > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a3d62abeabaac2f > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ea3e00;
}
#a3d62abeabaac2f > .tab-wrap > div > .tab-nav li.uk-active a,
#a3d62abeabaac2f > .tab-nav li.uk-active a,
#a3d62abeabaac2f > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a3d62abeabaac2f > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #010101;
  border-bottom-width: 2px;
  border-bottom-color: #ff3d00;
}
#a3d62abeabaac2f .layout-left li,
#a3d62abeabaac2f .layout-center li,
#a3d62abeabaac2f .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a3d62abeabaac2f .layout-left li a,
#a3d62abeabaac2f .layout-center li a,
#a3d62abeabaac2f .layout-right li a {
  height: 100%;
}
#a3d62abeabaac2f > .tab-tabs .layout-left {
  text-align: left;
}
#a3d62abeabaac2f > .tab-tabs .layout-center {
  text-align: center;
}
#a3d62abeabaac2f > .tab-tabs .layout-right {
  text-align: right;
}
#a3d62abeabaac2f .tab-contents {
  height: 100%;
  height: calc(100% - 46px);
}
#a3d62abeabaac2f .tab-content-wrap {
  background-color: #f9f5f5;
  border-right-style: solid;
}
#a3d62abeabaac2f .tab-contents,
#a3d62abeabaac2f .tab-contents-wrap {
  pointer-events: none;
}
#a3d62abeabaac2f .tab-content,
#a3d62abeabaac2f .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a3d62abeabaac2f .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a3d62abeabaac2f .tab-wrap .tab-contents {
  height: 100%;
}
#a3d62abeabaac2f .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a3d62abeabaac2f .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a3d62abeabaac2f .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#aac17a62e7a9c47 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8e7bae8b7ab1af .ele-slideshow .uk-slidenav {
  background-color: rgba(117, 117, 117, 0.84);
}
#ad750a736ea11fa > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ae46eac57fa4a3f .uk-grid {
  margin-left: -50px;
}
#ae46eac57fa4a3f .uk-grid > * {
  padding-left: 50px;
}
#ae46eac57fa4a3f .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#ae46eac57fa4a3f .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #ae46eac57fa4a3f .uk-position-center-left-out {
    left: -30px;
  }
  #ae46eac57fa4a3f .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a3602acd2fa516f > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9509a9283a21d4 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;
                background-image: linear-gradient(0deg,
                rgba(255, 88, 0, 1),
                rgba(253, 127, 2, 1));
            border-radius: 0px;justify-content: center;border-style: solid;}#a9509a9283a21d4 .ele-wrap:hover {background-color: #0483cc;}#a99e1aa7aea23aa .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#a99e1aa7aea23aa .ele-wrap:hover {background-color: #0483cc;}#ab370a81e9a31fb .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#ab370a81e9a31fb .ele-wrap:hover {background-color: #0483cc;}#aeabbaf9d8af65e .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#aeabbaf9d8af65e .ele-wrap:hover {background-color: #0483cc;}#afecfad59da72aa {
  overflow: hidden;
  pointer-events: none;
}
#afecfad59da72aa > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#afecfad59da72aa > .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;
}
#afecfad59da72aa > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#afecfad59da72aa > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#afecfad59da72aa > .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;
}
#afecfad59da72aa > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#afecfad59da72aa > .tab-wrap > div > .tab-nav,
#afecfad59da72aa > .tab-nav,
#afecfad59da72aa > .tab-tabs > .tab-wrap > div > .tab-nav,
#afecfad59da72aa > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  background-color: #ffffff;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#afecfad59da72aa > .tab-wrap > div > .tab-nav-horizontal,
#afecfad59da72aa > .tab-nav-horizontal,
#afecfad59da72aa > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#afecfad59da72aa > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#afecfad59da72aa > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#afecfad59da72aa > .tab-nav-horizontal::-webkit-scrollbar,
#afecfad59da72aa > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#afecfad59da72aa > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#afecfad59da72aa > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#afecfad59da72aa > .tab-nav-horizontal.tagScroll,
#afecfad59da72aa > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#afecfad59da72aa > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 61px;
  overflow-x: auto;
}
#afecfad59da72aa > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#afecfad59da72aa > .tab-nav-horizontal.tagScroll li a,
#afecfad59da72aa > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#afecfad59da72aa > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#afecfad59da72aa > .tab-wrap > div > .tab-nav a,
#afecfad59da72aa > .tab-nav a,
#afecfad59da72aa > .tab-tabs > .tab-wrap > div > .tab-nav a,
#afecfad59da72aa > .tab-tabs > .tab-nav a {
  padding: 0 24px;
}
#afecfad59da72aa > .tab-wrap > div > .tab-nav li a,
#afecfad59da72aa > .tab-nav li a,
#afecfad59da72aa > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#afecfad59da72aa > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 61px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  border-right-style: solid;
  margin-right: 7px;
  margin-left: 7px;
  border-right-width: 1px;
  border-right-color: #ababab;
  border-left-color: #d2d2d2;
  border-bottom-color: #d2d2d2;
  border-top-color: #d2d2d2;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
  padding: 0 24px;
}
#afecfad59da72aa > .tab-wrap > div > .tab-nav li a svg,
#afecfad59da72aa > .tab-nav li a svg,
#afecfad59da72aa > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#afecfad59da72aa > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#afecfad59da72aa > .tab-wrap > div > .tab-nav li a .ap_icon,
#afecfad59da72aa > .tab-nav li a .ap_icon,
#afecfad59da72aa > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#afecfad59da72aa > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#afecfad59da72aa > .tab-wrap > div > .tab-nav li a:hover,
#afecfad59da72aa > .tab-nav li a:hover,
#afecfad59da72aa > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#afecfad59da72aa > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff6a02;
  border-bottom-width: 2px;
  border-bottom-color: #ff6a02;
  border-bottom-style: solid;
}
#afecfad59da72aa > .tab-wrap > div > .tab-nav li.uk-active a,
#afecfad59da72aa > .tab-nav li.uk-active a,
#afecfad59da72aa > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#afecfad59da72aa > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 2px;
  border-bottom-color: #9b9b9b;
  border-bottom-style: solid;
  background-color: #fb5800;
}
#afecfad59da72aa .layout-left li,
#afecfad59da72aa .layout-center li,
#afecfad59da72aa .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#afecfad59da72aa .layout-left li a,
#afecfad59da72aa .layout-center li a,
#afecfad59da72aa .layout-right li a {
  height: 100%;
}
#afecfad59da72aa > .tab-tabs .layout-left {
  text-align: left;
}
#afecfad59da72aa > .tab-tabs .layout-center {
  text-align: center;
}
#afecfad59da72aa > .tab-tabs .layout-right {
  text-align: right;
}
#afecfad59da72aa .tab-contents {
  height: 100%;
  height: calc(100% - 61px);
}
#afecfad59da72aa .tab-content-wrap {
  background-color: #ffffff;
}
#afecfad59da72aa .tab-contents,
#afecfad59da72aa .tab-contents-wrap {
  pointer-events: none;
}
#afecfad59da72aa .tab-content,
#afecfad59da72aa .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#afecfad59da72aa .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#afecfad59da72aa .tab-wrap .tab-contents {
  height: 100%;
}
#afecfad59da72aa .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#afecfad59da72aa .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#afecfad59da72aa .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a4772aa52ea0b0a > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0f95ad3e7abfd1 .uk-grid {
  margin-left: -15px;
}
#a0f95ad3e7abfd1 .uk-grid > * {
  padding-left: 15px;
}
#a0f95ad3e7abfd1 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a0f95ad3e7abfd1 .ap-category-filter ul li.active {
  border-color: #ee895d;
  color: #ee895d;
}
#a0f95ad3e7abfd1 .article {
  background-color: #fff;
  border-bottom: 1px solid #4d4d4e;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  background-color: #ffffff;
  border-bottom-style: dashed;
}
#a0f95ad3e7abfd1 .article .info {
  padding: 6px 10px;
  position: relative;
}
#a0f95ad3e7abfd1 .article .info p {
  margin: 10px 0 10px;
}
#a0f95ad3e7abfd1 .article svg {
  fill: currentColor;
}
#a0f95ad3e7abfd1 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#a0f95ad3e7abfd1 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#a0f95ad3e7abfd1 .article.list-icon .info {
  padding-left: 25px;
}
#a0f95ad3e7abfd1 .article .datetime {
  position: absolute;
  right: 10px;
  top: 6px;
}
#a0f95ad3e7abfd1 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: left;
  font-family: inherit;
  color: #000000;
}
#a0f95ad3e7abfd1 .article .abstract {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  color: #626161;
}
#a0f95ad3e7abfd1 .article:hover {
  background-color: #ff5800;
  border-top: 1px solid auto;
}
#a0f95ad3e7abfd1 .article:hover .title {
  color: #ffffff;
}
#a0f95ad3e7abfd1 .article:hover .datetime {
  color: #b6b6b6;
}
#a0f95ad3e7abfd1 .article:hover .category {
  color: #b6b6b6;
}
#a0f95ad3e7abfd1 .article:hover .abstract {
  color: #ffffff;
}
#a0f95ad3e7abfd1 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a0f95ad3e7abfd1 .article:hover .list_icon {
  color: #ff5800;
}
#a1980a6632abe61 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aff82a5ed2ad895 .ace81af437a5395 .img-wrap {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #c3c3c3;
  border-left-color: #c3c3c3;
  border-bottom-color: #c3c3c3;
  border-top-color: #c3c3c3;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#aff82a5ed2ad895 .uk-grid {
  margin-left: 0px;
}
#aff82a5ed2ad895 .uk-grid > * {
  padding-left: 0px;
}
#aff82a5ed2ad895 .uk-grid > .uk-grid-margin {
  margin-top: 10px;
}
#aff82a5ed2ad895 .dynamic-list-item {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#aff82a5ed2ad895 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #aff82a5ed2ad895 .uk-position-center-left-out {
    left: -30px;
  }
  #aff82a5ed2ad895 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac09aa7b8caf466 {background-color: rgba(0,0,0,0.7);}#ac09aa7b8caf466 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#a796eab995a998b .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a71e0a6b19a05da .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a7b10a5e8eac02d .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#af0afabe80addfa .ele-slideshow .uk-slidenav {
  background-color: rgba(75, 75, 75, 0.71);
}
#af0afabe80addfa .ele-slideshow .uk-slidenav {
  color: rgba(255, 255, 255, 0.76);
}
#a7199ab516a1525 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a7199ab516a1525  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#abb5fa3fbba0e78 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#abb5fa3fbba0e78 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);}#ae804a2a3ba566e .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#ae804a2a3ba566e .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);}#a83a5aae5daa84b .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a83a5aae5daa84b .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);}#a523ba5f07a6788 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a523ba5f07a6788 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);}#a82daa1bbfaf80f .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a82daa1bbfaf80f .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);}#a5d2eabf1ead5a6 {
  overflow: hidden;
  pointer-events: none;
  border-right-style: solid;
  border-left-style: solid;
}
#a5d2eabf1ead5a6 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a5d2eabf1ead5a6 > .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;
}
#a5d2eabf1ead5a6 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a5d2eabf1ead5a6 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a5d2eabf1ead5a6 > .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;
}
#a5d2eabf1ead5a6 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a5d2eabf1ead5a6 > .tab-wrap > div > .tab-nav,
#a5d2eabf1ead5a6 > .tab-nav,
#a5d2eabf1ead5a6 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a5d2eabf1ead5a6 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
}
#a5d2eabf1ead5a6 > .tab-wrap > div > .tab-nav-horizontal,
#a5d2eabf1ead5a6 > .tab-nav-horizontal,
#a5d2eabf1ead5a6 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a5d2eabf1ead5a6 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a5d2eabf1ead5a6 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a5d2eabf1ead5a6 > .tab-nav-horizontal::-webkit-scrollbar,
#a5d2eabf1ead5a6 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a5d2eabf1ead5a6 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a5d2eabf1ead5a6 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a5d2eabf1ead5a6 > .tab-nav-horizontal.tagScroll,
#a5d2eabf1ead5a6 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a5d2eabf1ead5a6 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 46px;
  overflow-x: auto;
}
#a5d2eabf1ead5a6 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a5d2eabf1ead5a6 > .tab-nav-horizontal.tagScroll li a,
#a5d2eabf1ead5a6 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a5d2eabf1ead5a6 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a5d2eabf1ead5a6 > .tab-wrap > div > .tab-nav a,
#a5d2eabf1ead5a6 > .tab-nav a,
#a5d2eabf1ead5a6 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a5d2eabf1ead5a6 > .tab-tabs > .tab-nav a {
  padding: 0 156px;
}
#a5d2eabf1ead5a6 > .tab-wrap > div > .tab-nav li a,
#a5d2eabf1ead5a6 > .tab-nav li a,
#a5d2eabf1ead5a6 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a5d2eabf1ead5a6 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 45px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 46px;
  font-weight: normal;
  font-style: normal;
  font-size: 26px;
  font-family: inherit;
  color: #000000;
  background-color: #ffffff;
  margin-top: 7px;
  border-bottom-width: 2px;
  border-bottom-color: #50e3c2;
  border-bottom-style: solid;
  margin-left: 70px;
  border-left-width: 0;
  border-left-style: solid;
  padding: 0 156px;
}
#a5d2eabf1ead5a6 > .tab-wrap > div > .tab-nav li a svg,
#a5d2eabf1ead5a6 > .tab-nav li a svg,
#a5d2eabf1ead5a6 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a5d2eabf1ead5a6 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a5d2eabf1ead5a6 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a5d2eabf1ead5a6 > .tab-nav li a .ap_icon,
#a5d2eabf1ead5a6 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a5d2eabf1ead5a6 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a5d2eabf1ead5a6 > .tab-wrap > div > .tab-nav li a:hover,
#a5d2eabf1ead5a6 > .tab-nav li a:hover,
#a5d2eabf1ead5a6 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a5d2eabf1ead5a6 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ea3e00;
}
#a5d2eabf1ead5a6 > .tab-wrap > div > .tab-nav li.uk-active a,
#a5d2eabf1ead5a6 > .tab-nav li.uk-active a,
#a5d2eabf1ead5a6 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a5d2eabf1ead5a6 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #010101;
  border-bottom-width: 2px;
  border-bottom-color: #ff3d00;
}
#a5d2eabf1ead5a6 .layout-left li,
#a5d2eabf1ead5a6 .layout-center li,
#a5d2eabf1ead5a6 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a5d2eabf1ead5a6 .layout-left li a,
#a5d2eabf1ead5a6 .layout-center li a,
#a5d2eabf1ead5a6 .layout-right li a {
  height: 100%;
}
#a5d2eabf1ead5a6 > .tab-tabs .layout-left {
  text-align: left;
}
#a5d2eabf1ead5a6 > .tab-tabs .layout-center {
  text-align: center;
}
#a5d2eabf1ead5a6 > .tab-tabs .layout-right {
  text-align: right;
}
#a5d2eabf1ead5a6 .tab-contents {
  height: 100%;
  height: calc(100% - 46px);
}
#a5d2eabf1ead5a6 .tab-content-wrap {
  background-color: #f9f5f5;
  border-right-style: solid;
}
#a5d2eabf1ead5a6 .tab-contents,
#a5d2eabf1ead5a6 .tab-contents-wrap {
  pointer-events: none;
}
#a5d2eabf1ead5a6 .tab-content,
#a5d2eabf1ead5a6 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a5d2eabf1ead5a6 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a5d2eabf1ead5a6 .tab-wrap .tab-contents {
  height: 100%;
}
#a5d2eabf1ead5a6 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a5d2eabf1ead5a6 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a5d2eabf1ead5a6 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#abc49a29c4a51a1 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abb41a7600a164e .ele-slideshow .uk-slidenav {
  background-color: rgba(117, 117, 117, 0.84);
}
#afa50afa12ad9fb > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa8daa6172ae5bd .uk-grid {
  margin-left: -50px;
}
#aa8daa6172ae5bd .uk-grid > * {
  padding-left: 50px;
}
#aa8daa6172ae5bd .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#aa8daa6172ae5bd .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #aa8daa6172ae5bd .uk-position-center-left-out {
    left: -30px;
  }
  #aa8daa6172ae5bd .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a6da6af616ac26b > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b49ac0f8a1574 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;
                background-image: linear-gradient(0deg,
                rgba(255, 88, 0, 1),
                rgba(253, 127, 2, 1));
            border-radius: 0px;justify-content: center;border-style: solid;}#a0b49ac0f8a1574 .ele-wrap:hover {background-color: #0483cc;}#ae4f4a291fa0337 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#ae4f4a291fa0337 .ele-wrap:hover {background-color: #0483cc;}#a2922a659faf500 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#a2922a659faf500 .ele-wrap:hover {background-color: #0483cc;}#a8fdaa69eaac684 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#a8fdaa69eaac684 .ele-wrap:hover {background-color: #0483cc;}#a2976ac650ac9b5 {
  overflow: hidden;
  pointer-events: none;
}
#a2976ac650ac9b5 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a2976ac650ac9b5 > .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;
}
#a2976ac650ac9b5 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a2976ac650ac9b5 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a2976ac650ac9b5 > .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;
}
#a2976ac650ac9b5 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a2976ac650ac9b5 > .tab-wrap > div > .tab-nav,
#a2976ac650ac9b5 > .tab-nav,
#a2976ac650ac9b5 > .tab-tabs > .tab-wrap > div > .tab-nav,
#a2976ac650ac9b5 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  background-color: #ffffff;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#a2976ac650ac9b5 > .tab-wrap > div > .tab-nav-horizontal,
#a2976ac650ac9b5 > .tab-nav-horizontal,
#a2976ac650ac9b5 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a2976ac650ac9b5 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a2976ac650ac9b5 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a2976ac650ac9b5 > .tab-nav-horizontal::-webkit-scrollbar,
#a2976ac650ac9b5 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a2976ac650ac9b5 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a2976ac650ac9b5 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a2976ac650ac9b5 > .tab-nav-horizontal.tagScroll,
#a2976ac650ac9b5 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a2976ac650ac9b5 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 61px;
  overflow-x: auto;
}
#a2976ac650ac9b5 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a2976ac650ac9b5 > .tab-nav-horizontal.tagScroll li a,
#a2976ac650ac9b5 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a2976ac650ac9b5 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a2976ac650ac9b5 > .tab-wrap > div > .tab-nav a,
#a2976ac650ac9b5 > .tab-nav a,
#a2976ac650ac9b5 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a2976ac650ac9b5 > .tab-tabs > .tab-nav a {
  padding: 0 24px;
}
#a2976ac650ac9b5 > .tab-wrap > div > .tab-nav li a,
#a2976ac650ac9b5 > .tab-nav li a,
#a2976ac650ac9b5 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a2976ac650ac9b5 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 61px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  border-right-style: solid;
  margin-right: 7px;
  margin-left: 7px;
  border-right-width: 1px;
  border-right-color: #ababab;
  border-left-color: #d2d2d2;
  border-bottom-color: #d2d2d2;
  border-top-color: #d2d2d2;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
  padding: 0 24px;
}
#a2976ac650ac9b5 > .tab-wrap > div > .tab-nav li a svg,
#a2976ac650ac9b5 > .tab-nav li a svg,
#a2976ac650ac9b5 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a2976ac650ac9b5 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a2976ac650ac9b5 > .tab-wrap > div > .tab-nav li a .ap_icon,
#a2976ac650ac9b5 > .tab-nav li a .ap_icon,
#a2976ac650ac9b5 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a2976ac650ac9b5 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a2976ac650ac9b5 > .tab-wrap > div > .tab-nav li a:hover,
#a2976ac650ac9b5 > .tab-nav li a:hover,
#a2976ac650ac9b5 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a2976ac650ac9b5 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff6a02;
  border-bottom-width: 2px;
  border-bottom-color: #ff6a02;
  border-bottom-style: solid;
}
#a2976ac650ac9b5 > .tab-wrap > div > .tab-nav li.uk-active a,
#a2976ac650ac9b5 > .tab-nav li.uk-active a,
#a2976ac650ac9b5 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a2976ac650ac9b5 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 2px;
  border-bottom-color: #9b9b9b;
  border-bottom-style: solid;
  background-color: #fb5800;
}
#a2976ac650ac9b5 .layout-left li,
#a2976ac650ac9b5 .layout-center li,
#a2976ac650ac9b5 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a2976ac650ac9b5 .layout-left li a,
#a2976ac650ac9b5 .layout-center li a,
#a2976ac650ac9b5 .layout-right li a {
  height: 100%;
}
#a2976ac650ac9b5 > .tab-tabs .layout-left {
  text-align: left;
}
#a2976ac650ac9b5 > .tab-tabs .layout-center {
  text-align: center;
}
#a2976ac650ac9b5 > .tab-tabs .layout-right {
  text-align: right;
}
#a2976ac650ac9b5 .tab-contents {
  height: 100%;
  height: calc(100% - 61px);
}
#a2976ac650ac9b5 .tab-content-wrap {
  background-color: #ffffff;
}
#a2976ac650ac9b5 .tab-contents,
#a2976ac650ac9b5 .tab-contents-wrap {
  pointer-events: none;
}
#a2976ac650ac9b5 .tab-content,
#a2976ac650ac9b5 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a2976ac650ac9b5 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a2976ac650ac9b5 .tab-wrap .tab-contents {
  height: 100%;
}
#a2976ac650ac9b5 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a2976ac650ac9b5 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a2976ac650ac9b5 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a08d6a6cdea5b68 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a7e0aa8759aa2cc .uk-grid {
  margin-left: -15px;
}
#a7e0aa8759aa2cc .uk-grid > * {
  padding-left: 15px;
}
#a7e0aa8759aa2cc .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a7e0aa8759aa2cc .ap-category-filter ul li.active {
  border-color: #ee895d;
  color: #ee895d;
}
#a7e0aa8759aa2cc .article {
  background-color: #fff;
  border-bottom: 1px solid #4d4d4e;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  background-color: #ffffff;
  border-bottom-style: dashed;
}
#a7e0aa8759aa2cc .article .info {
  padding: 6px 10px;
  position: relative;
}
#a7e0aa8759aa2cc .article .info p {
  margin: 10px 0 10px;
}
#a7e0aa8759aa2cc .article svg {
  fill: currentColor;
}
#a7e0aa8759aa2cc .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#a7e0aa8759aa2cc .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#a7e0aa8759aa2cc .article.list-icon .info {
  padding-left: 25px;
}
#a7e0aa8759aa2cc .article .datetime {
  position: absolute;
  right: 10px;
  top: 6px;
}
#a7e0aa8759aa2cc .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: left;
  font-family: inherit;
  color: #000000;
}
#a7e0aa8759aa2cc .article .abstract {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  color: #626161;
}
#a7e0aa8759aa2cc .article:hover {
  background-color: #ff5800;
  border-top: 1px solid auto;
}
#a7e0aa8759aa2cc .article:hover .title {
  color: #ffffff;
}
#a7e0aa8759aa2cc .article:hover .datetime {
  color: #b6b6b6;
}
#a7e0aa8759aa2cc .article:hover .category {
  color: #b6b6b6;
}
#a7e0aa8759aa2cc .article:hover .abstract {
  color: #ffffff;
}
#a7e0aa8759aa2cc .article:hover .btn_icon {
  color: #b6b6b6;
}
#a7e0aa8759aa2cc .article:hover .list_icon {
  color: #ff5800;
}
#a572aa02daabfab > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a7282abb20a679e .a0813a56f3a9258 .img-wrap {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #c3c3c3;
  border-left-color: #c3c3c3;
  border-bottom-color: #c3c3c3;
  border-top-color: #c3c3c3;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#a7282abb20a679e .uk-grid {
  margin-left: 0px;
}
#a7282abb20a679e .uk-grid > * {
  padding-left: 0px;
}
#a7282abb20a679e .uk-grid > .uk-grid-margin {
  margin-top: 10px;
}
#a7282abb20a679e .dynamic-list-item {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a7282abb20a679e .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a7282abb20a679e .uk-position-center-left-out {
    left: -30px;
  }
  #a7282abb20a679e .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac09aa7b8caf466 {background-color: rgba(0,0,0,0.7);}#ac09aa7b8caf466 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#ad934a772aaf8ba .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a1331a31e9a290d .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a25fbabeb6ad353 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#acb21a7a02a042d .ele-slideshow .uk-slidenav {
  background-color: rgba(75, 75, 75, 0.71);
}
#acb21a7a02a042d .ele-slideshow .uk-slidenav {
  color: rgba(255, 255, 255, 0.76);
}
#a485da6900a3ed2 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a485da6900a3ed2  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a7f63a1d92af696 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a7f63a1d92af696 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);}#ac9adaee20aa33b .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#ac9adaee20aa33b .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);}#a0492ab6fca9ae2 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a0492ab6fca9ae2 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);}#a1a7eac0f6a8186 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a1a7eac0f6a8186 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);}#a7a2bae0a4a7c03 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a7a2bae0a4a7c03 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);}#ac08aa2041ac7be {
  overflow: hidden;
  pointer-events: none;
  border-right-style: solid;
  border-left-style: solid;
}
#ac08aa2041ac7be > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#ac08aa2041ac7be > .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;
}
#ac08aa2041ac7be > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ac08aa2041ac7be > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#ac08aa2041ac7be > .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;
}
#ac08aa2041ac7be > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ac08aa2041ac7be > .tab-wrap > div > .tab-nav,
#ac08aa2041ac7be > .tab-nav,
#ac08aa2041ac7be > .tab-tabs > .tab-wrap > div > .tab-nav,
#ac08aa2041ac7be > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
}
#ac08aa2041ac7be > .tab-wrap > div > .tab-nav-horizontal,
#ac08aa2041ac7be > .tab-nav-horizontal,
#ac08aa2041ac7be > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#ac08aa2041ac7be > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#ac08aa2041ac7be > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ac08aa2041ac7be > .tab-nav-horizontal::-webkit-scrollbar,
#ac08aa2041ac7be > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ac08aa2041ac7be > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#ac08aa2041ac7be > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ac08aa2041ac7be > .tab-nav-horizontal.tagScroll,
#ac08aa2041ac7be > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ac08aa2041ac7be > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 46px;
  overflow-x: auto;
}
#ac08aa2041ac7be > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ac08aa2041ac7be > .tab-nav-horizontal.tagScroll li a,
#ac08aa2041ac7be > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ac08aa2041ac7be > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#ac08aa2041ac7be > .tab-wrap > div > .tab-nav a,
#ac08aa2041ac7be > .tab-nav a,
#ac08aa2041ac7be > .tab-tabs > .tab-wrap > div > .tab-nav a,
#ac08aa2041ac7be > .tab-tabs > .tab-nav a {
  padding: 0 156px;
}
#ac08aa2041ac7be > .tab-wrap > div > .tab-nav li a,
#ac08aa2041ac7be > .tab-nav li a,
#ac08aa2041ac7be > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#ac08aa2041ac7be > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 45px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 46px;
  font-weight: normal;
  font-style: normal;
  font-size: 26px;
  font-family: inherit;
  color: #000000;
  background-color: #ffffff;
  margin-top: 7px;
  border-bottom-width: 2px;
  border-bottom-color: #50e3c2;
  border-bottom-style: solid;
  margin-left: 70px;
  border-left-width: 0;
  border-left-style: solid;
  padding: 0 156px;
}
#ac08aa2041ac7be > .tab-wrap > div > .tab-nav li a svg,
#ac08aa2041ac7be > .tab-nav li a svg,
#ac08aa2041ac7be > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#ac08aa2041ac7be > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#ac08aa2041ac7be > .tab-wrap > div > .tab-nav li a .ap_icon,
#ac08aa2041ac7be > .tab-nav li a .ap_icon,
#ac08aa2041ac7be > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#ac08aa2041ac7be > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#ac08aa2041ac7be > .tab-wrap > div > .tab-nav li a:hover,
#ac08aa2041ac7be > .tab-nav li a:hover,
#ac08aa2041ac7be > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#ac08aa2041ac7be > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ea3e00;
}
#ac08aa2041ac7be > .tab-wrap > div > .tab-nav li.uk-active a,
#ac08aa2041ac7be > .tab-nav li.uk-active a,
#ac08aa2041ac7be > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#ac08aa2041ac7be > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #010101;
  border-bottom-width: 2px;
  border-bottom-color: #ff3d00;
}
#ac08aa2041ac7be .layout-left li,
#ac08aa2041ac7be .layout-center li,
#ac08aa2041ac7be .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#ac08aa2041ac7be .layout-left li a,
#ac08aa2041ac7be .layout-center li a,
#ac08aa2041ac7be .layout-right li a {
  height: 100%;
}
#ac08aa2041ac7be > .tab-tabs .layout-left {
  text-align: left;
}
#ac08aa2041ac7be > .tab-tabs .layout-center {
  text-align: center;
}
#ac08aa2041ac7be > .tab-tabs .layout-right {
  text-align: right;
}
#ac08aa2041ac7be .tab-contents {
  height: 100%;
  height: calc(100% - 46px);
}
#ac08aa2041ac7be .tab-content-wrap {
  background-color: #f9f5f5;
  border-right-style: solid;
}
#ac08aa2041ac7be .tab-contents,
#ac08aa2041ac7be .tab-contents-wrap {
  pointer-events: none;
}
#ac08aa2041ac7be .tab-content,
#ac08aa2041ac7be .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#ac08aa2041ac7be .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#ac08aa2041ac7be .tab-wrap .tab-contents {
  height: 100%;
}
#ac08aa2041ac7be .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#ac08aa2041ac7be .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#ac08aa2041ac7be .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#aa2cda97e7aa611 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad249a713aa6fdf .ele-slideshow .uk-slidenav {
  background-color: rgba(117, 117, 117, 0.84);
}
#a8d80a6990af99f > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2ff1ae538a09d9 .uk-grid {
  margin-left: -50px;
}
#a2ff1ae538a09d9 .uk-grid > * {
  padding-left: 50px;
}
#a2ff1ae538a09d9 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a2ff1ae538a09d9 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a2ff1ae538a09d9 .uk-position-center-left-out {
    left: -30px;
  }
  #a2ff1ae538a09d9 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a3af7ac5a2a8b0f > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1823a2ce5affc8 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;
                background-image: linear-gradient(0deg,
                rgba(255, 88, 0, 1),
                rgba(253, 127, 2, 1));
            border-radius: 0px;justify-content: center;border-style: solid;}#a1823a2ce5affc8 .ele-wrap:hover {background-color: #0483cc;}#a6fc8a5df9a19c0 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#a6fc8a5df9a19c0 .ele-wrap:hover {background-color: #0483cc;}#a1294a2739aa55f .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#a1294a2739aa55f .ele-wrap:hover {background-color: #0483cc;}#ae479a5e9ca990e .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#ae479a5e9ca990e .ele-wrap:hover {background-color: #0483cc;}#a40d4aaf99aa15a {
  overflow: hidden;
  pointer-events: none;
}
#a40d4aaf99aa15a > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a40d4aaf99aa15a > .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;
}
#a40d4aaf99aa15a > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a40d4aaf99aa15a > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a40d4aaf99aa15a > .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;
}
#a40d4aaf99aa15a > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a40d4aaf99aa15a > .tab-wrap > div > .tab-nav,
#a40d4aaf99aa15a > .tab-nav,
#a40d4aaf99aa15a > .tab-tabs > .tab-wrap > div > .tab-nav,
#a40d4aaf99aa15a > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  background-color: #ffffff;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#a40d4aaf99aa15a > .tab-wrap > div > .tab-nav-horizontal,
#a40d4aaf99aa15a > .tab-nav-horizontal,
#a40d4aaf99aa15a > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a40d4aaf99aa15a > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a40d4aaf99aa15a > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a40d4aaf99aa15a > .tab-nav-horizontal::-webkit-scrollbar,
#a40d4aaf99aa15a > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a40d4aaf99aa15a > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a40d4aaf99aa15a > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a40d4aaf99aa15a > .tab-nav-horizontal.tagScroll,
#a40d4aaf99aa15a > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a40d4aaf99aa15a > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 61px;
  overflow-x: auto;
}
#a40d4aaf99aa15a > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a40d4aaf99aa15a > .tab-nav-horizontal.tagScroll li a,
#a40d4aaf99aa15a > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a40d4aaf99aa15a > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a40d4aaf99aa15a > .tab-wrap > div > .tab-nav a,
#a40d4aaf99aa15a > .tab-nav a,
#a40d4aaf99aa15a > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a40d4aaf99aa15a > .tab-tabs > .tab-nav a {
  padding: 0 24px;
}
#a40d4aaf99aa15a > .tab-wrap > div > .tab-nav li a,
#a40d4aaf99aa15a > .tab-nav li a,
#a40d4aaf99aa15a > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a40d4aaf99aa15a > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 61px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  border-right-style: solid;
  margin-right: 7px;
  margin-left: 7px;
  border-right-width: 1px;
  border-right-color: #ababab;
  border-left-color: #d2d2d2;
  border-bottom-color: #d2d2d2;
  border-top-color: #d2d2d2;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
  padding: 0 24px;
}
#a40d4aaf99aa15a > .tab-wrap > div > .tab-nav li a svg,
#a40d4aaf99aa15a > .tab-nav li a svg,
#a40d4aaf99aa15a > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a40d4aaf99aa15a > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a40d4aaf99aa15a > .tab-wrap > div > .tab-nav li a .ap_icon,
#a40d4aaf99aa15a > .tab-nav li a .ap_icon,
#a40d4aaf99aa15a > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a40d4aaf99aa15a > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a40d4aaf99aa15a > .tab-wrap > div > .tab-nav li a:hover,
#a40d4aaf99aa15a > .tab-nav li a:hover,
#a40d4aaf99aa15a > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a40d4aaf99aa15a > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff6a02;
  border-bottom-width: 2px;
  border-bottom-color: #ff6a02;
  border-bottom-style: solid;
}
#a40d4aaf99aa15a > .tab-wrap > div > .tab-nav li.uk-active a,
#a40d4aaf99aa15a > .tab-nav li.uk-active a,
#a40d4aaf99aa15a > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a40d4aaf99aa15a > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 2px;
  border-bottom-color: #9b9b9b;
  border-bottom-style: solid;
  background-color: #fb5800;
}
#a40d4aaf99aa15a .layout-left li,
#a40d4aaf99aa15a .layout-center li,
#a40d4aaf99aa15a .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a40d4aaf99aa15a .layout-left li a,
#a40d4aaf99aa15a .layout-center li a,
#a40d4aaf99aa15a .layout-right li a {
  height: 100%;
}
#a40d4aaf99aa15a > .tab-tabs .layout-left {
  text-align: left;
}
#a40d4aaf99aa15a > .tab-tabs .layout-center {
  text-align: center;
}
#a40d4aaf99aa15a > .tab-tabs .layout-right {
  text-align: right;
}
#a40d4aaf99aa15a .tab-contents {
  height: 100%;
  height: calc(100% - 61px);
}
#a40d4aaf99aa15a .tab-content-wrap {
  background-color: #ffffff;
}
#a40d4aaf99aa15a .tab-contents,
#a40d4aaf99aa15a .tab-contents-wrap {
  pointer-events: none;
}
#a40d4aaf99aa15a .tab-content,
#a40d4aaf99aa15a .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a40d4aaf99aa15a .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a40d4aaf99aa15a .tab-wrap .tab-contents {
  height: 100%;
}
#a40d4aaf99aa15a .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a40d4aaf99aa15a .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a40d4aaf99aa15a .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#aa6b8a0845ae11f > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aaa1aaab76a5336 .uk-grid {
  margin-left: -15px;
}
#aaa1aaab76a5336 .uk-grid > * {
  padding-left: 15px;
}
#aaa1aaab76a5336 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#aaa1aaab76a5336 .ap-category-filter ul li.active {
  border-color: #ee895d;
  color: #ee895d;
}
#aaa1aaab76a5336 .article {
  background-color: #fff;
  border-bottom: 1px solid #4d4d4e;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  background-color: #ffffff;
  border-bottom-style: dashed;
}
#aaa1aaab76a5336 .article .info {
  padding: 6px 10px;
  position: relative;
}
#aaa1aaab76a5336 .article .info p {
  margin: 10px 0 10px;
}
#aaa1aaab76a5336 .article svg {
  fill: currentColor;
}
#aaa1aaab76a5336 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#aaa1aaab76a5336 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#aaa1aaab76a5336 .article.list-icon .info {
  padding-left: 25px;
}
#aaa1aaab76a5336 .article .datetime {
  position: absolute;
  right: 10px;
  top: 6px;
}
#aaa1aaab76a5336 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: left;
  font-family: inherit;
  color: #000000;
}
#aaa1aaab76a5336 .article .abstract {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  color: #626161;
}
#aaa1aaab76a5336 .article:hover {
  background-color: #ff5800;
  border-top: 1px solid auto;
}
#aaa1aaab76a5336 .article:hover .title {
  color: #ffffff;
}
#aaa1aaab76a5336 .article:hover .datetime {
  color: #b6b6b6;
}
#aaa1aaab76a5336 .article:hover .category {
  color: #b6b6b6;
}
#aaa1aaab76a5336 .article:hover .abstract {
  color: #ffffff;
}
#aaa1aaab76a5336 .article:hover .btn_icon {
  color: #b6b6b6;
}
#aaa1aaab76a5336 .article:hover .list_icon {
  color: #ff5800;
}
#ae800a04fea14b2 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad203aa171a2e03 .ab38ba7f07a4a9f .img-wrap {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #c3c3c3;
  border-left-color: #c3c3c3;
  border-bottom-color: #c3c3c3;
  border-top-color: #c3c3c3;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#ad203aa171a2e03 .uk-grid {
  margin-left: 0px;
}
#ad203aa171a2e03 .uk-grid > * {
  padding-left: 0px;
}
#ad203aa171a2e03 .uk-grid > .uk-grid-margin {
  margin-top: 10px;
}
#ad203aa171a2e03 .dynamic-list-item {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#ad203aa171a2e03 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #ad203aa171a2e03 .uk-position-center-left-out {
    left: -30px;
  }
  #ad203aa171a2e03 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac09aa7b8caf466 {background-color: rgba(0,0,0,0.7);}#ac09aa7b8caf466 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#a8493a3637a3338 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a8d64ae106a8ae8 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a8b71af3e8aa013 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a4fd7ae502a2412 .ele-slideshow .uk-slidenav {
  background-color: rgba(75, 75, 75, 0.71);
}
#a4fd7ae502a2412 .ele-slideshow .uk-slidenav {
  color: rgba(255, 255, 255, 0.76);
}
#a8957a1aaca729c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a8957a1aaca729c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a3fb9aef9ead93b .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a3fb9aef9ead93b .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-ciwhFP.png);}#a6d09ad46fa279e .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a6d09ad46fa279e .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-krwXNx.png);}#a20a5aba47a9c78 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a20a5aba47a9c78 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-pQAgmx.png);}#a2866a5377a2d19 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#a2866a5377a2d19 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-fGIVIb.png);}#ad87bacfc7a12c7 .hover-content-wrap:nth-child(1)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);background-size: auto;background-repeat: no-repeat;background-position: center center;}#ad87bacfc7a12c7 .hover-content-wrap:nth-child(2)
                            {background-image: url(/resources/upload/a004aa2d95a7dd5/100567-YulDGv.png);}#ae2b4a4790a1af9 {
  overflow: hidden;
  pointer-events: none;
  border-right-style: solid;
  border-left-style: solid;
}
#ae2b4a4790a1af9 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#ae2b4a4790a1af9 > .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;
}
#ae2b4a4790a1af9 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ae2b4a4790a1af9 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 46px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#ae2b4a4790a1af9 > .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;
}
#ae2b4a4790a1af9 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#ae2b4a4790a1af9 > .tab-wrap > div > .tab-nav,
#ae2b4a4790a1af9 > .tab-nav,
#ae2b4a4790a1af9 > .tab-tabs > .tab-wrap > div > .tab-nav,
#ae2b4a4790a1af9 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
}
#ae2b4a4790a1af9 > .tab-wrap > div > .tab-nav-horizontal,
#ae2b4a4790a1af9 > .tab-nav-horizontal,
#ae2b4a4790a1af9 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#ae2b4a4790a1af9 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#ae2b4a4790a1af9 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ae2b4a4790a1af9 > .tab-nav-horizontal::-webkit-scrollbar,
#ae2b4a4790a1af9 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#ae2b4a4790a1af9 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#ae2b4a4790a1af9 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ae2b4a4790a1af9 > .tab-nav-horizontal.tagScroll,
#ae2b4a4790a1af9 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#ae2b4a4790a1af9 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 46px;
  overflow-x: auto;
}
#ae2b4a4790a1af9 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ae2b4a4790a1af9 > .tab-nav-horizontal.tagScroll li a,
#ae2b4a4790a1af9 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#ae2b4a4790a1af9 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#ae2b4a4790a1af9 > .tab-wrap > div > .tab-nav a,
#ae2b4a4790a1af9 > .tab-nav a,
#ae2b4a4790a1af9 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#ae2b4a4790a1af9 > .tab-tabs > .tab-nav a {
  padding: 0 156px;
}
#ae2b4a4790a1af9 > .tab-wrap > div > .tab-nav li a,
#ae2b4a4790a1af9 > .tab-nav li a,
#ae2b4a4790a1af9 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#ae2b4a4790a1af9 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 45px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 46px;
  font-weight: normal;
  font-style: normal;
  font-size: 26px;
  font-family: inherit;
  color: #000000;
  background-color: #ffffff;
  margin-top: 7px;
  border-bottom-width: 2px;
  border-bottom-color: #50e3c2;
  border-bottom-style: solid;
  margin-left: 70px;
  border-left-width: 0;
  border-left-style: solid;
  padding: 0 156px;
}
#ae2b4a4790a1af9 > .tab-wrap > div > .tab-nav li a svg,
#ae2b4a4790a1af9 > .tab-nav li a svg,
#ae2b4a4790a1af9 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#ae2b4a4790a1af9 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#ae2b4a4790a1af9 > .tab-wrap > div > .tab-nav li a .ap_icon,
#ae2b4a4790a1af9 > .tab-nav li a .ap_icon,
#ae2b4a4790a1af9 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#ae2b4a4790a1af9 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#ae2b4a4790a1af9 > .tab-wrap > div > .tab-nav li a:hover,
#ae2b4a4790a1af9 > .tab-nav li a:hover,
#ae2b4a4790a1af9 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#ae2b4a4790a1af9 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ea3e00;
}
#ae2b4a4790a1af9 > .tab-wrap > div > .tab-nav li.uk-active a,
#ae2b4a4790a1af9 > .tab-nav li.uk-active a,
#ae2b4a4790a1af9 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#ae2b4a4790a1af9 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #010101;
  border-bottom-width: 2px;
  border-bottom-color: #ff3d00;
}
#ae2b4a4790a1af9 .layout-left li,
#ae2b4a4790a1af9 .layout-center li,
#ae2b4a4790a1af9 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#ae2b4a4790a1af9 .layout-left li a,
#ae2b4a4790a1af9 .layout-center li a,
#ae2b4a4790a1af9 .layout-right li a {
  height: 100%;
}
#ae2b4a4790a1af9 > .tab-tabs .layout-left {
  text-align: left;
}
#ae2b4a4790a1af9 > .tab-tabs .layout-center {
  text-align: center;
}
#ae2b4a4790a1af9 > .tab-tabs .layout-right {
  text-align: right;
}
#ae2b4a4790a1af9 .tab-contents {
  height: 100%;
  height: calc(100% - 46px);
}
#ae2b4a4790a1af9 .tab-content-wrap {
  background-color: #f9f5f5;
  border-right-style: solid;
}
#ae2b4a4790a1af9 .tab-contents,
#ae2b4a4790a1af9 .tab-contents-wrap {
  pointer-events: none;
}
#ae2b4a4790a1af9 .tab-content,
#ae2b4a4790a1af9 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#ae2b4a4790a1af9 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#ae2b4a4790a1af9 .tab-wrap .tab-contents {
  height: 100%;
}
#ae2b4a4790a1af9 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#ae2b4a4790a1af9 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#ae2b4a4790a1af9 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a9415a6ef0ac3ae > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a5a76a6df4a50a6 .ele-slideshow .uk-slidenav {
  background-color: rgba(117, 117, 117, 0.84);
}
#a9e5cae09badd77 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2283a40f5a1b37 .uk-grid {
  margin-left: -50px;
}
#a2283a40f5a1b37 .uk-grid > * {
  padding-left: 50px;
}
#a2283a40f5a1b37 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a2283a40f5a1b37 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a2283a40f5a1b37 .uk-position-center-left-out {
    left: -30px;
  }
  #a2283a40f5a1b37 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a4db0a6da6a971f > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a4f98a3edbae757 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;
                background-image: linear-gradient(0deg,
                rgba(255, 88, 0, 1),
                rgba(253, 127, 2, 1));
            border-radius: 0px;justify-content: center;border-style: solid;}#a4f98a3edbae757 .ele-wrap:hover {background-color: #0483cc;}#ac937a0b4ba5892 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#ac937a0b4ba5892 .ele-wrap:hover {background-color: #0483cc;}#a0da0a8bc6a3555 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#a0da0a8bc6a3555 .ele-wrap:hover {background-color: #0483cc;}#ad3aba1c40a850a .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 500;background-image: url(/resources/upload/a004aa2d95a7dd5/100567-IzbKtl.jpeg);border-radius: 5px;justify-content: center;border-style: solid;}#ad3aba1c40a850a .ele-wrap:hover {background-color: #0483cc;}#aa0c9a6077a5d44 {
  overflow: hidden;
  pointer-events: none;
}
#aa0c9a6077a5d44 > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#aa0c9a6077a5d44 > .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;
}
#aa0c9a6077a5d44 > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#aa0c9a6077a5d44 > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 61px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#aa0c9a6077a5d44 > .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;
}
#aa0c9a6077a5d44 > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#aa0c9a6077a5d44 > .tab-wrap > div > .tab-nav,
#aa0c9a6077a5d44 > .tab-nav,
#aa0c9a6077a5d44 > .tab-tabs > .tab-wrap > div > .tab-nav,
#aa0c9a6077a5d44 > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  background-color: #ffffff;
  border-bottom-width: 1px;
  border-bottom-color: rgba(204, 204, 204, 0.39);
  border-bottom-style: solid;
}
#aa0c9a6077a5d44 > .tab-wrap > div > .tab-nav-horizontal,
#aa0c9a6077a5d44 > .tab-nav-horizontal,
#aa0c9a6077a5d44 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#aa0c9a6077a5d44 > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#aa0c9a6077a5d44 > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#aa0c9a6077a5d44 > .tab-nav-horizontal::-webkit-scrollbar,
#aa0c9a6077a5d44 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#aa0c9a6077a5d44 > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#aa0c9a6077a5d44 > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#aa0c9a6077a5d44 > .tab-nav-horizontal.tagScroll,
#aa0c9a6077a5d44 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#aa0c9a6077a5d44 > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 61px;
  overflow-x: auto;
}
#aa0c9a6077a5d44 > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#aa0c9a6077a5d44 > .tab-nav-horizontal.tagScroll li a,
#aa0c9a6077a5d44 > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#aa0c9a6077a5d44 > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#aa0c9a6077a5d44 > .tab-wrap > div > .tab-nav a,
#aa0c9a6077a5d44 > .tab-nav a,
#aa0c9a6077a5d44 > .tab-tabs > .tab-wrap > div > .tab-nav a,
#aa0c9a6077a5d44 > .tab-tabs > .tab-nav a {
  padding: 0 24px;
}
#aa0c9a6077a5d44 > .tab-wrap > div > .tab-nav li a,
#aa0c9a6077a5d44 > .tab-nav li a,
#aa0c9a6077a5d44 > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#aa0c9a6077a5d44 > .tab-tabs > .tab-nav li a {
  display: block;
  text-align: center;
  line-height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  border-right: 1px solid #16a085;
  height: 61px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
  border-right-style: solid;
  margin-right: 7px;
  margin-left: 7px;
  border-right-width: 1px;
  border-right-color: #ababab;
  border-left-color: #d2d2d2;
  border-bottom-color: #d2d2d2;
  border-top-color: #d2d2d2;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
  padding: 0 24px;
}
#aa0c9a6077a5d44 > .tab-wrap > div > .tab-nav li a svg,
#aa0c9a6077a5d44 > .tab-nav li a svg,
#aa0c9a6077a5d44 > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#aa0c9a6077a5d44 > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#aa0c9a6077a5d44 > .tab-wrap > div > .tab-nav li a .ap_icon,
#aa0c9a6077a5d44 > .tab-nav li a .ap_icon,
#aa0c9a6077a5d44 > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#aa0c9a6077a5d44 > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#aa0c9a6077a5d44 > .tab-wrap > div > .tab-nav li a:hover,
#aa0c9a6077a5d44 > .tab-nav li a:hover,
#aa0c9a6077a5d44 > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#aa0c9a6077a5d44 > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff6a02;
  border-bottom-width: 2px;
  border-bottom-color: #ff6a02;
  border-bottom-style: solid;
}
#aa0c9a6077a5d44 > .tab-wrap > div > .tab-nav li.uk-active a,
#aa0c9a6077a5d44 > .tab-nav li.uk-active a,
#aa0c9a6077a5d44 > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#aa0c9a6077a5d44 > .tab-tabs > .tab-nav li.uk-active a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-bottom-width: 2px;
  border-bottom-color: #9b9b9b;
  border-bottom-style: solid;
  background-color: #fb5800;
}
#aa0c9a6077a5d44 .layout-left li,
#aa0c9a6077a5d44 .layout-center li,
#aa0c9a6077a5d44 .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#aa0c9a6077a5d44 .layout-left li a,
#aa0c9a6077a5d44 .layout-center li a,
#aa0c9a6077a5d44 .layout-right li a {
  height: 100%;
}
#aa0c9a6077a5d44 > .tab-tabs .layout-left {
  text-align: left;
}
#aa0c9a6077a5d44 > .tab-tabs .layout-center {
  text-align: center;
}
#aa0c9a6077a5d44 > .tab-tabs .layout-right {
  text-align: right;
}
#aa0c9a6077a5d44 .tab-contents {
  height: 100%;
  height: calc(100% - 61px);
}
#aa0c9a6077a5d44 .tab-content-wrap {
  background-color: #ffffff;
}
#aa0c9a6077a5d44 .tab-contents,
#aa0c9a6077a5d44 .tab-contents-wrap {
  pointer-events: none;
}
#aa0c9a6077a5d44 .tab-content,
#aa0c9a6077a5d44 .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#aa0c9a6077a5d44 .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#aa0c9a6077a5d44 .tab-wrap .tab-contents {
  height: 100%;
}
#aa0c9a6077a5d44 .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#aa0c9a6077a5d44 .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#aa0c9a6077a5d44 .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a031fa5c0aaadb5 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa971a569fa0e86 .uk-grid {
  margin-left: -15px;
}
#aa971a569fa0e86 .uk-grid > * {
  padding-left: 15px;
}
#aa971a569fa0e86 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#aa971a569fa0e86 .ap-category-filter ul li.active {
  border-color: #ee895d;
  color: #ee895d;
}
#aa971a569fa0e86 .article {
  background-color: #fff;
  border-bottom: 1px solid #4d4d4e;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  background-color: #ffffff;
  border-bottom-style: dashed;
}
#aa971a569fa0e86 .article .info {
  padding: 6px 10px;
  position: relative;
}
#aa971a569fa0e86 .article .info p {
  margin: 10px 0 10px;
}
#aa971a569fa0e86 .article svg {
  fill: currentColor;
}
#aa971a569fa0e86 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#aa971a569fa0e86 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#aa971a569fa0e86 .article.list-icon .info {
  padding-left: 25px;
}
#aa971a569fa0e86 .article .datetime {
  position: absolute;
  right: 10px;
  top: 6px;
}
#aa971a569fa0e86 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: left;
  font-family: inherit;
  color: #000000;
}
#aa971a569fa0e86 .article .abstract {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  color: #626161;
}
#aa971a569fa0e86 .article:hover {
  background-color: #ff5800;
  border-top: 1px solid auto;
}
#aa971a569fa0e86 .article:hover .title {
  color: #ffffff;
}
#aa971a569fa0e86 .article:hover .datetime {
  color: #b6b6b6;
}
#aa971a569fa0e86 .article:hover .category {
  color: #b6b6b6;
}
#aa971a569fa0e86 .article:hover .abstract {
  color: #ffffff;
}
#aa971a569fa0e86 .article:hover .btn_icon {
  color: #b6b6b6;
}
#aa971a569fa0e86 .article:hover .list_icon {
  color: #ff5800;
}
#a25adaf62aad7c2 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a4c1ea628aaea6b .ab3eca73f9a8b36 .img-wrap {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #c3c3c3;
  border-left-color: #c3c3c3;
  border-bottom-color: #c3c3c3;
  border-top-color: #c3c3c3;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-top-width: 1px;
  border-left-style: solid;
  border-bottom-style: solid;
  border-top-style: solid;
}
#a4c1ea628aaea6b .uk-grid {
  margin-left: 0px;
}
#a4c1ea628aaea6b .uk-grid > * {
  padding-left: 0px;
}
#a4c1ea628aaea6b .uk-grid > .uk-grid-margin {
  margin-top: 10px;
}
#a4c1ea628aaea6b .dynamic-list-item {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a4c1ea628aaea6b .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a4c1ea628aaea6b .uk-position-center-left-out {
    left: -30px;
  }
  #a4c1ea628aaea6b .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac09aa7b8caf466 {background-color: rgba(0,0,0,0.7);}#ac09aa7b8caf466 > .lightbox-content {background-color: rgba(255, 255, 255, 1);background-position: top left;background-size: contain;background-repeat: no-repeat;border-top-right-radius: 8px;border-bottom-right-radius: 8px;border-bottom-left-radius: 8px;border-top-left-radius: 8px;}#ac3d0a2df3afcc3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a674ca4cc2afa7a {
  min-height: 90vh;
  /* mobile */
}
#a674ca4cc2afa7a .search-highlight {
  background: yellow;
}
#a674ca4cc2afa7a .el-item {
  padding: 0;
  border-bottom: 1px solid #ececec;
}
#a674ca4cc2afa7a .el-title {
  margin-bottom: 20px;
}
#a674ca4cc2afa7a .el-item:hover .el-title {
  color: #ee895d;
}
#a674ca4cc2afa7a .img-wrap {
  overflow: hidden;
  display: block;
  border-radius: 4px;
}
#a674ca4cc2afa7a .img-wrap img {
  transition: all .3s ease;
  border-radius: 4px;
}
#a674ca4cc2afa7a .el-item:hover .img-wrap img {
  transform: scale(1.1);
}
#a674ca4cc2afa7a .el-title a {
  font-size: 20px;
  color: #333;
  line-height: 36px;
}
#a674ca4cc2afa7a .el-meta {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin: 6px 0;
}
#a674ca4cc2afa7a .el-content {
  font-size: 14px;
  color: #777;
}
@media (max-width: 640px) {
  #a674ca4cc2afa7a .el-title {
    margin-bottom: 0;
  }
  #a674ca4cc2afa7a .el-title a {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }
  #a674ca4cc2afa7a .category {
    font-size: 12px;
  }
  #a674ca4cc2afa7a .el-content {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 6px 0 0px;
  }
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac3d0a2df3afcc3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a2c2aa7e09affa2 {
  /* 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------------------------*/
}
#a2c2aa7e09affa2 * {
  font-family: 'PT Sans Caption', sans-serif, 'arial', 'Times New Roman';
}
#a2c2aa7e09affa2 .error .clip .shadow {
  height: 180px;
  /*Contrall*/
}
#a2c2aa7e09affa2 .error .clip:nth-of-type(2) .shadow {
  width: 130px;
  /*Contrall play with javascript*/
}
#a2c2aa7e09affa2 .error .clip:nth-of-type(1) .shadow,
#a2c2aa7e09affa2 .error .clip:nth-of-type(3) .shadow {
  width: 250px;
  /*Contrall*/
}
#a2c2aa7e09affa2 .error .digit {
  width: 150px;
  /*Contrall*/
  height: 150px;
  /*Contrall*/
  line-height: 150px;
  /*Contrall*/
  font-size: 120px;
  font-weight: bold;
}
#a2c2aa7e09affa2 .error h2 {
  font-size: 32px;
}
#a2c2aa7e09affa2 .error .msg {
  top: -190px;
  left: 30%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 32px;
}
#a2c2aa7e09affa2 .error span.triangle {
  top: 70%;
  right: 0%;
  border-left: 20px solid #535353;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
#a2c2aa7e09affa2 .error .container-error-404 {
  margin-top: 10%;
  position: relative;
  height: 250px;
  padding-top: 40px;
  text-align: center;
}
#a2c2aa7e09affa2 .error .container-error-404 .clip {
  display: inline-block;
  transform: skew(-45deg);
}
#a2c2aa7e09affa2 .error .clip .shadow {
  overflow: hidden;
}
#a2c2aa7e09affa2 .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);
}
#a2c2aa7e09affa2 .error .clip:nth-of-type(3) .shadow:after,
#a2c2aa7e09affa2 .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%;
}
#a2c2aa7e09affa2 .error .clip:nth-of-type(3) .shadow:after {
  left: -8px;
}
#a2c2aa7e09affa2 .error .digit {
  position: relative;
  top: 8%;
  color: white;
  background: #07B3F9;
  border-radius: 50%;
  display: inline-block;
  transform: skew(45deg);
}
#a2c2aa7e09affa2 .error .clip:nth-of-type(2) .digit {
  left: -10%;
}
#a2c2aa7e09affa2 .error .clip:nth-of-type(1) .digit {
  right: -20%;
}
#a2c2aa7e09affa2 .error .clip:nth-of-type(3) .digit {
  left: -20%;
}
#a2c2aa7e09affa2 .error h2 {
  color: #A2A2A2;
  font-weight: bold;
  padding-bottom: 20px;
}
#a2c2aa7e09affa2 .error .msg {
  position: relative;
  z-index: 9999;
  display: block;
  background: #535353;
  color: #A2A2A2;
  border-radius: 50%;
  font-style: italic;
}
#a2c2aa7e09affa2 .error .triangle {
  position: absolute;
  z-index: 999;
  transform: rotate(45deg);
  content: "";
  width: 0;
  height: 0;
}
@media (max-width: 767px) {
  #a2c2aa7e09affa2 {
    /* Error Page */
    /* Error Page */
  }
  #a2c2aa7e09affa2 .error .clip .shadow {
    height: 100px;
    /*Contrall*/
  }
  #a2c2aa7e09affa2 .error .clip:nth-of-type(2) .shadow {
    width: 80px;
    /*Contrall play with javascript*/
  }
  #a2c2aa7e09affa2 .error .clip:nth-of-type(1) .shadow,
  #a2c2aa7e09affa2 .error .clip:nth-of-type(3) .shadow {
    width: 100px;
    /*Contrall*/
  }
  #a2c2aa7e09affa2 .error .digit {
    width: 80px;
    /*Contrall*/
    height: 80px;
    /*Contrall*/
    line-height: 80px;
    /*Contrall*/
    font-size: 52px;
  }
  #a2c2aa7e09affa2 .error h2 {
    font-size: 24px;
  }
  #a2c2aa7e09affa2 .error .msg {
    top: -110px;
    left: 15%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
  #a2c2aa7e09affa2 .error span.triangle {
    top: 70%;
    right: -3%;
    border-left: 10px solid #535353;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
  #a2c2aa7e09affa2 .error .container-error-404 {
    height: 150px;
  }
}
#a2c2aa7e09affa2 .overlay {
  position: relative;
  z-index: 20;
}
#a2c2aa7e09affa2 .ground-color {
  background: white;
}
#a2c2aa7e09affa2 .item-bg-color {
  background: #EAEAEA;
}
#a2c2aa7e09affa2 .padding-top {
  padding-top: 10px;
}
#a2c2aa7e09affa2 .padding-bottom {
  padding-bottom: 10px;
}
#a2c2aa7e09affa2 .padding-vertical {
  padding-top: 10px;
  padding-bottom: 10px;
}
#a2c2aa7e09affa2 .padding-horizontal {
  padding-left: 10px;
  padding-right: 10px;
}
#a2c2aa7e09affa2 .padding-all {
  padding: 10px;
}
#a2c2aa7e09affa2 .no-padding-left {
  padding-left: 0px;
}
#a2c2aa7e09affa2 .no-padding-right {
  padding-right: 0px;
}
#a2c2aa7e09affa2 .no-vertical-padding {
  padding-top: 0px;
  padding-bottom: 0px;
}
#a2c2aa7e09affa2 .no-horizontal-padding {
  padding-left: 0px;
  padding-right: 0px;
}
#a2c2aa7e09affa2 .no-padding {
  padding: 0px;
}
#a2c2aa7e09affa2 .margin-top {
  margin-top: 10px;
}
#a2c2aa7e09affa2 .margin-bottom {
  margin-bottom: 10px;
}
#a2c2aa7e09affa2 .margin-right {
  margin-right: 10px;
}
#a2c2aa7e09affa2 .margin-left {
  margin-left: 10px;
}
#a2c2aa7e09affa2 .margin-horizontal {
  margin-left: 10px;
  margin-right: 10px;
}
#a2c2aa7e09affa2 .margin-vertical {
  margin-top: 10px;
  margin-bottom: 10px;
}
#a2c2aa7e09affa2 .margin-all {
  margin: 10px;
}
#a2c2aa7e09affa2 .no-margin {
  margin: 0px;
}
#a2c2aa7e09affa2 .no-vertical-margin {
  margin-top: 0px;
  margin-bottom: 0px;
}
#a2c2aa7e09affa2 .no-horizontal-margin {
  margin-left: 0px;
  margin-right: 0px;
}
#a2c2aa7e09affa2 .inside-col-shrink {
  margin: 0px 20px;
}
#a2c2aa7e09affa2 hr {
  margin: 0px;
  padding: 0px;
  border-top: 1px dashed #999;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac3d0a2df3afcc3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a6a14a6d8daebed .login-main {
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(12, 1, 4, 0.05);
}
#a6a14a6d8daebed .switch_item {
  margin-right: 10px;
}
#a6a14a6d8daebed a.switch_item:hover {
  text-decoration: underline;
}
#a6a14a6d8daebed .slider {
  width: 420px;
  height: 600px;
}
#a6a14a6d8daebed .uk-slideshow-items {
  height: 100%;
}
#a6a14a6d8daebed .uk-slideshow-items a {
  width: 100%;
  height: 100%;
  display: block;
}
#a6a14a6d8daebed .login-wrap {
  width: 100%;
  height: 100%;
}
#a6a14a6d8daebed .uk-dotnav > * > * {
  background: #fff;
  border-color: #fff;
  opacity: .5;
}
#a6a14a6d8daebed .uk-dotnav > .uk-active > * {
  border-color: #0076fe;
  background: #0076fe;
}
#a6a14a6d8daebed .phone-login-box {
  margin: 40px auto 40px;
}
#a6a14a6d8daebed .login-header {
  margin-bottom: 24px;
}
#a6a14a6d8daebed .login-header h4 {
  font-size: 22px;
  font-weight: bolder;
  line-height: 1;
  padding-left: 20px;
  border-left: 4px solid #0076fe;
}
#a6a14a6d8daebed .input-item {
  width: 330px;
  height: 45px;
  background-color: #f0f2f7;
  border-radius: 22px;
  border: solid 1px #e3e8f0;
  position: relative;
  overflow: hidden;
}
#a6a14a6d8daebed .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;
}
#a6a14a6d8daebed .forget_password {
  cursor: pointer;
}
#a6a14a6d8daebed .forget_password:hover {
  color: #ee895d;
}
#a6a14a6d8daebed .input-item input.error,
#a6a14a6d8daebed .input-item input.error::placeholder {
  color: #fc4343;
}
#a6a14a6d8daebed .input-item input::placeholder {
  color: #999;
}
#a6a14a6d8daebed .input-item .icon {
  position: absolute;
  left: 10px;
  top: 12px;
  fill: #ccc;
  width: 20px;
}
#a6a14a6d8daebed .form-item {
  margin: 24px 0;
}
#a6a14a6d8daebed .verifycode-input .input-item {
  width: 200px;
  float: left;
}
#a6a14a6d8daebed .send-code {
  float: left;
  margin-left: 20px;
}
#a6a14a6d8daebed .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;
}
#a6a14a6d8daebed .submit {
  width: 330px;
  height: 45px;
  background-color: #0076fe;
  border-radius: 22px;
  font-size: 18px;
  line-height: 45px;
  color: #fff;
  cursor: pointer;
}
#a6a14a6d8daebed .error {
  color: #fc4343;
  font-size: 12px;
  padding-left: 10px;
  display: block;
  max-width: 300px;
}
#a6a14a6d8daebed .login_btn_wrap {
  text-align: center;
}
#a6a14a6d8daebed .login_btn_wrap .submit {
  display: block;
  margin-bottom: 10px;
}
#a6a14a6d8daebed .input-item .pwd-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -10px;
  font-size: 16px;
  color: #999;
  cursor: pointer;
}
#a6a14a6d8daebed .input-item .pwd-toggle:hover {
  color: currentColor;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac3d0a2df3afcc3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a90fda7178a1e2e .sidebar {
  width: 150px;
  max-width: 150px;
  height: 100%;
}
#a90fda7178a1e2e .nav-items {
  background: #fafafa;
  min-height: 200px;
}
#a90fda7178a1e2e .phone-info {
  background: #fafafa;
  margin-top: 10px;
  font-size: 12px;
  padding: 22px 4px 20px 16px;
  line-height: 1.5;
  color: #666;
}
#a90fda7178a1e2e .phone-info .phone {
  line-height: 1.5;
  color: #333;
  font-size: 18px;
  font-family: Arial;
}
#a90fda7178a1e2e .nav-type {
  line-height: 37px;
  padding-left: 20px;
  cursor: pointer;
}
#a90fda7178a1e2e .nav-type.active {
  color: #FFF;
  cursor: default;
  background: #ff658c;
}
#a90fda7178a1e2e .content {
  padding-bottom: 60px;
  color: #666;
  border: 1px solid #f0f0f0;
  min-height: 400px;
}
#a90fda7178a1e2e .nav-list {
  padding: 0 20px;
}
#a90fda7178a1e2e .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;
}
#a90fda7178a1e2e .nav-list .nav-item.active {
  background-color: #ff5c89;
  color: #fff;
  cursor: default;
}
#a90fda7178a1e2e .order-item {
  margin-top: 10px;
  background: #fff;
  padding: 0 20px;
}
#a90fda7178a1e2e .order-item:hover {
  background: #f7f7f7;
}
#a90fda7178a1e2e .del-order {
  cursor: pointer;
}
#a90fda7178a1e2e .order-item .order-title {
  line-height: 40px;
  color: #666;
  font-size: 13px;
  border-bottom: 1px solid #f7f7f7;
}
#a90fda7178a1e2e .goods-item {
  padding: 10px 0;
  border-bottom: 1px solid #ececec;
  cursor: pointer;
}
#a90fda7178a1e2e .order-goods-list .goods-item:last-child {
  border-bottom: none;
}
#a90fda7178a1e2e .goods-item img {
  width: 100px;
  height: 100px;
  background: #f4f4f4;
}
#a90fda7178a1e2e .goods-item .goods-info {
  padding: 0 15px;
}
#a90fda7178a1e2e .appoint-time span {
  color: #e4393c;
  background-color: #f9eeee;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 2px;
  line-height: 1;
}
#a90fda7178a1e2e .appoint-time {
  margin-bottom: 4px;
}
#a90fda7178a1e2e .appoint-name {
  color: #333;
  font-size: 14px;
}
#a90fda7178a1e2e .appoint-info {
  padding: 0 15px;
  font-size: 12px;
  color: #888;
}
#a90fda7178a1e2e .goods-item .goods-name {
  color: #333;
}
#a90fda7178a1e2e .goods-item .sku-name {
  color: #999;
  font-size: 12px;
}
#a90fda7178a1e2e .order-total-info {
  padding-bottom: 10px;
  color: #999;
  font-size: 12px;
}
#a90fda7178a1e2e .order-total-info .total-price {
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  font-size: 14px;
}
#a90fda7178a1e2e .load-more {
  font-size: 12px;
  padding-bottom: 15px;
  color: #999;
}
#a90fda7178a1e2e .order-btns {
  padding: 10px 0;
  border-top: 1px solid #f7f7f7;
}
#a90fda7178a1e2e .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;
}
#a90fda7178a1e2e .order-btns .btn-warn {
  color: #fff;
  background: #eb3c3c;
  border-color: #eb3c3c;
  cursor: pointer;
}
#a90fda7178a1e2e .appoint-info .title {
  font-weight: bold;
  color: #333;
}
#a90fda7178a1e2e .coupon-item {
  margin: 10px 30px;
  display: inline-flex;
  width: 42%;
}
#a90fda7178a1e2e .setting-form {
  padding: 30px 20px;
}
#a90fda7178a1e2e .setting-item {
  margin-bottom: 20px;
  font-size: 13px;
  color: #666;
  line-height: 18px;
}
#a90fda7178a1e2e .setting-item .label {
  display: inline-block;
  margin-right: 6px;
  text-align: right;
  min-width: 120px;
}
#a90fda7178a1e2e .setting-item .input-text {
  border: 1px solid #ccc;
  line-height: 28px;
  padding: 0 10px;
  min-width: 200px;
  font-size: 13px;
}
#a90fda7178a1e2e .setting-form .setting-btns {
  margin-left: 130px;
}
#a90fda7178a1e2e .setting-form .uk-button {
  height: 30px;
  line-height: 30px;
  margin-right: 8px;
}
#a90fda7178a1e2e .setting-wrap {
  position: relative;
}
#a90fda7178a1e2e .user-info {
  border: 1px solid #ccc;
  width: 300px;
  position: absolute;
  right: 80px;
  top: 30px;
  color: #666;
  padding: 10px;
  font-size: 13px;
  background: #f9f9f9;
}
#a90fda7178a1e2e .user-info .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
  margin-right: 10px;
}
#a90fda7178a1e2e .user-info .levels {
  color: #888;
  font-size: 12px;
}
#a90fda7178a1e2e .address-wrap {
  padding: 30px 20px;
}
#a90fda7178a1e2e .addr-header {
  font-size: 18px;
  color: #333;
  margin: 0;
}
#a90fda7178a1e2e .addr-detail {
  border-bottom: 1px solid #ececec;
  margin-bottom: 10px;
}
#a90fda7178a1e2e .addr-list {
  min-height: 200px;
}
#a90fda7178a1e2e .addr-detail .addr-item-name,
#a90fda7178a1e2e .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;
}
#a90fda7178a1e2e .addr-detail .addr-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
#a90fda7178a1e2e .addr-detail .addr-item-name {
  color: #e93b3d;
  border-color: #e93b3d;
}
#a90fda7178a1e2e .addr-detail {
  padding: 12px 0;
  flex: 1;
}
#a90fda7178a1e2e .op-btns a {
  font-size: 12px;
  color: #e93b3d;
  margin-left: 6px;
}
#a90fda7178a1e2e .add-addr {
  height: 32px;
  line-height: 30px;
}
#a90fda7178a1e2e .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;
}
#a90fda7178a1e2e .publish-item {
  cursor: default;
  min-height: 120px;
}
#a90fda7178a1e2e .publish-item .status-0 {
  background-image: url(/resources/sys/img/icons/info-unread.png);
}
#a90fda7178a1e2e .publish-item .status-1 {
  background-image: url(/resources/sys/img/icons/info-fail.png);
}
#a90fda7178a1e2e .publish-item .btns a {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 2px;
  color: #fff;
  background: #ee895d;
}
#a90fda7178a1e2e .publish-item .btns .del-info {
  background: #ccc;
  color: #999;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac3d0a2df3afcc3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ae83faa8dba2347 {
  min-height: 90vh;
  /* mobile */
}
#ae83faa8dba2347 .search-highlight {
  background: yellow;
}
#ae83faa8dba2347 .el-item {
  padding: 0;
  border-bottom: 1px solid #ececec;
}
#ae83faa8dba2347 .el-title {
  margin-bottom: 20px;
}
#ae83faa8dba2347 .el-item:hover .el-title {
  color: #ee895d;
}
#ae83faa8dba2347 .img-wrap {
  overflow: hidden;
  display: block;
  border-radius: 4px;
}
#ae83faa8dba2347 .img-wrap img {
  transition: all .3s ease;
  border-radius: 4px;
}
#ae83faa8dba2347 .el-item:hover .img-wrap img {
  transform: scale(1.1);
}
#ae83faa8dba2347 .el-title a {
  font-size: 20px;
  color: #333;
  line-height: 36px;
}
#ae83faa8dba2347 .el-meta {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin: 6px 0;
}
#ae83faa8dba2347 .el-content {
  font-size: 14px;
  color: #777;
}
@media (max-width: 640px) {
  #ae83faa8dba2347 .el-title {
    margin-bottom: 0;
  }
  #ae83faa8dba2347 .el-title a {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }
  #ae83faa8dba2347 .category {
    font-size: 12px;
  }
  #ae83faa8dba2347 .el-content {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 6px 0 0px;
  }
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
#ac3d0a2df3afcc3 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a1205a7e66afb17 .comment-detail {
  min-height: 600px;
}
#a1205a7e66afb17 table {
  background: #f9fdff;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
#a1205a7e66afb17 table th,
#a1205a7e66afb17 table td {
  padding: 10px 20px;
  border: #ececec 1px solid;
  line-height: 1.8em;
}
#a1205a7e66afb17 table th {
  padding-left: 0;
  text-align: right;
  background: #eff7fe;
  font-weight: normal;
  color: #333;
}
#a1205a7e66afb17 .red {
  color: #F00!important;
}
#a1205a7e66afb17 .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;
}
#add71aa354afc58 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: none;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;}#add71aa354afc58  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aa80daa92ba6458 > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aa80daa92ba6458  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#a0984ac30fae26c > .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: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#a0984ac30fae26c  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#aef16a5262a10f3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-top-color: rgba(242, 242, 242, 1);border-top-style: solid;border-right-color: rgba(242, 242, 242, 1);border-left-color: rgba(242, 242, 242, 1);border-bottom-color: rgba(242, 242, 242, 1);border-right-style: solid;border-left-style: solid;border-bottom-style: solid;}#aef16a5262a10f3  > .ele-wrap:hover {box-shadow: 0px 0px 0px 0px rgba(220, 220, 220, 1);}#ab7eba57e8a1719 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: center;
}
#ab7eba57e8a1719 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#ab7eba57e8a1719 .ap-icon {
  margin-right: 6px;
}
#ab7eba57e8a1719 .indicator {
  margin-left: 4px;
}
#ab7eba57e8a1719 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 40px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #fcfcfc;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#ab7eba57e8a1719 .menu-list li:hover > a,
#ab7eba57e8a1719 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#ab7eba57e8a1719 .menu-list li.active > a {
  background-color: #ff6300;
}
#ab7eba57e8a1719 .menu-list ul,
#ab7eba57e8a1719 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#ab7eba57e8a1719 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#ab7eba57e8a1719 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab7eba57e8a1719 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab7eba57e8a1719 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: 150px;
}
#ab7eba57e8a1719 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #ff670f;
}
#a35eca3b9ba6456 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
  text-align: left;
}
#a35eca3b9ba6456 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a35eca3b9ba6456 .ap-icon {
  margin-right: 6px;
}
#a35eca3b9ba6456 .indicator {
  margin-left: 4px;
}
#a35eca3b9ba6456 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 0px;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: Arial;
  color: #ff6b00;
  border-right-style: none;
  border-left-style: none;
  border-top-style: none;
}
#a35eca3b9ba6456 .menu-list li:hover > a,
#a35eca3b9ba6456 .menu-list li.active > a {
  background: #ff670f;
  background-color: #ff670f;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #fff;
}
#a35eca3b9ba6456 .menu-list li.active > a {
  background-color: #ff6300;
}
#a35eca3b9ba6456 .menu-list ul,
#a35eca3b9ba6456 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #202020;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a35eca3b9ba6456 .menu-list ul {
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
}
#a35eca3b9ba6456 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a35eca3b9ba6456 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a35eca3b9ba6456 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #fefbfb;
  background-color: #202020;
  width: null;
}
#a35eca3b9ba6456 .menu-list ul li a:hover {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #ffffff;
  background-color: #1c1c1c;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  width: 150px;
}
#a59c7a3c98afc73 .uk-form .form-submit-btn {
  height: 35px;
  line-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
}
#a59c7a3c98afc73 .submit-wrap {
  text-align: center;
}
#a59c7a3c98afc73 .submit-wrap button {
  background-color: #ff8e00;
}
#a59c7a3c98afc73 .submit-wrap button {
  color: #ffffff;
}
#a59c7a3c98afc73 form {
  border-right-width: 0;
  border-right-style: none;
  border-left-width: 0;
  border-bottom-width: 0;
  border-top-width: 0;
  border-left-style: none;
  border-bottom-style: none;
  border-top-style: none;
}
#a59c7a3c98afc73 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a59c7a3c98afc73 .form-item {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
#a59c7a3c98afc73 .form-item .uk-input,
#a59c7a3c98afc73 .form-item .uk-select,
#a59c7a3c98afc73 .form-item .uk-textarea {
  width: 500px;
  height: 35px;
  line-height: 35px;
  background-color: #9c9c9c;
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .uk-input::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-webkit-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-webkit-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-select:-ms-input-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea:-ms-input-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-select::-moz-placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::-moz-placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .uk-input::placeholder,
#a59c7a3c98afc73 .form-item .uk-select::placeholder,
#a59c7a3c98afc73 .form-item .uk-textarea::placeholder {
  color: #cbcbcb;
}
#a59c7a3c98afc73 .form-item .auto-height {
  height: auto;
}
#a59c7a3c98afc73 .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
}
#a59c7a3c98afc73 .form-item .send-code {
  bottom: -2.5px;
}
#a59c7a3c98afc73 .form-item .uk-textarea {
  height: 70px;
  line-height: 1.5;
}
#a59c7a3c98afc73 .uk-form-label,
#a59c7a3c98afc73 .form-agree,
#a59c7a3c98afc73 .uk-h3,
#a59c7a3c98afc73 p {
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  text-align: right;
  font-family: inherit;
  color: #ffffff;
}
#a59c7a3c98afc73 .form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#a59c7a3c98afc73 .form-item label {
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
}
