.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: #ff8405;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
.uk-link:hover {
  color: #ffb804;
}
/* 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: #ffb804;
}
/* 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: #ff8405;
  text-shadow: none;
}
::selection {
  background: #ff8405;
  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 #ff8405;
}
/* Small
   ========================================================================== */
/*
   * Reset child height, caused by `inline-block`
   */
.uk-divider-small {
  line-height: 0;
}
.uk-divider-small::after {
  border-top: 2px solid #ff8405;
}
/* ========================================================================
     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: #ff8405;
  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: #ff8405;
  outline: none;
}
/* OnClick + Active */
.uk-icon-button:active,
.uk-active > .uk-icon-button {
  background-color: #ff8405;
  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: #ff8405;
  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: #ff8405;
}
/* OnClick + Active */
.uk-button-default:active,
.uk-button-default.uk-active {
  background-color: #ff8405;
  color: #ffffff;
}
/*
   * Primary
   */
.uk-button-primary {
  background-color: #ff8405;
  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: #ff8405;
  color: #ffffff;
  border-color: #ff8405;
}
/*
   * 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: #ff8405;
}
/* 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: #ff8405;
}
/* Hover + Focus */
.uk-button-link:hover,
.uk-button-link:focus {
  color: #ffb804;
}
/* 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: #ff8405;
}
/*
   * 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: #ff8405;
}
/*
   * 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: #ff8405;
  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: #ff8405;
  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: #ff8405;
}
/*
   * 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: #ff8405;
  color: #ffffff;
}
/*
   * Required for `a`
   */
.uk-badge:hover,
.uk-badge:focus {
  color: #ffffff;
  text-decoration: none;
  outline: none;
}
/* ========================================================================
     Component: Label
   ========================================================================== */
.uk-label {
  background: #ff8405;
  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: #ff8405;
  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: #ff8405;
}
/* 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: #ff8405;
  outline: none;
}
.uk-navbar-nav > li > a:hover::before {
  background-color: currentColor;
}
/* OnClick */
.uk-navbar-nav > li.uk-active > a::before {
  background-color: #ff8405;
}
/* Item
   ========================================================================== */
.uk-navbar-item {
  color: #666;
}
/* Toggle
   ========================================================================== */
.uk-navbar-toggle:hover,
.uk-navbar-toggle:focus,
.uk-navbar-toggle.uk-open {
  color: #ff8405;
}
/* 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: #ff8405;
  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: #ff8405;
  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: #ff8405;
  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: #ff8405;
}
/* 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: #ff8405;
  border-color: transparent;
}
/* Active */
.uk-dotnav > .uk-active > * {
  background-color: #ff8405;
  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: #ff8405;
}
/*
   * 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: #ff8405;
}
/* 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: #ff8405;
}
/*
   * 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: #ff8405;
  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: #ff8405;
}
.uk-progress::-moz-progress-bar {
  background-color: #ff8405;
}
.uk-progress::-ms-fill {
  background-color: #ff8405;
}
/* ========================================================================
     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: #ff8405 !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: #ff8405 !important;
}
@supports (-webkit-background-clip: text) {
  .uk-text-background {
    background-color: #ff8405;
  }
}
/* ========================================================================
     Component: Background
   ========================================================================== */
/* Color
   ========================================================================== */
.uk-background-default {
  background-color: #ffffff;
}
.uk-background-muted {
  background-color: #f8f8f8;
}
.uk-background-primary {
  background-color: #ff8405;
}
.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: #ff8405;
  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: #ff8405;
  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: #ff8405;
  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: #ff8405;
}
.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: #ff8405;
}
.uk-section-muted .uk-navbar-container.uk-navbar-sticky {
  background-color: #f8f8f8;
}
.uk-section-primary .uk-navbar-container.uk-navbar-sticky {
  background-color: #ff8405;
}
.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: #ff8405;
  border-color: #ff8405;
}
.category .uk-pagination li:hover,
.ap-pagination li:hover,
.dynamic-pagination li:hover {
  border-color: #ff8405;
}
/* ========================================================================
   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: #d16a00;
}
.ap-list-filter dd a.active {
  background-color: #ff8405;
  color: #fff;
  border-radius: 2px;
}
.ap-filter-dropdown .filter-item-wrap.open,
.ap-filter-dropdown .filter-item.active {
  color: #ff8405;
}
.category li a.active {
  color: #ff8405;
}
.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: #ff8405;
}
.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: #ff8405;
  border: 1px solid rgba(255, 132, 5, 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: #ff8405;
}
form .step .ui-step.active .ui-step-title {
  color: #ff8405;
}
/**************** 自定义版块样式 ********************/
.btn-effect-1 {
  border-color: #ff8405;
  background-color: #ff8405;
  color: #fff;
}
.header-effect-6 [data-item='title']::before {
  background-color: #ff8405;
}
.header-effect-7 [data-item='subTitle'] {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  background-color: #ff8405;
  color: #fff !important;
}
.btn-effect-2 {
  background-color: transparent;
  border: 1px solid #ff8405;
  color: #ff8405;
}
.btn-effect-2:hover {
  background-color: #ff8405;
}
.uk-button.btn-effect-5 {
  background-color: #ff8405;
  box-shadow: 0 0 15px rgba(255, 132, 5, 0.8);
}
.header-effect-3 [data-item='title']::after {
  background: #ff8405;
}
.header-effect-6 [data-item='title']::before {
  background-color: #ff8405;
}
#a1100a0d83afc17 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ad4eba5ddbaba1e .sidebar {
  width: 300px;
  margin-left: 20px;
}
#ad4eba5ddbaba1e .sidebar.left {
  margin-left: 0;
  margin-right: 20px;
}
@media (max-width: 640px) {
  #ad4eba5ddbaba1e .sidebar {
    width: 100%;
    margin: 0 0 15px;
  }
}
#ad4eba5ddbaba1e .data-list .uk-card {
  cursor: pointer !important;
}
#ad4eba5ddbaba1e .data-list .uk-card img {
  max-height: 300px;
}
#ad4eba5ddbaba1e .data-list .uk-card:hover {
  background: #fafafa;
}
#ad4eba5ddbaba1e .data-list .uk-card:hover .uk-h4 {
  color: #ffb804;
}
#ad4eba5ddbaba1e .data-list .uk-card .uk-card-media-left img {
  transition: all .3s ease;
}
#ad4eba5ddbaba1e .data-list .uk-card .uk-card-media-left:hover img {
  transform: scale(1.05);
}
#ad4eba5ddbaba1e .data-list .uk-card-media-left {
  border-radius: 4px;
  overflow: hidden;
}
#ad4eba5ddbaba1e .search-form {
  position: relative;
  overflow: hidden;
  background: #fff;
  display: block;
}
#ad4eba5ddbaba1e .search-form input.search-input {
  width: 100%;
  height: 34px;
  padding: 5px 52px 5px 10px;
  font-size: 14px;
  color: #333;
  border: 1px solid #efefef;
}
#ad4eba5ddbaba1e .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: #ff8405;
  cursor: pointer;
}
#ad4eba5ddbaba1e .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;
}
#ad4eba5ddbaba1e .uk-card .category:hover {
  background: #ff8405;
}
#ad4eba5ddbaba1e .accordion-menu {
  width: 100%;
}
#ad4eba5ddbaba1e .accordion-menu ul ul.submenu,
#ad4eba5ddbaba1e .accordion-menu ul ul.submenu li ul.submenu {
  background: transparent;
}
#ad4eba5ddbaba1e .accordion-menu-header {
  padding: 10px 10px 0;
  border-bottom: 1px solid #ececec;
}
#ad4eba5ddbaba1e .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;
}
#ad4eba5ddbaba1e .accordion-menu > ul > li > a {
  background: #fff;
  font-size: 14px;
  border-bottom: 1px solid #ececec;
}
#ad4eba5ddbaba1e .accordion-menu .menu-item.active > a {
  background: #ff8405;
  color: #fff;
}
#ad4eba5ddbaba1e .accordion-menu li a:hover {
  background-color: #ff8405;
  color: #fff;
  border: none;
}
#ad4eba5ddbaba1e .accordion-menu .submenu-indicator {
  cursor: pointer;
  position: absolute;
  font-size: 20px;
  line-height: 40px;
  padding: 0 20px;
  right: 0;
}
#ad4eba5ddbaba1e .phone {
  display: block;
  font-size: 24px;
  font-weight: bold;
}
#ad4eba5ddbaba1e .hot-list,
#ad4eba5ddbaba1e .new-list {
  padding: 12px;
}
#ad4eba5ddbaba1e .new-list a:hover,
#ad4eba5ddbaba1e .hot-list a:hover {
  color: #ffb804;
}
#ad4eba5ddbaba1e .hot-item .thumb {
  display: inline-block;
  width: 100px;
  overflow: hidden;
  margin-right: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
#ad4eba5ddbaba1e .hot-item:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  transition: all 0.3s ease-out 0s;
}
#ad4eba5ddbaba1e .hot-item:hover a {
  color: #ffb804;
}
#ad4eba5ddbaba1e .panel-title {
  position: relative;
  padding-left: 10px;
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
#ad4eba5ddbaba1e .panel-title::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 16px;
  border-radius: 3px;
  background: #ff8405;
  content: "";
}
#ad4eba5ddbaba1e .content-header {
  padding-bottom: 10px;
}
#ad4eba5ddbaba1e .item-title {
  color: #333;
}
#ad4eba5ddbaba1e input::placeholder {
  color: #999;
}
#ad4eba5ddbaba1e .datetime {
  color: #999;
}
#ad4eba5ddbaba1e .new-item a {
  padding-left: 25px;
}
#ad4eba5ddbaba1e .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;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#ad4eba5ddbaba1e [data-item*=".abstract"], #ad4eba5ddbaba1e [data-item*=".abstract"] a {show: true;}#ad4eba5ddbaba1e [data-item*=".subTitle"], #ad4eba5ddbaba1e [data-item*=".subTitle"] a {show: true;}#ad4eba5ddbaba1e [data-item*=".category"], #ad4eba5ddbaba1e [data-item*=".category"] a {show: true;}#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a4f8fab0a3af7ed .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a874badf55a4971 .sidebar {
  width: 300px;
  margin-left: 20px;
}
#a874badf55a4971 .sidebar.left {
  margin-left: 0;
  margin-right: 20px;
}
#a874badf55a4971 .abstract {
  white-space: pre-wrap;
}
@media (max-width: 640px) {
  #a874badf55a4971 .sidebar {
    width: 100%;
    margin: 0 0 15px;
  }
  #a874badf55a4971 .uk-container {
    padding: 0;
  }
  #a874badf55a4971 .sidebar {
    padding: 10px;
  }
}
#a874badf55a4971 .search-form {
  position: relative;
  overflow: hidden;
  background: #fff;
  display: block;
}
#a874badf55a4971 .search-form .search-input {
  width: 100%;
  height: 34px;
  padding: 5px 52px 5px 10px;
  font-size: 14px;
  color: #333;
  border: 1px solid #efefef;
}
#a874badf55a4971 .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: #ff8405;
  cursor: pointer;
}
#a874badf55a4971 .content-tags a {
  display: inline-block;
  margin: 0 10px 5px 0;
  padding: 5px 15px;
  font-size: 14px;
  line-height: 1.2;
  color: #666;
  border: 1px solid #999;
  border-radius: 3px;
  transition: all .3s ease;
}
#a874badf55a4971 .content-tags a:hover {
  background: #ff8405;
  color: #fff;
  border-color: #ff8405;
}
#a874badf55a4971 .abstract,
#a874badf55a4971 .copyright {
  margin: 15px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #999;
  border: 1px solid #efefef;
  background: #fbfbfb;
  border-radius: 3px;
}
#a874badf55a4971 .copyright a {
  color: #999;
  word-break: break-all;
}
#a874badf55a4971 .detail-content {
  font-size: 16px;
  color: #444;
}
#a874badf55a4971 .detail-content img {
  margin-bottom: 10px;
}
#a874badf55a4971 .detail-content table {
  font-size: 13px;
}
#a874badf55a4971 .phone {
  display: block;
  font-size: 24px;
  font-weight: bold;
}
#a874badf55a4971 .hot-list,
#a874badf55a4971 .new-list {
  padding: 12px;
}
#a874badf55a4971 .new-list a:hover,
#a874badf55a4971 .hot-list a:hover {
  color: #ffb804;
}
#a874badf55a4971 .hot-item .thumb {
  display: inline-block;
  width: 100px;
  overflow: hidden;
  margin-right: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
#a874badf55a4971 .hot-item:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  transition: all 0.3s ease-out 0s;
}
#a874badf55a4971 .hot-item:hover a {
  color: #ffb804;
}
#a874badf55a4971 .panel-title {
  position: relative;
  padding-left: 10px;
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
#a874badf55a4971 .panel-title::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 16px;
  border-radius: 3px;
  background: #ff8405;
  content: "";
}
#a874badf55a4971 .content-header {
  padding-bottom: 10px;
}
#a874badf55a4971 .item-title {
  color: #333;
}
#a874badf55a4971 input::placeholder {
  color: #999;
}
#a874badf55a4971 .datetime {
  color: #999;
}
#a874badf55a4971 .new-item a {
  padding-left: 25px;
}
#a874badf55a4971 .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;
}
#a874badf55a4971 .siblings a {
  color: #444;
  line-height: 2;
}
#a874badf55a4971 .siblings a:hover {
  color: #ffb804;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a9495a9955a46ec .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a48dcad7b7a9664 {
  /* mobile */
}
#a48dcad7b7a9664 .category-list {
  background: #fff;
  padding: 20px 40px;
}
#a48dcad7b7a9664 .goods-sort {
  padding: 30px 0 25px;
}
#a48dcad7b7a9664 .goods {
  padding-bottom: 40px;
}
#a48dcad7b7a9664 .goods-sort .category {
  border-bottom: 1px dashed #dedede;
  position: relative;
}
#a48dcad7b7a9664 .goods-sort .name {
  flex-shrink: 0;
  margin-right: 12px;
}
#a48dcad7b7a9664 .goods-sort .category-items {
  overflow: hidden;
  margin-bottom: 4px;
}
#a48dcad7b7a9664 .goods-sort .category-item {
  float: left;
  color: #333;
  margin-right: 30px;
  margin-bottom: 16px;
  font-size: 14px;
}
#a48dcad7b7a9664 .goods-sort .category-item.active {
  color: red;
}
#a48dcad7b7a9664 .sorts {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  line-height: 1;
  border-bottom: 1px solid #dedede;
}
#a48dcad7b7a9664 .sorts .name {
  font-size: 14px;
  color: #999;
  margin-right: 28px;
}
#a48dcad7b7a9664 .sorts .sort {
  display: inline-block;
  margin-right: 30px;
  font-size: 14px;
  color: #333;
}
#a48dcad7b7a9664 .sorts .sort.active span {
  color: #e4393c;
}
#a48dcad7b7a9664 .sorts .fa {
  color: #999;
}
#a48dcad7b7a9664 .sorts .fa.active {
  color: #e4393c;
}
#a48dcad7b7a9664 .sorts .sort-icon {
  display: inline-block;
  margin-left: 6px;
}
#a48dcad7b7a9664 .sorts .sort-icon i {
  display: block;
  font-size: 12px;
  line-height: 1;
  height: 2px;
}
#a48dcad7b7a9664 .goods .item {
  color: #333;
  font-weight: 400;
}
#a48dcad7b7a9664 .img-alter {
  display: none;
}
#a48dcad7b7a9664 .goods .item:hover .img-main {
  display: none;
}
#a48dcad7b7a9664 .goods .item:hover .img-alter {
  display: block;
}
#a48dcad7b7a9664 .goods .item .title {
  padding: 0 10px;
  margin-bottom: 4px;
  line-height: 20px;
  font-weight: bolder;
  transition: all .1s ease;
}
#a48dcad7b7a9664 .goods .item .title:hover {
  color: #d4282d;
}
#a48dcad7b7a9664 .goods .item .price {
  color: #d4282d;
  line-height: 22px;
  font-size: 13px;
  font-weight: bold;
  font-family: "Heiti SC", "Lucida Grande", "Hiragino Sans GB", "Hiragino Sans GB W3", verdana;
}
#a48dcad7b7a9664 .goods .item hr {
  width: 60%;
  display: block;
  height: 1px;
  padding: 0;
  margin: 6px auto 14px;
  border: 0;
  border-top: 1px solid #e8e8e8;
}
#a48dcad7b7a9664 .goods .item .subTitle {
  padding: 0 10px;
  line-height: 18px;
  color: #999;
}
#a48dcad7b7a9664 .goods .origin-price {
  display: inline-block;
  margin-left: 6px;
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}
#a48dcad7b7a9664 .uk-card .uk-card-media {
  background: #fff;
}
#a48dcad7b7a9664 .uk-card:hover {
  background-color: #f4f0e9;
}
#a48dcad7b7a9664 .sort-time.active .fa {
  color: #e4393c;
}
#a48dcad7b7a9664 * + .uk-grid-margin-small,
#a48dcad7b7a9664 .uk-grid + .uk-grid-small,
#a48dcad7b7a9664 .uk-grid-small > .uk-grid-margin {
  margin-top: 50px;
}
@media (max-width: 640px) {
  #a48dcad7b7a9664 .category-list,
  #a48dcad7b7a9664 .goods-sort {
    padding: 10px 0;
  }
  #a48dcad7b7a9664 .goods-sort .category-item {
    margin-bottom: 8px;
  }
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a9495a9955a46ec .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a2971a3404af2b6 .video-box,
#a2971a3404af2b6 .preview-box {
  margin-bottom: 20px;
  border: 1px solid #eee;
}
#a2971a3404af2b6 .video-box video {
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
#a2971a3404af2b6 .goods-slider {
  width: 430px;
  max-width: 100%;
}
#a2971a3404af2b6 .preview-box img {
  width: 100%;
}
#a2971a3404af2b6 .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;
}
#a2971a3404af2b6 .zoom-indicator {
  background-color: #fff;
  opacity: .3;
  position: absolute;
  right: 0;
  bottom: 0;
}
#a2971a3404af2b6 .zoom-indicator i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
#a2971a3404af2b6 .thumb-box {
  width: 100%;
  position: relative;
}
#a2971a3404af2b6 .thumb-box .btn {
  width: 22px;
  height: 32px;
}
#a2971a3404af2b6 .thumb-box .btn-next {
  background: url(/resources/sys/img/section/btn_next.png) no-repeat center center;
}
#a2971a3404af2b6 .thumb-box .btn-prev {
  background: url(/resources/sys/img/section/btn_prev.png) no-repeat center center;
}
#a2971a3404af2b6 .thumb-list {
  overflow: hidden;
}
#a2971a3404af2b6 .thumb-list ul {
  width: 100000px;
}
#a2971a3404af2b6 .thumb-list ul li {
  list-style: none;
  float: left;
  margin: 0 4px;
  cursor: pointer;
  position: relative;
}
#a2971a3404af2b6 .thumb-list ul li img {
  width: 68px;
  border: 2px solid #fff;
}
#a2971a3404af2b6 .thumb-list ul li.active img {
  border-color: #df3033;
}
#a2971a3404af2b6 .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;
}
#a2971a3404af2b6 .zoom-box img {
  max-width: initial;
}
#a2971a3404af2b6 .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;
}
#a2971a3404af2b6 .thumb-list ul li.thumb-video:hover::after {
  opacity: 1;
  background-size: 35px;
}
#a2971a3404af2b6 .goods-intro .title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}
#a2971a3404af2b6 .goods-intro .desc {
  font-size: 14px;
  line-height: 20px;
  color: #999;
}
#a2971a3404af2b6 .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;
}
#a2971a3404af2b6 .goods-intro .price span {
  line-height: 30px;
}
#a2971a3404af2b6 .goods-intro .price .label {
  width: 55px;
  font-size: 13px;
  float: left;
  color: #666;
}
#a2971a3404af2b6 .price .present-price {
  display: inline-block;
  font-weight: 700;
  margin-right: 1px;
  height: 30px;
  font-size: 28px;
  line-height: 30px;
  margin-left: 2px;
  color: #df3033;
  font-family: "Heiti SC", "Lucida Grande", "Hiragino Sans GB", "Hiragino Sans GB W3", verdana;
}
#a2971a3404af2b6 .price .present-price .rmb {
  margin-left: 0;
  line-height: 30px;
  color: #df3033;
  font-size: 18px;
  float: left;
}
#a2971a3404af2b6 .price .origin-price {
  display: inline-block;
  font-size: 13px;
  color: #999;
  line-height: 24px;
}
#a2971a3404af2b6 .line-through {
  text-decoration: line-through;
}
#a2971a3404af2b6 .price hr {
  margin: 10px 20px 10px 0;
  overflow: hidden;
  border: none;
  height: 1px;
  border-bottom: 1px dashed #d2d2d2;
}
#a2971a3404af2b6 .price .policy-info {
  margin-left: 65px;
  padding-top: 2px;
  line-height: 20px;
  color: #666;
  display: block;
}
#a2971a3404af2b6 .price .policy-info li {
  display: inline-block;
  position: relative;
  margin-right: 30px;
  line-height: 24px;
}
#a2971a3404af2b6 .price .policy-info li::before {
  content: '･ ';
  position: absolute;
  left: -10px;
  top: 0;
}
#a2971a3404af2b6 .number {
  margin-top: 20px;
  margin-left: 10px;
}
#a2971a3404af2b6 .number .name {
  line-height: 30px;
  width: 54px;
}
#a2971a3404af2b6 .number .select-num {
  display: inline-block;
  border: 1px solid #ddd;
  overflow: hidden;
  line-height: 30px;
}
#a2971a3404af2b6 .select-num .btn {
  position: relative;
  width: 36px;
  height: 30px;
  line-height: 28px;
  background: #fff;
  text-align: center;
  color: #888;
  cursor: pointer;
}
#a2971a3404af2b6 .select-num .btn.disable {
  cursor: not-allowed;
  color: #ececec;
}
#a2971a3404af2b6 .select-num i {
  line-height: 30px;
}
#a2971a3404af2b6 .select-num .less {
  float: left;
  border-right: 1px solid #ddd;
}
#a2971a3404af2b6 .select-num .more {
  float: right;
  border-left: 1px solid #ddd;
}
#a2971a3404af2b6 .select-num input {
  border: none;
  text-align: center;
  font-size: 12px;
  color: #333;
  width: 60px;
  height: 28px;
}
#a2971a3404af2b6 .buttons {
  margin: 30px 0 0 12px;
}
#a2971a3404af2b6 .buttons .button {
  display: inline-block;
  margin-right: 8px;
  width: 168px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  color: #df3033;
  border: 1px solid #df3033;
  background-color: #fdf1f3;
  text-align: center;
  border-radius: 2px;
}
#a2971a3404af2b6 .buttons .button.disable {
  opacity: .3;
}
#a2971a3404af2b6 .buttons .button-cart {
  color: #fff;
  border: 1px solid #df3033;
  background-color: #df3033;
}
#a2971a3404af2b6 .promote-goods {
  margin-top: 40px;
  border: 1px solid #e8e8e8;
}
#a2971a3404af2b6 .promote-goods .price {
  color: #d62525;
  line-height: 22px;
}
#a2971a3404af2b6 .promote-goods .promote-title {
  height: 44px;
  line-height: 44px;
  padding-left: 15px;
  font-size: 17px;
  position: relative;
  background-color: #f5f5f5;
}
#a2971a3404af2b6 .promote-goods .uk-slider {
  padding: 10px 50px;
}
#a2971a3404af2b6 .hot-list .img-wrap {
  display: block;
}
#a2971a3404af2b6 .right {
  width: 298px;
  border: 1px solid #e8e8e8;
}
#a2971a3404af2b6 .right .title {
  line-height: 40px;
  background-color: #f5f5f5;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid #e8e8e8;
}
#a2971a3404af2b6 .left .nav-wrap {
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  height: 44px;
}
#a2971a3404af2b6 .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;
}
#a2971a3404af2b6 .left .detail-nav-tab .item a {
  color: #555;
  font-weight: 500;
  display: block;
}
#a2971a3404af2b6 .left .detail-nav-tab .item.uk-active {
  background: #fff;
  border-top: 3px solid #df3033;
  background-color: #fff;
  border-bottom: 1px solid #fff;
  line-height: 40px;
}
#a2971a3404af2b6 .left .detail-nav-tab .item.uk-active a {
  color: #df3033;
  cursor: default;
}
#a2971a3404af2b6 .hot-list .item {
  margin: 24px 24px 0;
  border-bottom: 1px solid #e8e8e8;
}
#a2971a3404af2b6 .hot-list .item:last-child {
  border-bottom: none;
}
#a2971a3404af2b6 .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;
}
#a2971a3404af2b6 .hot-list .item .goods-title:hover {
  color: #df3033;
}
#a2971a3404af2b6 .hot-list .item .price {
  font-size: 14px;
  line-height: 1;
  color: #df3033;
  text-align: center;
  font-weight: bolder;
  font-family: "Heiti SC", "Lucida Grande", "Hiragino Sans GB", "Hiragino Sans GB W3", verdana;
}
#a2971a3404af2b6 .hot-list .item .origin-price {
  text-decoration: line-through;
  color: #666;
}
#a2971a3404af2b6 .hot-list .item .goods-info {
  padding: 0 5px 18px;
}
@media (max-width: 640px) {
  #a2971a3404af2b6 .right {
    width: 100%;
  }
  #a2971a3404af2b6 .zoom-indicator {
    display: none;
  }
  #a2971a3404af2b6 .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;
  }
  #a2971a3404af2b6 .goods-intro .buttons .button {
    margin: 0;
    width: 50%;
    font-size: 14px;
    border-radius: 0;
  }
  #a2971a3404af2b6 .goods-intro .buttons .button-buy {
    border: 0;
    background: #fff;
  }
}
#a2971a3404af2b6 .sku {
  padding: 20px 0 0 10px;
}
#a2971a3404af2b6 .sku .sku-items .name {
  width: 54px;
  line-height: 32px;
  float: left;
}
#a2971a3404af2b6 .sku .sku-item {
  float: left;
  position: relative;
  margin-right: 10px;
  margin-bottom: 15px;
  vertical-align: middle;
  line-height: 28px;
  border: 1px solid #ddd;
  font-size: 13px;
  color: #444;
  cursor: pointer;
  user-select: none;
}
#a2971a3404af2b6 .coupons {
  margin-left: 55px;
}
#a2971a3404af2b6 .sku .sku-item.disable {
  border: 1px dashed #ccc;
  opacity: .7;
  cursor: not-allowed;
}
#a2971a3404af2b6 .sku .sku-item img {
  width: 40px;
  height: 40px;
}
#a2971a3404af2b6 .sku .sku-item::before {
  content: '';
  position: absolute;
  left: -1px;
  top: -1px;
  right: -1px;
  bottom: -1px;
  z-index: 10;
}
#a2971a3404af2b6 .sku .sku-item span {
  padding: 0 10px;
}
#a2971a3404af2b6 .sku .sku-item.active::before {
  border: 2px solid #FF0036;
}
#a2971a3404af2b6 .sku .sku-item.active i {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  overflow: hidden;
  text-indent: -99em;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAMAAABhq6zVAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAJUExURUxpcf8AN////7f4NBoAAAABdFJOUwBA5thmAAAAMUlEQVQI103MAQ4AMAQEQev/j66i6YrEXIKIX9jY2NjYyDmhZnlCo5rdyWvebfYDVAcSmABbA7WD+QAAAABJRU5ErkJggg==);
  color: black;
}
#a2971a3404af2b6 .goods-stock {
  line-height: 30px;
}
#a2971a3404af2b6 .close {
  width: 20px;
  height: 20px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAAoFJREFUaAXt2jtOw0AQANAYmigtBRItBYKGqyRNiiQKkuWKggMgQQHkBiAkBOmcIk1OALcACpRrpEmImTE2sqJ4vfbOzBppXcSfeHfnjT/SjtxouMVlwGXAZcBlwGXg/2RgOBzu9Xq9qyiKvLpGDfFdBkGwrxPfjuokxC6Xy1fA3kCnz3VE9/v9B4hrtFgs3nTQSvBqtTqHhJwmSfHrhkbser3GGBuAPgH0RRJr7koJDsPwDlqOM61rg85iMT7P88J2u32diXXrZuFzibcxXllo7Wd6GE8mkwAGiTLHxDZzsGfdbve7KIhCMHZQJ7QJFi1a4LqgTbGlwLbRFNjSYFtoKmwlsDSaElsZLIWmxhqBudEcWGMwF5oLSwKmRnNiycBUaG4sKdgULYElB1dFS2FZwGXRklg2sC5aGssKLkIPBoP7dPIeB/I7n9Wa4uH5VRft2VLVAXKmlp/Q33HaZzJ5Z8fieOxgHCQHjX+llQoRbDxePKrAT4J+h6H+rixszzudzpFOpYIqRGVNi2oQ7AefWVhlsXj4cDabPWEycEdiEQFvvo0BNs/gRAuD7OBNLL6g8DYGsJVqKCt4GxZKqfELCqueNtBsz44Km97OOW9v1hIwC1gHawtNDi6DtYEmBVfBSqPJwCZYSTQJmAIrhTYGU2Il0EZgDiw3ujKYE8uJrgSWwHKhS4MlsRzoUmAbWGq0NtgmlhKtBa4DlgpdCK4TlgKtnA/jF242SqkpLG+NXw9tm0/DxbnJa5MeV4JbrdYLdP6BJ0uWUtPgVOtNNOx/NZvNR1Ubrf/wcz640qPpdLqr1UD4pKSIcOv7/oHw0G44lwGXAZcBlwGXAZeBkhn4AcrY4LAgdyEWAAAAAElFTkSuQmCC) no-repeat 50%;
  background-size: 100% 100%;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
#a2971a3404af2b6 .quan-item {
  position: relative;
  display: inline-block;
  margin-right: 5px;
  padding: 0 9px 0 12px;
  border-top: 1px solid #e4393c;
  border-bottom: 1px solid #e4393c;
  height: 18px;
  line-height: 16px;
  color: #e4393c;
  font-size: 10px;
  background: #fff;
  margin-bottom: 4px;
}
#a2971a3404af2b6 .quan-item:after,
#a2971a3404af2b6 .quan-item:before {
  content: "";
  position: absolute;
  top: -1px;
  height: 18px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAkCAMAAACpD3pbAAAAPFBMVEUAAAD////kOTzqaGr+9vb4zc32vL3sdXfnTE/mRUfxmpz87O3yn6HqZ2npXWDlQEP97e33xsf3xsbxl5nHV2NIAAAAAXRSTlMAQObYZgAAAJpJREFUOMvllEsSwiAQRMnjF8g/3v+uKhIrjhHK0l16B4+C7hlALS07qSyS2kVlKnHmCpqdNvwYwTdY6yKGX7AeKtb+jmN3jLuYMMEd5XYBUMZ6cO/BHHhr7ut6wizxHOhvM+kUT5S5I77ZsGWU1kbsExsmiSdMBVc3l9a0tJaDdR+CVcryWtRBFLXYkku1oae955Xnv5Y+j/UKs1MGwyraxf4AAAAASUVORK5CYII=);
  background-size: 15px 18px;
  background-repeat: no-repeat;
}
#a2971a3404af2b6 .quan-item:before {
  left: 0;
  width: 7px;
}
#a2971a3404af2b6 .quan-item:after {
  right: 0;
  width: 4px;
  background-position: -11px 0;
}
#a2971a3404af2b6 .price-wrap {
  margin-left: 55px;
}
#a2971a3404af2b6 .member-price-wrap svg {
  display: inline-block;
  margin-right: 6px;
}
#a2971a3404af2b6 .member-price-wrap .num {
  color: #333;
}
#a2971a3404af2b6 .member-price-wrap a {
  color: #555;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a1100a0d83afc17 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a25eca7822a26b5 .sidebar {
  width: 300px;
  margin-left: 20px;
}
#a25eca7822a26b5 .sidebar.left {
  margin-left: 0;
  margin-right: 20px;
}
@media (max-width: 640px) {
  #a25eca7822a26b5 .sidebar {
    width: 100%;
    margin: 0 0 15px;
  }
}
#a25eca7822a26b5 .data-list .uk-card {
  cursor: pointer !important;
}
#a25eca7822a26b5 .data-list .uk-card img {
  max-height: 300px;
}
#a25eca7822a26b5 .data-list .uk-card:hover {
  background: #fafafa;
}
#a25eca7822a26b5 .data-list .uk-card:hover .uk-h4 {
  color: #ffb804;
}
#a25eca7822a26b5 .data-list .uk-card .uk-card-media-left img {
  transition: all .3s ease;
}
#a25eca7822a26b5 .data-list .uk-card .uk-card-media-left:hover img {
  transform: scale(1.05);
}
#a25eca7822a26b5 .data-list .uk-card-media-left {
  border-radius: 4px;
  overflow: hidden;
}
#a25eca7822a26b5 .search-form {
  position: relative;
  overflow: hidden;
  background: #fff;
  display: block;
}
#a25eca7822a26b5 .search-form input.search-input {
  width: 100%;
  height: 34px;
  padding: 5px 52px 5px 10px;
  font-size: 14px;
  color: #333;
  border: 1px solid #efefef;
}
#a25eca7822a26b5 .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: #ff8405;
  cursor: pointer;
}
#a25eca7822a26b5 .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;
}
#a25eca7822a26b5 .uk-card .category:hover {
  background: #ff8405;
}
#a25eca7822a26b5 .accordion-menu {
  width: 100%;
}
#a25eca7822a26b5 .accordion-menu ul ul.submenu,
#a25eca7822a26b5 .accordion-menu ul ul.submenu li ul.submenu {
  background: transparent;
}
#a25eca7822a26b5 .accordion-menu-header {
  padding: 10px 10px 0;
  border-bottom: 1px solid #ececec;
}
#a25eca7822a26b5 .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;
}
#a25eca7822a26b5 .accordion-menu > ul > li > a {
  background: #fff;
  font-size: 14px;
  border-bottom: 1px solid #ececec;
}
#a25eca7822a26b5 .accordion-menu .menu-item.active > a {
  background: #ff8405;
  color: #fff;
}
#a25eca7822a26b5 .accordion-menu li a:hover {
  background-color: #ff8405;
  color: #fff;
  border: none;
}
#a25eca7822a26b5 .accordion-menu .submenu-indicator {
  cursor: pointer;
  position: absolute;
  font-size: 20px;
  line-height: 40px;
  padding: 0 20px;
  right: 0;
}
#a25eca7822a26b5 .phone {
  display: block;
  font-size: 24px;
  font-weight: bold;
}
#a25eca7822a26b5 .hot-list,
#a25eca7822a26b5 .new-list {
  padding: 12px;
}
#a25eca7822a26b5 .new-list a:hover,
#a25eca7822a26b5 .hot-list a:hover {
  color: #ffb804;
}
#a25eca7822a26b5 .hot-item .thumb {
  display: inline-block;
  width: 100px;
  overflow: hidden;
  margin-right: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
#a25eca7822a26b5 .hot-item:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  transition: all 0.3s ease-out 0s;
}
#a25eca7822a26b5 .hot-item:hover a {
  color: #ffb804;
}
#a25eca7822a26b5 .panel-title {
  position: relative;
  padding-left: 10px;
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
#a25eca7822a26b5 .panel-title::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 16px;
  border-radius: 3px;
  background: #ff8405;
  content: "";
}
#a25eca7822a26b5 .content-header {
  padding-bottom: 10px;
}
#a25eca7822a26b5 .item-title {
  color: #333;
}
#a25eca7822a26b5 input::placeholder {
  color: #999;
}
#a25eca7822a26b5 .datetime {
  color: #999;
}
#a25eca7822a26b5 .new-item a {
  padding-left: 25px;
}
#a25eca7822a26b5 .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;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a25eca7822a26b5 [data-item*=".abstract"], #a25eca7822a26b5 [data-item*=".abstract"] a {show: true;}#a25eca7822a26b5 [data-item*=".subTitle"], #a25eca7822a26b5 [data-item*=".subTitle"] a {show: true;}#a25eca7822a26b5 [data-item*=".category"], #a25eca7822a26b5 [data-item*=".category"] a {show: true;}#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a9495a9955a46ec .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4590ae033ae8c5 .post-cate {
  position: absolute;
  margin-left: 0;
  left: 30px;
  top: 0;
  padding: 0 10px;
  line-height: 20px;
  font-size: 12px;
  z-index: 100;
  background: #007bff;
  color: #fff;
}
#a4590ae033ae8c5 .new-list .uk-card {
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 15px;
}
#a4590ae033ae8c5 .new-list .uk-cover-container {
  min-height: 80px;
}
#a4590ae033ae8c5 .new-list .uk-card:first-of-type {
  padding-top: 0;
}
#a4590ae033ae8c5 .new-list .uk-card:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
#a4590ae033ae8c5 .main-item::before {
  content: " ";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.95)));
  /* background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.95) 100%); */
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.95) 100%);
  /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.95) 100%); */
}
#a4590ae033ae8c5 .main-item::after {
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  content: '';
  -webkit-transition: all ease 500ms;
  -o-transition: all ease 500ms;
  transition: all ease 500ms;
}
#a4590ae033ae8c5 .main-item:hover::after {
  opacity: 1;
}
#a4590ae033ae8c5 .main-info {
  z-index: 100;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a9c6da556daa63f .img-wrap {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
}
#a6a18af4e2a5279 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a6a18af4e2a5279  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#a6a18af4e2a5279:hover * {color: #ffffff }
                            #a6a18af4e2a5279:hover .line{border-color: #ffffff }#a45c6a5f3aa8f21 {
  overflow: hidden;
}
#a45c6a5f3aa8f21 .img-wrap {
  transition: all 0.3s ease-in;
}
#a45c6a5f3aa8f21 .img-wrap:hover {
  transform: scale(1.1);
}
#a9031af613aad45 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a9031af613aad45  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#a9031af613aad45:hover * {color: #ffffff }
                            #a9031af613aad45:hover .line{border-color: #ffffff }#a329aaba48a0102 {
  overflow: hidden;
}
#a329aaba48a0102 .img-wrap {
  transition: all 0.3s ease-in;
}
#a329aaba48a0102 .img-wrap:hover {
  transform: scale(1.1);
}
#a6b90aff6ba1d69 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a6b90aff6ba1d69  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#a6b90aff6ba1d69:hover * {color: #ffffff }
                            #a6b90aff6ba1d69:hover .line{border-color: #ffffff }#abcd7a413ba0991 {
  overflow: hidden;
}
#abcd7a413ba0991 .img-wrap {
  transition: all 0.3s ease-in;
}
#abcd7a413ba0991 .img-wrap:hover {
  transform: scale(1.1);
}
#a45e7a52e1a5bbc > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a45e7a52e1a5bbc  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#a45e7a52e1a5bbc:hover * {color: #ffffff }
                            #a45e7a52e1a5bbc:hover .line{border-color: #ffffff }#aa789a7327ae170 {
  overflow: hidden;
}
#aa789a7327ae170 .img-wrap {
  transition: all 0.3s ease-in;
}
#aa789a7327ae170 .img-wrap:hover {
  transform: scale(1.1);
}
#ae029a3ca7ab0fe > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ae029a3ca7ab0fe  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#ae029a3ca7ab0fe:hover * {color: #ffffff }
                            #ae029a3ca7ab0fe:hover .line{border-color: #ffffff }#ad8d9aee54ad3fc {
  overflow: hidden;
}
#ad8d9aee54ad3fc .img-wrap {
  transition: all 0.3s ease-in;
}
#ad8d9aee54ad3fc .img-wrap:hover {
  transform: scale(1.1);
}
#a07dca300ea75b9 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a07dca300ea75b9  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#a07dca300ea75b9:hover * {color: #ffffff }
                            #a07dca300ea75b9:hover .line{border-color: #ffffff }#a2fe3a90bfaf4e7 {
  overflow: hidden;
}
#a2fe3a90bfaf4e7 .img-wrap {
  transition: all 0.3s ease-in;
}
#a2fe3a90bfaf4e7 .img-wrap:hover {
  transform: scale(1.1);
}
#a6a0fa0f88a363b > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a6a0fa0f88a363b  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#a6a0fa0f88a363b:hover * {color: #ffffff }
                            #a6a0fa0f88a363b:hover .line{border-color: #ffffff }#a3619aa5aea2ed9 {
  overflow: hidden;
}
#a3619aa5aea2ed9 .img-wrap {
  transition: all 0.3s ease-in;
}
#a3619aa5aea2ed9 .img-wrap:hover {
  transform: scale(1.1);
}
#aa180a26b5a278b > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#aa180a26b5a278b  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#aa180a26b5a278b:hover * {color: #ffffff }
                            #aa180a26b5a278b:hover .line{border-color: #ffffff }#acbdeaad13aec0c {
  overflow: hidden;
}
#acbdeaad13aec0c .img-wrap {
  transition: all 0.3s ease-in;
}
#acbdeaad13aec0c .img-wrap:hover {
  transform: scale(1.1);
}
#a79acab115ad832 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a79acab115ad832  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#a79acab115ad832:hover * {color: #ffffff }
                            #a79acab115ad832:hover .line{border-color: #ffffff }#ae448a1d3aa4104 {
  overflow: hidden;
}
#ae448a1d3aa4104 .img-wrap {
  transition: all 0.3s ease-in;
}
#ae448a1d3aa4104 .img-wrap:hover {
  transform: scale(1.1);
}
#a81b3a1243a6e46 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a81b3a1243a6e46  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#a81b3a1243a6e46:hover * {color: #ffffff }
                            #a81b3a1243a6e46:hover .line{border-color: #ffffff }#a50b0ac2eaab311 {
  overflow: hidden;
}
#a50b0ac2eaab311 .img-wrap {
  transition: all 0.3s ease-in;
}
#a50b0ac2eaab311 .img-wrap:hover {
  transform: scale(1.1);
}
#a5b88a1ceeaf2a1 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a5b88a1ceeaf2a1  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#a5b88a1ceeaf2a1:hover * {color: #ffffff }
                            #a5b88a1ceeaf2a1:hover .line{border-color: #ffffff }#aa413a8d0daa176 {
  overflow: hidden;
}
#aa413a8d0daa176 .img-wrap {
  transition: all 0.3s ease-in;
}
#aa413a8d0daa176 .img-wrap:hover {
  transform: scale(1.1);
}
#a5fc1ae5deae24f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a5fc1ae5deae24f  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#a5fc1ae5deae24f:hover * {color: #ffffff }
                            #a5fc1ae5deae24f:hover .line{border-color: #ffffff }#aedeba0551a62d0 {
  overflow: hidden;
}
#aedeba0551a62d0 .img-wrap {
  transition: all 0.3s ease-in;
}
#aedeba0551a62d0 .img-wrap:hover {
  transform: scale(1.1);
}
#a4590ae033ae8c5 [data-item*=".abstract"], #a4590ae033ae8c5 [data-item*=".abstract"] a {show: true;}#a4590ae033ae8c5 [data-item*=".subTitle"], #a4590ae033ae8c5 [data-item*=".subTitle"] a {show: true;}#a4590ae033ae8c5 [data-item*=".category"], #a4590ae033ae8c5 [data-item*=".category"] a {show: true;}#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#aac13a06d6aba35 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#adb01a405ea57dc .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#ab581a6968ace0c .img-wrap {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a98d0ac021af31f .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#acdcaac95ea3998 .ele-wrap {border-color: #000;color: #fff;font-size: 19px;font-weight: 500;background-color: rgba(255, 132, 5, 1);border-radius: 5px;justify-content: center;border-style: solid;}#acdcaac95ea3998 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(4, 193, 102, 1);}#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#ad7a2af7d8a3083 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#ad0e2a8b53a2ae8 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ad0e2a8b53a2ae8 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ad0e2a8b53a2ae8 .ap-icon {
  margin-right: 6px;
}
#ad0e2a8b53a2ae8 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: bold;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 1px;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  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-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  margin-right: 10px;
  margin-top: 10px;
  margin-left: 10px;
  width: 230px;
  height: 40px;
}
#ad0e2a8b53a2ae8 .menu-list > li.icon-bottom > a,
#ad0e2a8b53a2ae8 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ad0e2a8b53a2ae8 .menu-list > li.icon-bottom > a .ap-icon,
#ad0e2a8b53a2ae8 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ad0e2a8b53a2ae8 .menu-list > li.icon-bottom > a .ap-icon svg,
#ad0e2a8b53a2ae8 .menu-list > li.icon-top > a .ap-icon svg,
#ad0e2a8b53a2ae8 .menu-list > li.icon-bottom > a .ap-icon img,
#ad0e2a8b53a2ae8 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ad0e2a8b53a2ae8 .menu-list > li.icon-right > a .ap-icon,
#ad0e2a8b53a2ae8 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ad0e2a8b53a2ae8 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ad0e2a8b53a2ae8 .menu-list > li:hover > a,
#ad0e2a8b53a2ae8 .menu-list > li.active > a {
  background: #ff8405;
  background-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #ff8405;
  border-top-style: solid;
  border-right-color: #ff8405;
  border-left-color: #ff8405;
  border-bottom-color: #ff8405;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#ad0e2a8b53a2ae8 .menu-list ul,
#ad0e2a8b53a2ae8 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ad0e2a8b53a2ae8 .menu-list ul {
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
}
#ad0e2a8b53a2ae8 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ad0e2a8b53a2ae8 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ad0e2a8b53a2ae8 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a0a57aa838a8485 .uk-grid {
  margin-left: -15px;
}
#a0a57aa838a8485 .uk-grid > * {
  padding-left: 15px;
}
#a0a57aa838a8485 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a0a57aa838a8485 .uk-position-center-left-out {
    left: -30px;
  }
  #a0a57aa838a8485 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a7ce5a2d8bad4e5 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a7ce5a2d8bad4e5  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#a7ce5a2d8bad4e5:hover * {color: #ffffff }
                            #a7ce5a2d8bad4e5:hover .line{border-color: #ffffff }#a5d85a4bfba5fb0 {
  overflow: hidden;
}
#a5d85a4bfba5fb0 .img-wrap {
  transition: all 0.3s ease-in;
}
#a5d85a4bfba5fb0 .img-wrap:hover {
  transform: scale(1.1);
}
#aed04a7e3baf879 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#aed04a7e3baf879  > .ele-wrap:hover {color: #ff8405;}#aed04a7e3baf879:hover * {color: #ff8405 }
                            #aed04a7e3baf879:hover .line{border-color: #ff8405 }#aaa6cac034a1284 {
  overflow: hidden;
}
#aaa6cac034a1284 .img-wrap {
  transition: all 0.3s ease-in;
}
#aaa6cac034a1284 .img-wrap:hover {
  transform: scale(1.1);
}
#ac190a43f5a2853 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ac190a43f5a2853  > .ele-wrap:hover {color: #ff8405;}#ac190a43f5a2853:hover * {color: #ff8405 }
                            #ac190a43f5a2853:hover .line{border-color: #ff8405 }#aee3ca72c5ad778 {
  overflow: hidden;
}
#aee3ca72c5ad778 .img-wrap {
  transition: all 0.3s ease-in;
}
#aee3ca72c5ad778 .img-wrap:hover {
  transform: scale(1.1);
}
#a8986a23e9a4634 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a8986a23e9a4634  > .ele-wrap:hover {color: #ff8405;}#a8986a23e9a4634:hover * {color: #ff8405 }
                            #a8986a23e9a4634:hover .line{border-color: #ff8405 }#a7b37a4a72aba26 {
  overflow: hidden;
}
#a7b37a4a72aba26 .img-wrap {
  transition: all 0.3s ease-in;
}
#a7b37a4a72aba26 .img-wrap:hover {
  transform: scale(1.1);
}
#ae8c7aff74abe56 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ae8c7aff74abe56  > .ele-wrap:hover {color: #ff8405;}#ae8c7aff74abe56:hover * {color: #ff8405 }
                            #ae8c7aff74abe56:hover .line{border-color: #ff8405 }#a722aa1754a9c6c {
  overflow: hidden;
}
#a722aa1754a9c6c .img-wrap {
  transition: all 0.3s ease-in;
}
#a722aa1754a9c6c .img-wrap:hover {
  transform: scale(1.1);
}
#ab103a6e46a3335 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ab103a6e46a3335  > .ele-wrap:hover {color: #ff8405;}#ab103a6e46a3335:hover * {color: #ff8405 }
                            #ab103a6e46a3335:hover .line{border-color: #ff8405 }#a3a88abf2eaed62 {
  overflow: hidden;
}
#a3a88abf2eaed62 .img-wrap {
  transition: all 0.3s ease-in;
}
#a3a88abf2eaed62 .img-wrap:hover {
  transform: scale(1.1);
}
#a9f29a960ea6790 .uk-grid {
  margin-left: -15px;
}
#a9f29a960ea6790 .uk-grid > * {
  padding-left: 15px;
}
#a9f29a960ea6790 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a9f29a960ea6790 .ap-category-filter ul li.active {
  border-color: #ff8405;
  color: #ff8405;
}
#a9f29a960ea6790 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a9f29a960ea6790 .article .info {
  padding: 20px 10px;
  position: relative;
}
#a9f29a960ea6790 .article .info p {
  margin: 10px 0 10px;
}
#a9f29a960ea6790 .article svg {
  fill: currentColor;
}
#a9f29a960ea6790 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#a9f29a960ea6790 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#a9f29a960ea6790 .article.list-icon .info {
  padding-left: 25px;
}
#a9f29a960ea6790 .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#a9f29a960ea6790 .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
}
#a9f29a960ea6790 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a9f29a960ea6790 .article:hover .title {
  color: #ff8405;
}
#a9f29a960ea6790 .article:hover .datetime {
  color: #b6b6b6;
}
#a9f29a960ea6790 .article:hover .category {
  color: #b6b6b6;
}
#a9f29a960ea6790 .article:hover .abstract {
  color: #ff8405;
}
#a9f29a960ea6790 .article:hover .btn_icon {
  color: #ff8405;
}
#a9f29a960ea6790 .article:hover .list_icon {
  color: #b6b6b6;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a5364a40a2ae795 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#ab252a2899ab1b2 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ab252a2899ab1b2 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ab252a2899ab1b2 .ap-icon {
  margin-right: 6px;
}
#ab252a2899ab1b2 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: bold;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 1px;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  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-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  margin-right: 10px;
  margin-top: 10px;
  margin-left: 10px;
  width: 230px;
  height: 40px;
}
#ab252a2899ab1b2 .menu-list > li.icon-bottom > a,
#ab252a2899ab1b2 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ab252a2899ab1b2 .menu-list > li.icon-bottom > a .ap-icon,
#ab252a2899ab1b2 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ab252a2899ab1b2 .menu-list > li.icon-bottom > a .ap-icon svg,
#ab252a2899ab1b2 .menu-list > li.icon-top > a .ap-icon svg,
#ab252a2899ab1b2 .menu-list > li.icon-bottom > a .ap-icon img,
#ab252a2899ab1b2 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ab252a2899ab1b2 .menu-list > li.icon-right > a .ap-icon,
#ab252a2899ab1b2 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ab252a2899ab1b2 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ab252a2899ab1b2 .menu-list > li:hover > a,
#ab252a2899ab1b2 .menu-list > li.active > a {
  background: #ff8405;
  background-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #ff8405;
  border-top-style: solid;
  border-right-color: #ff8405;
  border-left-color: #ff8405;
  border-bottom-color: #ff8405;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#ab252a2899ab1b2 .menu-list ul,
#ab252a2899ab1b2 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ab252a2899ab1b2 .menu-list ul {
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
}
#ab252a2899ab1b2 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ab252a2899ab1b2 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ab252a2899ab1b2 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a2700ae960a9f6f .uk-grid {
  margin-left: -15px;
}
#a2700ae960a9f6f .uk-grid > * {
  padding-left: 15px;
}
#a2700ae960a9f6f .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a2700ae960a9f6f .uk-position-center-left-out {
    left: -30px;
  }
  #a2700ae960a9f6f .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a3246a1870a65c1 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a3246a1870a65c1  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#a3246a1870a65c1:hover * {color: #ffffff }
                            #a3246a1870a65c1:hover .line{border-color: #ffffff }#ad5b3a7dc8aba42 {
  overflow: hidden;
}
#ad5b3a7dc8aba42 .img-wrap {
  transition: all 0.3s ease-in;
}
#ad5b3a7dc8aba42 .img-wrap:hover {
  transform: scale(1.1);
}
#a47aba7baca3dff > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a47aba7baca3dff  > .ele-wrap:hover {color: #ff8405;}#a47aba7baca3dff:hover * {color: #ff8405 }
                            #a47aba7baca3dff:hover .line{border-color: #ff8405 }#af4a4ab25da4fcf {
  overflow: hidden;
}
#af4a4ab25da4fcf .img-wrap {
  transition: all 0.3s ease-in;
}
#af4a4ab25da4fcf .img-wrap:hover {
  transform: scale(1.1);
}
#ab5c8a1bb8a7f23 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ab5c8a1bb8a7f23  > .ele-wrap:hover {color: #ff8405;}#ab5c8a1bb8a7f23:hover * {color: #ff8405 }
                            #ab5c8a1bb8a7f23:hover .line{border-color: #ff8405 }#a855caf41ba2963 {
  overflow: hidden;
}
#a855caf41ba2963 .img-wrap {
  transition: all 0.3s ease-in;
}
#a855caf41ba2963 .img-wrap:hover {
  transform: scale(1.1);
}
#ad921af79baa358 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ad921af79baa358  > .ele-wrap:hover {color: #ff8405;}#ad921af79baa358:hover * {color: #ff8405 }
                            #ad921af79baa358:hover .line{border-color: #ff8405 }#a62e9a8007abcc6 {
  overflow: hidden;
}
#a62e9a8007abcc6 .img-wrap {
  transition: all 0.3s ease-in;
}
#a62e9a8007abcc6 .img-wrap:hover {
  transform: scale(1.1);
}
#a44dcaabd1aa3df > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a44dcaabd1aa3df  > .ele-wrap:hover {color: #ff8405;}#a44dcaabd1aa3df:hover * {color: #ff8405 }
                            #a44dcaabd1aa3df:hover .line{border-color: #ff8405 }#a0a18a22f1a1f72 {
  overflow: hidden;
}
#a0a18a22f1a1f72 .img-wrap {
  transition: all 0.3s ease-in;
}
#a0a18a22f1a1f72 .img-wrap:hover {
  transform: scale(1.1);
}
#a39b1af7d0a7dd6 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a39b1af7d0a7dd6  > .ele-wrap:hover {color: #ff8405;}#a39b1af7d0a7dd6:hover * {color: #ff8405 }
                            #a39b1af7d0a7dd6:hover .line{border-color: #ff8405 }#a67eda2aa0ae284 {
  overflow: hidden;
}
#a67eda2aa0ae284 .img-wrap {
  transition: all 0.3s ease-in;
}
#a67eda2aa0ae284 .img-wrap:hover {
  transform: scale(1.1);
}
#a6d36a240ba59fe .uk-grid {
  margin-left: -15px;
}
#a6d36a240ba59fe .uk-grid > * {
  padding-left: 15px;
}
#a6d36a240ba59fe .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a6d36a240ba59fe .ap-category-filter ul li.active {
  border-color: #ff8405;
  color: #ff8405;
}
#a6d36a240ba59fe .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a6d36a240ba59fe .article .info {
  padding: 20px 10px;
  position: relative;
}
#a6d36a240ba59fe .article .info p {
  margin: 10px 0 10px;
}
#a6d36a240ba59fe .article svg {
  fill: currentColor;
}
#a6d36a240ba59fe .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#a6d36a240ba59fe .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#a6d36a240ba59fe .article.list-icon .info {
  padding-left: 25px;
}
#a6d36a240ba59fe .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#a6d36a240ba59fe .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
}
#a6d36a240ba59fe .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a6d36a240ba59fe .article:hover .title {
  color: #ff8405;
}
#a6d36a240ba59fe .article:hover .datetime {
  color: #b6b6b6;
}
#a6d36a240ba59fe .article:hover .category {
  color: #b6b6b6;
}
#a6d36a240ba59fe .article:hover .abstract {
  color: #ff8405;
}
#a6d36a240ba59fe .article:hover .btn_icon {
  color: #ff8405;
}
#a6d36a240ba59fe .article:hover .list_icon {
  color: #b6b6b6;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a1100a0d83afc17 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#ac548a12e4a57c3 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ac548a12e4a57c3 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ac548a12e4a57c3 .ap-icon {
  margin-right: 6px;
}
#ac548a12e4a57c3 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: bold;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 1px;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  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-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  margin-right: 10px;
  margin-top: 10px;
  margin-left: 10px;
  width: 230px;
  height: 40px;
}
#ac548a12e4a57c3 .menu-list > li.icon-bottom > a,
#ac548a12e4a57c3 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ac548a12e4a57c3 .menu-list > li.icon-bottom > a .ap-icon,
#ac548a12e4a57c3 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ac548a12e4a57c3 .menu-list > li.icon-bottom > a .ap-icon svg,
#ac548a12e4a57c3 .menu-list > li.icon-top > a .ap-icon svg,
#ac548a12e4a57c3 .menu-list > li.icon-bottom > a .ap-icon img,
#ac548a12e4a57c3 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ac548a12e4a57c3 .menu-list > li.icon-right > a .ap-icon,
#ac548a12e4a57c3 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ac548a12e4a57c3 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ac548a12e4a57c3 .menu-list > li:hover > a,
#ac548a12e4a57c3 .menu-list > li.active > a {
  background: #ff8405;
  background-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #ff8405;
  border-top-style: solid;
  border-right-color: #ff8405;
  border-left-color: #ff8405;
  border-bottom-color: #ff8405;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#ac548a12e4a57c3 .menu-list ul,
#ac548a12e4a57c3 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ac548a12e4a57c3 .menu-list ul {
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
}
#ac548a12e4a57c3 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ac548a12e4a57c3 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ac548a12e4a57c3 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a26f0a16a8a8397 .uk-grid {
  margin-left: -15px;
}
#a26f0a16a8a8397 .uk-grid > * {
  padding-left: 15px;
}
#a26f0a16a8a8397 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a26f0a16a8a8397 .uk-position-center-left-out {
    left: -30px;
  }
  #a26f0a16a8a8397 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a1bf7a0d9aa45aa > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a1bf7a0d9aa45aa  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#a1bf7a0d9aa45aa:hover * {color: #ffffff }
                            #a1bf7a0d9aa45aa:hover .line{border-color: #ffffff }#a2a61a7d66ae52e {
  overflow: hidden;
}
#a2a61a7d66ae52e .img-wrap {
  transition: all 0.3s ease-in;
}
#a2a61a7d66ae52e .img-wrap:hover {
  transform: scale(1.1);
}
#a429fab4fdac83c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a429fab4fdac83c  > .ele-wrap:hover {color: #ff8405;}#a429fab4fdac83c:hover * {color: #ff8405 }
                            #a429fab4fdac83c:hover .line{border-color: #ff8405 }#ad34dad579a01d6 {
  overflow: hidden;
}
#ad34dad579a01d6 .img-wrap {
  transition: all 0.3s ease-in;
}
#ad34dad579a01d6 .img-wrap:hover {
  transform: scale(1.1);
}
#acbaba8babafef6 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#acbaba8babafef6  > .ele-wrap:hover {color: #ff8405;}#acbaba8babafef6:hover * {color: #ff8405 }
                            #acbaba8babafef6:hover .line{border-color: #ff8405 }#aacc1ac507a0aaa {
  overflow: hidden;
}
#aacc1ac507a0aaa .img-wrap {
  transition: all 0.3s ease-in;
}
#aacc1ac507a0aaa .img-wrap:hover {
  transform: scale(1.1);
}
#abb99a34bcaaf23 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#abb99a34bcaaf23  > .ele-wrap:hover {color: #ff8405;}#abb99a34bcaaf23:hover * {color: #ff8405 }
                            #abb99a34bcaaf23:hover .line{border-color: #ff8405 }#a1dcda0ed6a9144 {
  overflow: hidden;
}
#a1dcda0ed6a9144 .img-wrap {
  transition: all 0.3s ease-in;
}
#a1dcda0ed6a9144 .img-wrap:hover {
  transform: scale(1.1);
}
#a4befab1aca2125 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a4befab1aca2125  > .ele-wrap:hover {color: #ff8405;}#a4befab1aca2125:hover * {color: #ff8405 }
                            #a4befab1aca2125:hover .line{border-color: #ff8405 }#a1b78a33dfa0456 {
  overflow: hidden;
}
#a1b78a33dfa0456 .img-wrap {
  transition: all 0.3s ease-in;
}
#a1b78a33dfa0456 .img-wrap:hover {
  transform: scale(1.1);
}
#a3dfca30e9ae33e > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a3dfca30e9ae33e  > .ele-wrap:hover {color: #ff8405;}#a3dfca30e9ae33e:hover * {color: #ff8405 }
                            #a3dfca30e9ae33e:hover .line{border-color: #ff8405 }#accafa5a09ac280 {
  overflow: hidden;
}
#accafa5a09ac280 .img-wrap {
  transition: all 0.3s ease-in;
}
#accafa5a09ac280 .img-wrap:hover {
  transform: scale(1.1);
}
#ad667a1aada88bf .uk-grid {
  margin-left: -15px;
}
#ad667a1aada88bf .uk-grid > * {
  padding-left: 15px;
}
#ad667a1aada88bf .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#ad667a1aada88bf .ap-category-filter ul li.active {
  border-color: #ff8405;
  color: #ff8405;
}
#ad667a1aada88bf .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#ad667a1aada88bf .article .info {
  padding: 20px 10px;
  position: relative;
}
#ad667a1aada88bf .article .info p {
  margin: 10px 0 10px;
}
#ad667a1aada88bf .article svg {
  fill: currentColor;
}
#ad667a1aada88bf .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#ad667a1aada88bf .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#ad667a1aada88bf .article.list-icon .info {
  padding-left: 25px;
}
#ad667a1aada88bf .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#ad667a1aada88bf .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
}
#ad667a1aada88bf .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#ad667a1aada88bf .article:hover .title {
  color: #ff8405;
}
#ad667a1aada88bf .article:hover .datetime {
  color: #b6b6b6;
}
#ad667a1aada88bf .article:hover .category {
  color: #b6b6b6;
}
#ad667a1aada88bf .article:hover .abstract {
  color: #ff8405;
}
#ad667a1aada88bf .article:hover .btn_icon {
  color: #ff8405;
}
#ad667a1aada88bf .article:hover .list_icon {
  color: #b6b6b6;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#ad3b1abbdca7983 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#abc74a8c1ea6b65 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#abc74a8c1ea6b65 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#abc74a8c1ea6b65 .ap-icon {
  margin-right: 6px;
}
#abc74a8c1ea6b65 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: bold;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 1px;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  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-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  margin-right: 10px;
  margin-top: 10px;
  margin-left: 10px;
  width: 230px;
  height: 40px;
}
#abc74a8c1ea6b65 .menu-list > li.icon-bottom > a,
#abc74a8c1ea6b65 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#abc74a8c1ea6b65 .menu-list > li.icon-bottom > a .ap-icon,
#abc74a8c1ea6b65 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#abc74a8c1ea6b65 .menu-list > li.icon-bottom > a .ap-icon svg,
#abc74a8c1ea6b65 .menu-list > li.icon-top > a .ap-icon svg,
#abc74a8c1ea6b65 .menu-list > li.icon-bottom > a .ap-icon img,
#abc74a8c1ea6b65 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#abc74a8c1ea6b65 .menu-list > li.icon-right > a .ap-icon,
#abc74a8c1ea6b65 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#abc74a8c1ea6b65 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#abc74a8c1ea6b65 .menu-list > li:hover > a,
#abc74a8c1ea6b65 .menu-list > li.active > a {
  background: #ff8405;
  background-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #ff8405;
  border-top-style: solid;
  border-right-color: #ff8405;
  border-left-color: #ff8405;
  border-bottom-color: #ff8405;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#abc74a8c1ea6b65 .menu-list ul,
#abc74a8c1ea6b65 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#abc74a8c1ea6b65 .menu-list ul {
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
}
#abc74a8c1ea6b65 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#abc74a8c1ea6b65 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#abc74a8c1ea6b65 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#abe8ca65eaa66bd .uk-grid {
  margin-left: -15px;
}
#abe8ca65eaa66bd .uk-grid > * {
  padding-left: 15px;
}
#abe8ca65eaa66bd .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #abe8ca65eaa66bd .uk-position-center-left-out {
    left: -30px;
  }
  #abe8ca65eaa66bd .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a5d66a1c43a9e4b > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a5d66a1c43a9e4b  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#a5d66a1c43a9e4b:hover * {color: #ffffff }
                            #a5d66a1c43a9e4b:hover .line{border-color: #ffffff }#ab033ad520af0ed {
  overflow: hidden;
}
#ab033ad520af0ed .img-wrap {
  transition: all 0.3s ease-in;
}
#ab033ad520af0ed .img-wrap:hover {
  transform: scale(1.1);
}
#a0020a86f2aaed7 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a0020a86f2aaed7  > .ele-wrap:hover {color: #ff8405;}#a0020a86f2aaed7:hover * {color: #ff8405 }
                            #a0020a86f2aaed7:hover .line{border-color: #ff8405 }#ab56ba2179a721d {
  overflow: hidden;
}
#ab56ba2179a721d .img-wrap {
  transition: all 0.3s ease-in;
}
#ab56ba2179a721d .img-wrap:hover {
  transform: scale(1.1);
}
#a5b4fa140eabee6 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a5b4fa140eabee6  > .ele-wrap:hover {color: #ff8405;}#a5b4fa140eabee6:hover * {color: #ff8405 }
                            #a5b4fa140eabee6:hover .line{border-color: #ff8405 }#ad30ba65cbaf872 {
  overflow: hidden;
}
#ad30ba65cbaf872 .img-wrap {
  transition: all 0.3s ease-in;
}
#ad30ba65cbaf872 .img-wrap:hover {
  transform: scale(1.1);
}
#aa21dae3e7af5a5 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#aa21dae3e7af5a5  > .ele-wrap:hover {color: #ff8405;}#aa21dae3e7af5a5:hover * {color: #ff8405 }
                            #aa21dae3e7af5a5:hover .line{border-color: #ff8405 }#a8644a5aa3a4c56 {
  overflow: hidden;
}
#a8644a5aa3a4c56 .img-wrap {
  transition: all 0.3s ease-in;
}
#a8644a5aa3a4c56 .img-wrap:hover {
  transform: scale(1.1);
}
#ad69bab82da24ff > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ad69bab82da24ff  > .ele-wrap:hover {color: #ff8405;}#ad69bab82da24ff:hover * {color: #ff8405 }
                            #ad69bab82da24ff:hover .line{border-color: #ff8405 }#a58a8aa103a081c {
  overflow: hidden;
}
#a58a8aa103a081c .img-wrap {
  transition: all 0.3s ease-in;
}
#a58a8aa103a081c .img-wrap:hover {
  transform: scale(1.1);
}
#a2bd7af77fa71f6 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a2bd7af77fa71f6  > .ele-wrap:hover {color: #ff8405;}#a2bd7af77fa71f6:hover * {color: #ff8405 }
                            #a2bd7af77fa71f6:hover .line{border-color: #ff8405 }#aa1c9ad27fa6f83 {
  overflow: hidden;
}
#aa1c9ad27fa6f83 .img-wrap {
  transition: all 0.3s ease-in;
}
#aa1c9ad27fa6f83 .img-wrap:hover {
  transform: scale(1.1);
}
#a6865a056fa4e69 .uk-grid {
  margin-left: -15px;
}
#a6865a056fa4e69 .uk-grid > * {
  padding-left: 15px;
}
#a6865a056fa4e69 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a6865a056fa4e69 .ap-category-filter ul li.active {
  border-color: #ff8405;
  color: #ff8405;
}
#a6865a056fa4e69 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a6865a056fa4e69 .article .info {
  padding: 20px 10px;
  position: relative;
}
#a6865a056fa4e69 .article .info p {
  margin: 10px 0 10px;
}
#a6865a056fa4e69 .article svg {
  fill: currentColor;
}
#a6865a056fa4e69 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#a6865a056fa4e69 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#a6865a056fa4e69 .article.list-icon .info {
  padding-left: 25px;
}
#a6865a056fa4e69 .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#a6865a056fa4e69 .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
}
#a6865a056fa4e69 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a6865a056fa4e69 .article:hover .title {
  color: #ff8405;
}
#a6865a056fa4e69 .article:hover .datetime {
  color: #b6b6b6;
}
#a6865a056fa4e69 .article:hover .category {
  color: #b6b6b6;
}
#a6865a056fa4e69 .article:hover .abstract {
  color: #ff8405;
}
#a6865a056fa4e69 .article:hover .btn_icon {
  color: #ff8405;
}
#a6865a056fa4e69 .article:hover .list_icon {
  color: #b6b6b6;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a1f69a7d8fa85ad .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a1089a5459a33ce .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a1089a5459a33ce .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a1089a5459a33ce .ap-icon {
  margin-right: 6px;
}
#a1089a5459a33ce .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: bold;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 1px;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  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-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  margin-right: 10px;
  margin-top: 10px;
  width: 220px;
  height: 46px;
}
#a1089a5459a33ce .menu-list > li.icon-bottom > a,
#a1089a5459a33ce .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a1089a5459a33ce .menu-list > li.icon-bottom > a .ap-icon,
#a1089a5459a33ce .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a1089a5459a33ce .menu-list > li.icon-bottom > a .ap-icon svg,
#a1089a5459a33ce .menu-list > li.icon-top > a .ap-icon svg,
#a1089a5459a33ce .menu-list > li.icon-bottom > a .ap-icon img,
#a1089a5459a33ce .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a1089a5459a33ce .menu-list > li.icon-right > a .ap-icon,
#a1089a5459a33ce .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a1089a5459a33ce .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a1089a5459a33ce .menu-list > li:hover > a,
#a1089a5459a33ce .menu-list > li.active > a {
  background: #ff8405;
  background-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #ff8405;
  border-top-style: solid;
  border-right-color: #ff8405;
  border-left-color: #ff8405;
  border-bottom-color: #ff8405;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a1089a5459a33ce .menu-list ul,
#a1089a5459a33ce .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a1089a5459a33ce .menu-list ul {
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
}
#a1089a5459a33ce .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a1089a5459a33ce .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a1089a5459a33ce .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a9b12a21a3a0dc0 .uk-grid {
  margin-left: -15px;
}
#a9b12a21a3a0dc0 .uk-grid > * {
  padding-left: 15px;
}
#a9b12a21a3a0dc0 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a9b12a21a3a0dc0 .uk-position-center-left-out {
    left: -30px;
  }
  #a9b12a21a3a0dc0 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ab3b5a4abeaf728 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ab3b5a4abeaf728  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#ab3b5a4abeaf728:hover * {color: #ffffff }
                            #ab3b5a4abeaf728:hover .line{border-color: #ffffff }#a02a3aced0a4e80 {
  overflow: hidden;
}
#a02a3aced0a4e80 .img-wrap {
  transition: all 0.3s ease-in;
}
#a02a3aced0a4e80 .img-wrap:hover {
  transform: scale(1.1);
}
#a908ba6729a92fa > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a908ba6729a92fa  > .ele-wrap:hover {color: #ff8405;}#a908ba6729a92fa:hover * {color: #ff8405 }
                            #a908ba6729a92fa:hover .line{border-color: #ff8405 }#a8802a2076a54f1 {
  overflow: hidden;
}
#a8802a2076a54f1 .img-wrap {
  transition: all 0.3s ease-in;
}
#a8802a2076a54f1 .img-wrap:hover {
  transform: scale(1.1);
}
#a3564ac1bfab81e > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a3564ac1bfab81e  > .ele-wrap:hover {color: #ff8405;}#a3564ac1bfab81e:hover * {color: #ff8405 }
                            #a3564ac1bfab81e:hover .line{border-color: #ff8405 }#adb74adb1cacaee {
  overflow: hidden;
}
#adb74adb1cacaee .img-wrap {
  transition: all 0.3s ease-in;
}
#adb74adb1cacaee .img-wrap:hover {
  transform: scale(1.1);
}
#a9d97a595ba151c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a9d97a595ba151c  > .ele-wrap:hover {color: #ff8405;}#a9d97a595ba151c:hover * {color: #ff8405 }
                            #a9d97a595ba151c:hover .line{border-color: #ff8405 }#a5844a295fa43e3 {
  overflow: hidden;
}
#a5844a295fa43e3 .img-wrap {
  transition: all 0.3s ease-in;
}
#a5844a295fa43e3 .img-wrap:hover {
  transform: scale(1.1);
}
#a54aca6ecba6382 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a54aca6ecba6382  > .ele-wrap:hover {color: #ff8405;}#a54aca6ecba6382:hover * {color: #ff8405 }
                            #a54aca6ecba6382:hover .line{border-color: #ff8405 }#a7f14ae1aba6424 {
  overflow: hidden;
}
#a7f14ae1aba6424 .img-wrap {
  transition: all 0.3s ease-in;
}
#a7f14ae1aba6424 .img-wrap:hover {
  transform: scale(1.1);
}
#ae823a0f89a2ad6 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ae823a0f89a2ad6  > .ele-wrap:hover {color: #ff8405;}#ae823a0f89a2ad6:hover * {color: #ff8405 }
                            #ae823a0f89a2ad6:hover .line{border-color: #ff8405 }#a4493aa4acaff01 {
  overflow: hidden;
}
#a4493aa4acaff01 .img-wrap {
  transition: all 0.3s ease-in;
}
#a4493aa4acaff01 .img-wrap:hover {
  transform: scale(1.1);
}
#a5a9ca8825a6a23 .uk-grid {
  margin-left: -15px;
}
#a5a9ca8825a6a23 .uk-grid > * {
  padding-left: 15px;
}
#a5a9ca8825a6a23 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a5a9ca8825a6a23 .ap-category-filter ul li.active {
  border-color: #ff8405;
  color: #ff8405;
}
#a5a9ca8825a6a23 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a5a9ca8825a6a23 .article .info {
  padding: 20px 10px;
  position: relative;
}
#a5a9ca8825a6a23 .article .info p {
  margin: 10px 0 10px;
}
#a5a9ca8825a6a23 .article svg {
  fill: currentColor;
}
#a5a9ca8825a6a23 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#a5a9ca8825a6a23 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#a5a9ca8825a6a23 .article.list-icon .info {
  padding-left: 25px;
}
#a5a9ca8825a6a23 .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#a5a9ca8825a6a23 .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
}
#a5a9ca8825a6a23 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a5a9ca8825a6a23 .article:hover .title {
  color: #ff8405;
}
#a5a9ca8825a6a23 .article:hover .datetime {
  color: #b6b6b6;
}
#a5a9ca8825a6a23 .article:hover .category {
  color: #b6b6b6;
}
#a5a9ca8825a6a23 .article:hover .abstract {
  color: #ff8405;
}
#a5a9ca8825a6a23 .article:hover .btn_icon {
  color: #ff8405;
}
#a5a9ca8825a6a23 .article:hover .list_icon {
  color: #b6b6b6;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a0091a6769a8313 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#ad568ac9eda9892 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ad568ac9eda9892 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ad568ac9eda9892 .ap-icon {
  margin-right: 6px;
}
#ad568ac9eda9892 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: bold;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 1px;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  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-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  margin-right: 10px;
  margin-top: 10px;
  width: 220px;
  height: 46px;
}
#ad568ac9eda9892 .menu-list > li.icon-bottom > a,
#ad568ac9eda9892 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ad568ac9eda9892 .menu-list > li.icon-bottom > a .ap-icon,
#ad568ac9eda9892 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ad568ac9eda9892 .menu-list > li.icon-bottom > a .ap-icon svg,
#ad568ac9eda9892 .menu-list > li.icon-top > a .ap-icon svg,
#ad568ac9eda9892 .menu-list > li.icon-bottom > a .ap-icon img,
#ad568ac9eda9892 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ad568ac9eda9892 .menu-list > li.icon-right > a .ap-icon,
#ad568ac9eda9892 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ad568ac9eda9892 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ad568ac9eda9892 .menu-list > li:hover > a,
#ad568ac9eda9892 .menu-list > li.active > a {
  background: #ff8405;
  background-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #ff8405;
  border-top-style: solid;
  border-right-color: #ff8405;
  border-left-color: #ff8405;
  border-bottom-color: #ff8405;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#ad568ac9eda9892 .menu-list ul,
#ad568ac9eda9892 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ad568ac9eda9892 .menu-list ul {
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
}
#ad568ac9eda9892 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ad568ac9eda9892 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ad568ac9eda9892 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#ab432a64e3a6e87 .uk-grid {
  margin-left: -15px;
}
#ab432a64e3a6e87 .uk-grid > * {
  padding-left: 15px;
}
#ab432a64e3a6e87 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #ab432a64e3a6e87 .uk-position-center-left-out {
    left: -30px;
  }
  #ab432a64e3a6e87 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#afd28a29f2af683 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#afd28a29f2af683  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#afd28a29f2af683:hover * {color: #ffffff }
                            #afd28a29f2af683:hover .line{border-color: #ffffff }#a081aa4adea2f94 {
  overflow: hidden;
}
#a081aa4adea2f94 .img-wrap {
  transition: all 0.3s ease-in;
}
#a081aa4adea2f94 .img-wrap:hover {
  transform: scale(1.1);
}
#a4757a4d85aa241 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a4757a4d85aa241  > .ele-wrap:hover {color: #ff8405;}#a4757a4d85aa241:hover * {color: #ff8405 }
                            #a4757a4d85aa241:hover .line{border-color: #ff8405 }#a61b7a1635a24f4 {
  overflow: hidden;
}
#a61b7a1635a24f4 .img-wrap {
  transition: all 0.3s ease-in;
}
#a61b7a1635a24f4 .img-wrap:hover {
  transform: scale(1.1);
}
#a874da6f78a69ee > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a874da6f78a69ee  > .ele-wrap:hover {color: #ff8405;}#a874da6f78a69ee:hover * {color: #ff8405 }
                            #a874da6f78a69ee:hover .line{border-color: #ff8405 }#a9e4aa9ed8af3af {
  overflow: hidden;
}
#a9e4aa9ed8af3af .img-wrap {
  transition: all 0.3s ease-in;
}
#a9e4aa9ed8af3af .img-wrap:hover {
  transform: scale(1.1);
}
#a0099a94daa326d > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a0099a94daa326d  > .ele-wrap:hover {color: #ff8405;}#a0099a94daa326d:hover * {color: #ff8405 }
                            #a0099a94daa326d:hover .line{border-color: #ff8405 }#a9d07a0612a17f4 {
  overflow: hidden;
}
#a9d07a0612a17f4 .img-wrap {
  transition: all 0.3s ease-in;
}
#a9d07a0612a17f4 .img-wrap:hover {
  transform: scale(1.1);
}
#a824fad870a8c0d > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a824fad870a8c0d  > .ele-wrap:hover {color: #ff8405;}#a824fad870a8c0d:hover * {color: #ff8405 }
                            #a824fad870a8c0d:hover .line{border-color: #ff8405 }#afcfea40efac43e {
  overflow: hidden;
}
#afcfea40efac43e .img-wrap {
  transition: all 0.3s ease-in;
}
#afcfea40efac43e .img-wrap:hover {
  transform: scale(1.1);
}
#a2f8ba677aae2e6 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a2f8ba677aae2e6  > .ele-wrap:hover {color: #ff8405;}#a2f8ba677aae2e6:hover * {color: #ff8405 }
                            #a2f8ba677aae2e6:hover .line{border-color: #ff8405 }#aab7fa9a25afc46 {
  overflow: hidden;
}
#aab7fa9a25afc46 .img-wrap {
  transition: all 0.3s ease-in;
}
#aab7fa9a25afc46 .img-wrap:hover {
  transform: scale(1.1);
}
#a4da7a3d9bab21f .uk-grid {
  margin-left: -15px;
}
#a4da7a3d9bab21f .uk-grid > * {
  padding-left: 15px;
}
#a4da7a3d9bab21f .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a4da7a3d9bab21f .ap-category-filter ul li.active {
  border-color: #ff8405;
  color: #ff8405;
}
#a4da7a3d9bab21f .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a4da7a3d9bab21f .article .info {
  padding: 20px 10px;
  position: relative;
}
#a4da7a3d9bab21f .article .info p {
  margin: 10px 0 10px;
}
#a4da7a3d9bab21f .article svg {
  fill: currentColor;
}
#a4da7a3d9bab21f .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#a4da7a3d9bab21f .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#a4da7a3d9bab21f .article.list-icon .info {
  padding-left: 25px;
}
#a4da7a3d9bab21f .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#a4da7a3d9bab21f .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
}
#a4da7a3d9bab21f .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a4da7a3d9bab21f .article:hover .title {
  color: #ff8405;
}
#a4da7a3d9bab21f .article:hover .datetime {
  color: #b6b6b6;
}
#a4da7a3d9bab21f .article:hover .category {
  color: #b6b6b6;
}
#a4da7a3d9bab21f .article:hover .abstract {
  color: #ff8405;
}
#a4da7a3d9bab21f .article:hover .btn_icon {
  color: #ff8405;
}
#a4da7a3d9bab21f .article:hover .list_icon {
  color: #b6b6b6;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#ac186a8cd0a269f .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a944ca9e29af25b .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a944ca9e29af25b .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a944ca9e29af25b .ap-icon {
  margin-right: 6px;
}
#a944ca9e29af25b .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: bold;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 1px;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  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-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  margin-right: 10px;
  margin-top: 10px;
  width: 220px;
  height: 46px;
}
#a944ca9e29af25b .menu-list > li.icon-bottom > a,
#a944ca9e29af25b .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a944ca9e29af25b .menu-list > li.icon-bottom > a .ap-icon,
#a944ca9e29af25b .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a944ca9e29af25b .menu-list > li.icon-bottom > a .ap-icon svg,
#a944ca9e29af25b .menu-list > li.icon-top > a .ap-icon svg,
#a944ca9e29af25b .menu-list > li.icon-bottom > a .ap-icon img,
#a944ca9e29af25b .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a944ca9e29af25b .menu-list > li.icon-right > a .ap-icon,
#a944ca9e29af25b .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a944ca9e29af25b .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a944ca9e29af25b .menu-list > li:hover > a,
#a944ca9e29af25b .menu-list > li.active > a {
  background: #ff8405;
  background-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #ff8405;
  border-top-style: solid;
  border-right-color: #ff8405;
  border-left-color: #ff8405;
  border-bottom-color: #ff8405;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a944ca9e29af25b .menu-list ul,
#a944ca9e29af25b .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a944ca9e29af25b .menu-list ul {
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
}
#a944ca9e29af25b .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a944ca9e29af25b .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a944ca9e29af25b .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a93b9a2f04a392d .uk-grid {
  margin-left: -15px;
}
#a93b9a2f04a392d .uk-grid > * {
  padding-left: 15px;
}
#a93b9a2f04a392d .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a93b9a2f04a392d .uk-position-center-left-out {
    left: -30px;
  }
  #a93b9a2f04a392d .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#aad80a9c2fa6a19 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#aad80a9c2fa6a19  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#aad80a9c2fa6a19:hover * {color: #ffffff }
                            #aad80a9c2fa6a19:hover .line{border-color: #ffffff }#a288caf4c5ad8fa {
  overflow: hidden;
}
#a288caf4c5ad8fa .img-wrap {
  transition: all 0.3s ease-in;
}
#a288caf4c5ad8fa .img-wrap:hover {
  transform: scale(1.1);
}
#a346aa2390a91f6 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a346aa2390a91f6  > .ele-wrap:hover {color: #ff8405;}#a346aa2390a91f6:hover * {color: #ff8405 }
                            #a346aa2390a91f6:hover .line{border-color: #ff8405 }#aca7ba7d5da3f6a {
  overflow: hidden;
}
#aca7ba7d5da3f6a .img-wrap {
  transition: all 0.3s ease-in;
}
#aca7ba7d5da3f6a .img-wrap:hover {
  transform: scale(1.1);
}
#a1e42a0e6fa880a > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a1e42a0e6fa880a  > .ele-wrap:hover {color: #ff8405;}#a1e42a0e6fa880a:hover * {color: #ff8405 }
                            #a1e42a0e6fa880a:hover .line{border-color: #ff8405 }#a8133a6cc6afff7 {
  overflow: hidden;
}
#a8133a6cc6afff7 .img-wrap {
  transition: all 0.3s ease-in;
}
#a8133a6cc6afff7 .img-wrap:hover {
  transform: scale(1.1);
}
#a5639ae70fa1556 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a5639ae70fa1556  > .ele-wrap:hover {color: #ff8405;}#a5639ae70fa1556:hover * {color: #ff8405 }
                            #a5639ae70fa1556:hover .line{border-color: #ff8405 }#a3720a5b8ea594e {
  overflow: hidden;
}
#a3720a5b8ea594e .img-wrap {
  transition: all 0.3s ease-in;
}
#a3720a5b8ea594e .img-wrap:hover {
  transform: scale(1.1);
}
#a3b1aac9afacba0 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a3b1aac9afacba0  > .ele-wrap:hover {color: #ff8405;}#a3b1aac9afacba0:hover * {color: #ff8405 }
                            #a3b1aac9afacba0:hover .line{border-color: #ff8405 }#a4bafa3145a5dc6 {
  overflow: hidden;
}
#a4bafa3145a5dc6 .img-wrap {
  transition: all 0.3s ease-in;
}
#a4bafa3145a5dc6 .img-wrap:hover {
  transform: scale(1.1);
}
#a62a2aadb8a0e42 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a62a2aadb8a0e42  > .ele-wrap:hover {color: #ff8405;}#a62a2aadb8a0e42:hover * {color: #ff8405 }
                            #a62a2aadb8a0e42:hover .line{border-color: #ff8405 }#af617a8fc0aed99 {
  overflow: hidden;
}
#af617a8fc0aed99 .img-wrap {
  transition: all 0.3s ease-in;
}
#af617a8fc0aed99 .img-wrap:hover {
  transform: scale(1.1);
}
#ad5b7a9caaa168e .uk-grid {
  margin-left: -15px;
}
#ad5b7a9caaa168e .uk-grid > * {
  padding-left: 15px;
}
#ad5b7a9caaa168e .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#ad5b7a9caaa168e .ap-category-filter ul li.active {
  border-color: #ff8405;
  color: #ff8405;
}
#ad5b7a9caaa168e .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#ad5b7a9caaa168e .article .info {
  padding: 20px 10px;
  position: relative;
}
#ad5b7a9caaa168e .article .info p {
  margin: 10px 0 10px;
}
#ad5b7a9caaa168e .article svg {
  fill: currentColor;
}
#ad5b7a9caaa168e .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#ad5b7a9caaa168e .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#ad5b7a9caaa168e .article.list-icon .info {
  padding-left: 25px;
}
#ad5b7a9caaa168e .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#ad5b7a9caaa168e .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
}
#ad5b7a9caaa168e .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#ad5b7a9caaa168e .article:hover .title {
  color: #ff8405;
}
#ad5b7a9caaa168e .article:hover .datetime {
  color: #b6b6b6;
}
#ad5b7a9caaa168e .article:hover .category {
  color: #b6b6b6;
}
#ad5b7a9caaa168e .article:hover .abstract {
  color: #ff8405;
}
#ad5b7a9caaa168e .article:hover .btn_icon {
  color: #ff8405;
}
#ad5b7a9caaa168e .article:hover .list_icon {
  color: #b6b6b6;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a677fa4c03ab225 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a8409adc14a8bfa .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a8409adc14a8bfa .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a8409adc14a8bfa .ap-icon {
  margin-right: 6px;
}
#a8409adc14a8bfa .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: bold;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 1px;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  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-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  margin-right: 10px;
  margin-top: 10px;
  width: 220px;
  height: 46px;
}
#a8409adc14a8bfa .menu-list > li.icon-bottom > a,
#a8409adc14a8bfa .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a8409adc14a8bfa .menu-list > li.icon-bottom > a .ap-icon,
#a8409adc14a8bfa .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a8409adc14a8bfa .menu-list > li.icon-bottom > a .ap-icon svg,
#a8409adc14a8bfa .menu-list > li.icon-top > a .ap-icon svg,
#a8409adc14a8bfa .menu-list > li.icon-bottom > a .ap-icon img,
#a8409adc14a8bfa .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a8409adc14a8bfa .menu-list > li.icon-right > a .ap-icon,
#a8409adc14a8bfa .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a8409adc14a8bfa .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a8409adc14a8bfa .menu-list > li:hover > a,
#a8409adc14a8bfa .menu-list > li.active > a {
  background: #ff8405;
  background-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #ff8405;
  border-top-style: solid;
  border-right-color: #ff8405;
  border-left-color: #ff8405;
  border-bottom-color: #ff8405;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a8409adc14a8bfa .menu-list ul,
#a8409adc14a8bfa .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a8409adc14a8bfa .menu-list ul {
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
}
#a8409adc14a8bfa .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a8409adc14a8bfa .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a8409adc14a8bfa .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a8999a65b0abe6c .uk-grid {
  margin-left: -15px;
}
#a8999a65b0abe6c .uk-grid > * {
  padding-left: 15px;
}
#a8999a65b0abe6c .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a8999a65b0abe6c .uk-position-center-left-out {
    left: -30px;
  }
  #a8999a65b0abe6c .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ac7fca18cfae96c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ac7fca18cfae96c  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#ac7fca18cfae96c:hover * {color: #ffffff }
                            #ac7fca18cfae96c:hover .line{border-color: #ffffff }#a7bd1a0bcdaef53 {
  overflow: hidden;
}
#a7bd1a0bcdaef53 .img-wrap {
  transition: all 0.3s ease-in;
}
#a7bd1a0bcdaef53 .img-wrap:hover {
  transform: scale(1.1);
}
#af0b2abe4ea4018 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#af0b2abe4ea4018  > .ele-wrap:hover {color: #ff8405;}#af0b2abe4ea4018:hover * {color: #ff8405 }
                            #af0b2abe4ea4018:hover .line{border-color: #ff8405 }#abef6a9b29a979c {
  overflow: hidden;
}
#abef6a9b29a979c .img-wrap {
  transition: all 0.3s ease-in;
}
#abef6a9b29a979c .img-wrap:hover {
  transform: scale(1.1);
}
#a7b01ab498a7cf8 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a7b01ab498a7cf8  > .ele-wrap:hover {color: #ff8405;}#a7b01ab498a7cf8:hover * {color: #ff8405 }
                            #a7b01ab498a7cf8:hover .line{border-color: #ff8405 }#a6d7faf930ab3a3 {
  overflow: hidden;
}
#a6d7faf930ab3a3 .img-wrap {
  transition: all 0.3s ease-in;
}
#a6d7faf930ab3a3 .img-wrap:hover {
  transform: scale(1.1);
}
#a5569acbd3a1283 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a5569acbd3a1283  > .ele-wrap:hover {color: #ff8405;}#a5569acbd3a1283:hover * {color: #ff8405 }
                            #a5569acbd3a1283:hover .line{border-color: #ff8405 }#aa429aea79a945c {
  overflow: hidden;
}
#aa429aea79a945c .img-wrap {
  transition: all 0.3s ease-in;
}
#aa429aea79a945c .img-wrap:hover {
  transform: scale(1.1);
}
#a6132af65dab24b > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a6132af65dab24b  > .ele-wrap:hover {color: #ff8405;}#a6132af65dab24b:hover * {color: #ff8405 }
                            #a6132af65dab24b:hover .line{border-color: #ff8405 }#a8acfa7625af9a1 {
  overflow: hidden;
}
#a8acfa7625af9a1 .img-wrap {
  transition: all 0.3s ease-in;
}
#a8acfa7625af9a1 .img-wrap:hover {
  transform: scale(1.1);
}
#a1547ad2cba9c41 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a1547ad2cba9c41  > .ele-wrap:hover {color: #ff8405;}#a1547ad2cba9c41:hover * {color: #ff8405 }
                            #a1547ad2cba9c41:hover .line{border-color: #ff8405 }#a3141a35d5a7b2d {
  overflow: hidden;
}
#a3141a35d5a7b2d .img-wrap {
  transition: all 0.3s ease-in;
}
#a3141a35d5a7b2d .img-wrap:hover {
  transform: scale(1.1);
}
#a9628a31b6a21f6 .uk-grid {
  margin-left: -15px;
}
#a9628a31b6a21f6 .uk-grid > * {
  padding-left: 15px;
}
#a9628a31b6a21f6 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a9628a31b6a21f6 .ap-category-filter ul li.active {
  border-color: #ff8405;
  color: #ff8405;
}
#a9628a31b6a21f6 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a9628a31b6a21f6 .article .info {
  padding: 20px 10px;
  position: relative;
}
#a9628a31b6a21f6 .article .info p {
  margin: 10px 0 10px;
}
#a9628a31b6a21f6 .article svg {
  fill: currentColor;
}
#a9628a31b6a21f6 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#a9628a31b6a21f6 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#a9628a31b6a21f6 .article.list-icon .info {
  padding-left: 25px;
}
#a9628a31b6a21f6 .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#a9628a31b6a21f6 .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
}
#a9628a31b6a21f6 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a9628a31b6a21f6 .article:hover .title {
  color: #ff8405;
}
#a9628a31b6a21f6 .article:hover .datetime {
  color: #b6b6b6;
}
#a9628a31b6a21f6 .article:hover .category {
  color: #b6b6b6;
}
#a9628a31b6a21f6 .article:hover .abstract {
  color: #ff8405;
}
#a9628a31b6a21f6 .article:hover .btn_icon {
  color: #ff8405;
}
#a9628a31b6a21f6 .article:hover .list_icon {
  color: #b6b6b6;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a3019a6a6aae4aa .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a7215a9de3aa3cb .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a7215a9de3aa3cb .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a7215a9de3aa3cb .ap-icon {
  margin-right: 6px;
}
#a7215a9de3aa3cb .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: bold;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 1px;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  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-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  margin-right: 10px;
  margin-top: 10px;
  width: 220px;
  height: 46px;
}
#a7215a9de3aa3cb .menu-list > li.icon-bottom > a,
#a7215a9de3aa3cb .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a7215a9de3aa3cb .menu-list > li.icon-bottom > a .ap-icon,
#a7215a9de3aa3cb .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a7215a9de3aa3cb .menu-list > li.icon-bottom > a .ap-icon svg,
#a7215a9de3aa3cb .menu-list > li.icon-top > a .ap-icon svg,
#a7215a9de3aa3cb .menu-list > li.icon-bottom > a .ap-icon img,
#a7215a9de3aa3cb .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a7215a9de3aa3cb .menu-list > li.icon-right > a .ap-icon,
#a7215a9de3aa3cb .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a7215a9de3aa3cb .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a7215a9de3aa3cb .menu-list > li:hover > a,
#a7215a9de3aa3cb .menu-list > li.active > a {
  background: #ff8405;
  background-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #ff8405;
  border-top-style: solid;
  border-right-color: #ff8405;
  border-left-color: #ff8405;
  border-bottom-color: #ff8405;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a7215a9de3aa3cb .menu-list ul,
#a7215a9de3aa3cb .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a7215a9de3aa3cb .menu-list ul {
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
}
#a7215a9de3aa3cb .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a7215a9de3aa3cb .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a7215a9de3aa3cb .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#afacea9a8fae30a .uk-grid {
  margin-left: -15px;
}
#afacea9a8fae30a .uk-grid > * {
  padding-left: 15px;
}
#afacea9a8fae30a .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #afacea9a8fae30a .uk-position-center-left-out {
    left: -30px;
  }
  #afacea9a8fae30a .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a6a29a2f8aa8247 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a6a29a2f8aa8247  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#a6a29a2f8aa8247:hover * {color: #ffffff }
                            #a6a29a2f8aa8247:hover .line{border-color: #ffffff }#a85fba01c3addac {
  overflow: hidden;
}
#a85fba01c3addac .img-wrap {
  transition: all 0.3s ease-in;
}
#a85fba01c3addac .img-wrap:hover {
  transform: scale(1.1);
}
#a9f9ba7206a2706 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a9f9ba7206a2706  > .ele-wrap:hover {color: #ff8405;}#a9f9ba7206a2706:hover * {color: #ff8405 }
                            #a9f9ba7206a2706:hover .line{border-color: #ff8405 }#a2d48aa31daf6c7 {
  overflow: hidden;
}
#a2d48aa31daf6c7 .img-wrap {
  transition: all 0.3s ease-in;
}
#a2d48aa31daf6c7 .img-wrap:hover {
  transform: scale(1.1);
}
#aec53ab6f9a4c90 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#aec53ab6f9a4c90  > .ele-wrap:hover {color: #ff8405;}#aec53ab6f9a4c90:hover * {color: #ff8405 }
                            #aec53ab6f9a4c90:hover .line{border-color: #ff8405 }#a5f48a22eda5472 {
  overflow: hidden;
}
#a5f48a22eda5472 .img-wrap {
  transition: all 0.3s ease-in;
}
#a5f48a22eda5472 .img-wrap:hover {
  transform: scale(1.1);
}
#a812aa0e4aa41ae > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a812aa0e4aa41ae  > .ele-wrap:hover {color: #ff8405;}#a812aa0e4aa41ae:hover * {color: #ff8405 }
                            #a812aa0e4aa41ae:hover .line{border-color: #ff8405 }#a021fa24a6abe7d {
  overflow: hidden;
}
#a021fa24a6abe7d .img-wrap {
  transition: all 0.3s ease-in;
}
#a021fa24a6abe7d .img-wrap:hover {
  transform: scale(1.1);
}
#a46ceaa797ae7b6 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a46ceaa797ae7b6  > .ele-wrap:hover {color: #ff8405;}#a46ceaa797ae7b6:hover * {color: #ff8405 }
                            #a46ceaa797ae7b6:hover .line{border-color: #ff8405 }#a9e4faf8adab4f0 {
  overflow: hidden;
}
#a9e4faf8adab4f0 .img-wrap {
  transition: all 0.3s ease-in;
}
#a9e4faf8adab4f0 .img-wrap:hover {
  transform: scale(1.1);
}
#a9f89ad87aa20d3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a9f89ad87aa20d3  > .ele-wrap:hover {color: #ff8405;}#a9f89ad87aa20d3:hover * {color: #ff8405 }
                            #a9f89ad87aa20d3:hover .line{border-color: #ff8405 }#afef0a0980a9df4 {
  overflow: hidden;
}
#afef0a0980a9df4 .img-wrap {
  transition: all 0.3s ease-in;
}
#afef0a0980a9df4 .img-wrap:hover {
  transform: scale(1.1);
}
#a3d77a13aea34ee .uk-grid {
  margin-left: -15px;
}
#a3d77a13aea34ee .uk-grid > * {
  padding-left: 15px;
}
#a3d77a13aea34ee .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a3d77a13aea34ee .ap-category-filter ul li.active {
  border-color: #ff8405;
  color: #ff8405;
}
#a3d77a13aea34ee .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a3d77a13aea34ee .article .info {
  padding: 20px 10px;
  position: relative;
}
#a3d77a13aea34ee .article .info p {
  margin: 10px 0 10px;
}
#a3d77a13aea34ee .article svg {
  fill: currentColor;
}
#a3d77a13aea34ee .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#a3d77a13aea34ee .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#a3d77a13aea34ee .article.list-icon .info {
  padding-left: 25px;
}
#a3d77a13aea34ee .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#a3d77a13aea34ee .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
}
#a3d77a13aea34ee .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a3d77a13aea34ee .article:hover .title {
  color: #ff8405;
}
#a3d77a13aea34ee .article:hover .datetime {
  color: #b6b6b6;
}
#a3d77a13aea34ee .article:hover .category {
  color: #b6b6b6;
}
#a3d77a13aea34ee .article:hover .abstract {
  color: #ff8405;
}
#a3d77a13aea34ee .article:hover .btn_icon {
  color: #ff8405;
}
#a3d77a13aea34ee .article:hover .list_icon {
  color: #b6b6b6;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#aa765a07b7ac45c .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a00c2aaf4da9f2c .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a00c2aaf4da9f2c .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a00c2aaf4da9f2c .ap-icon {
  margin-right: 6px;
}
#a00c2aaf4da9f2c .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: bold;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 1px;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  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-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  margin-right: 10px;
  margin-top: 10px;
  width: 220px;
  height: 46px;
}
#a00c2aaf4da9f2c .menu-list > li.icon-bottom > a,
#a00c2aaf4da9f2c .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a00c2aaf4da9f2c .menu-list > li.icon-bottom > a .ap-icon,
#a00c2aaf4da9f2c .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a00c2aaf4da9f2c .menu-list > li.icon-bottom > a .ap-icon svg,
#a00c2aaf4da9f2c .menu-list > li.icon-top > a .ap-icon svg,
#a00c2aaf4da9f2c .menu-list > li.icon-bottom > a .ap-icon img,
#a00c2aaf4da9f2c .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a00c2aaf4da9f2c .menu-list > li.icon-right > a .ap-icon,
#a00c2aaf4da9f2c .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a00c2aaf4da9f2c .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a00c2aaf4da9f2c .menu-list > li:hover > a,
#a00c2aaf4da9f2c .menu-list > li.active > a {
  background: #ff8405;
  background-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #ff8405;
  border-top-style: solid;
  border-right-color: #ff8405;
  border-left-color: #ff8405;
  border-bottom-color: #ff8405;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a00c2aaf4da9f2c .menu-list ul,
#a00c2aaf4da9f2c .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a00c2aaf4da9f2c .menu-list ul {
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
}
#a00c2aaf4da9f2c .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a00c2aaf4da9f2c .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a00c2aaf4da9f2c .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a4dfbad0c5a8e6d .uk-grid {
  margin-left: -15px;
}
#a4dfbad0c5a8e6d .uk-grid > * {
  padding-left: 15px;
}
#a4dfbad0c5a8e6d .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a4dfbad0c5a8e6d .uk-position-center-left-out {
    left: -30px;
  }
  #a4dfbad0c5a8e6d .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#acae8a3522a088f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#acae8a3522a088f  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#acae8a3522a088f:hover * {color: #ffffff }
                            #acae8a3522a088f:hover .line{border-color: #ffffff }#a5233a7075a07a0 {
  overflow: hidden;
}
#a5233a7075a07a0 .img-wrap {
  transition: all 0.3s ease-in;
}
#a5233a7075a07a0 .img-wrap:hover {
  transform: scale(1.1);
}
#af6bdae7daa332c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#af6bdae7daa332c  > .ele-wrap:hover {color: #ff8405;}#af6bdae7daa332c:hover * {color: #ff8405 }
                            #af6bdae7daa332c:hover .line{border-color: #ff8405 }#a1bc5a0624a56f9 {
  overflow: hidden;
}
#a1bc5a0624a56f9 .img-wrap {
  transition: all 0.3s ease-in;
}
#a1bc5a0624a56f9 .img-wrap:hover {
  transform: scale(1.1);
}
#ab6c4a7a94a492e > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ab6c4a7a94a492e  > .ele-wrap:hover {color: #ff8405;}#ab6c4a7a94a492e:hover * {color: #ff8405 }
                            #ab6c4a7a94a492e:hover .line{border-color: #ff8405 }#a3e2ba1660a8716 {
  overflow: hidden;
}
#a3e2ba1660a8716 .img-wrap {
  transition: all 0.3s ease-in;
}
#a3e2ba1660a8716 .img-wrap:hover {
  transform: scale(1.1);
}
#ac738a9684a7948 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ac738a9684a7948  > .ele-wrap:hover {color: #ff8405;}#ac738a9684a7948:hover * {color: #ff8405 }
                            #ac738a9684a7948:hover .line{border-color: #ff8405 }#a598da2b28a2391 {
  overflow: hidden;
}
#a598da2b28a2391 .img-wrap {
  transition: all 0.3s ease-in;
}
#a598da2b28a2391 .img-wrap:hover {
  transform: scale(1.1);
}
#a2ee3ab884af00c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a2ee3ab884af00c  > .ele-wrap:hover {color: #ff8405;}#a2ee3ab884af00c:hover * {color: #ff8405 }
                            #a2ee3ab884af00c:hover .line{border-color: #ff8405 }#a2549a0776a6cbe {
  overflow: hidden;
}
#a2549a0776a6cbe .img-wrap {
  transition: all 0.3s ease-in;
}
#a2549a0776a6cbe .img-wrap:hover {
  transform: scale(1.1);
}
#acb45a2f26a96d7 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#acb45a2f26a96d7  > .ele-wrap:hover {color: #ff8405;}#acb45a2f26a96d7:hover * {color: #ff8405 }
                            #acb45a2f26a96d7:hover .line{border-color: #ff8405 }#a207aa5cddaa288 {
  overflow: hidden;
}
#a207aa5cddaa288 .img-wrap {
  transition: all 0.3s ease-in;
}
#a207aa5cddaa288 .img-wrap:hover {
  transform: scale(1.1);
}
#acdc6af809a887f .uk-grid {
  margin-left: -15px;
}
#acdc6af809a887f .uk-grid > * {
  padding-left: 15px;
}
#acdc6af809a887f .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#acdc6af809a887f .ap-category-filter ul li.active {
  border-color: #ff8405;
  color: #ff8405;
}
#acdc6af809a887f .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#acdc6af809a887f .article .info {
  padding: 20px 10px;
  position: relative;
}
#acdc6af809a887f .article .info p {
  margin: 10px 0 10px;
}
#acdc6af809a887f .article svg {
  fill: currentColor;
}
#acdc6af809a887f .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#acdc6af809a887f .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#acdc6af809a887f .article.list-icon .info {
  padding-left: 25px;
}
#acdc6af809a887f .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#acdc6af809a887f .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
}
#acdc6af809a887f .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#acdc6af809a887f .article:hover .title {
  color: #ff8405;
}
#acdc6af809a887f .article:hover .datetime {
  color: #b6b6b6;
}
#acdc6af809a887f .article:hover .category {
  color: #b6b6b6;
}
#acdc6af809a887f .article:hover .abstract {
  color: #ff8405;
}
#acdc6af809a887f .article:hover .btn_icon {
  color: #ff8405;
}
#acdc6af809a887f .article:hover .list_icon {
  color: #b6b6b6;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a39b2a7c9aaa98b .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#ad2e1a9796a62f5 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ad2e1a9796a62f5 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ad2e1a9796a62f5 .ap-icon {
  margin-right: 6px;
}
#ad2e1a9796a62f5 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: bold;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 1px;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  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-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  margin-right: 10px;
  margin-top: 10px;
  width: 220px;
  height: 46px;
}
#ad2e1a9796a62f5 .menu-list > li.icon-bottom > a,
#ad2e1a9796a62f5 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ad2e1a9796a62f5 .menu-list > li.icon-bottom > a .ap-icon,
#ad2e1a9796a62f5 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ad2e1a9796a62f5 .menu-list > li.icon-bottom > a .ap-icon svg,
#ad2e1a9796a62f5 .menu-list > li.icon-top > a .ap-icon svg,
#ad2e1a9796a62f5 .menu-list > li.icon-bottom > a .ap-icon img,
#ad2e1a9796a62f5 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ad2e1a9796a62f5 .menu-list > li.icon-right > a .ap-icon,
#ad2e1a9796a62f5 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ad2e1a9796a62f5 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ad2e1a9796a62f5 .menu-list > li:hover > a,
#ad2e1a9796a62f5 .menu-list > li.active > a {
  background: #ff8405;
  background-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #ff8405;
  border-top-style: solid;
  border-right-color: #ff8405;
  border-left-color: #ff8405;
  border-bottom-color: #ff8405;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#ad2e1a9796a62f5 .menu-list ul,
#ad2e1a9796a62f5 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ad2e1a9796a62f5 .menu-list ul {
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
}
#ad2e1a9796a62f5 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ad2e1a9796a62f5 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ad2e1a9796a62f5 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#aab7ea1053a19e0 .uk-grid {
  margin-left: -15px;
}
#aab7ea1053a19e0 .uk-grid > * {
  padding-left: 15px;
}
#aab7ea1053a19e0 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #aab7ea1053a19e0 .uk-position-center-left-out {
    left: -30px;
  }
  #aab7ea1053a19e0 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a82cdade6fa49c7 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a82cdade6fa49c7  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#a82cdade6fa49c7:hover * {color: #ffffff }
                            #a82cdade6fa49c7:hover .line{border-color: #ffffff }#ab7e9aa873ad7de {
  overflow: hidden;
}
#ab7e9aa873ad7de .img-wrap {
  transition: all 0.3s ease-in;
}
#ab7e9aa873ad7de .img-wrap:hover {
  transform: scale(1.1);
}
#af9afae2c5a7bcb > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#af9afae2c5a7bcb  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#af9afae2c5a7bcb:hover * {color: #ffffff }
                            #af9afae2c5a7bcb:hover .line{border-color: #ffffff }#affcfa488faffea {
  overflow: hidden;
}
#affcfa488faffea .img-wrap {
  transition: all 0.3s ease-in;
}
#affcfa488faffea .img-wrap:hover {
  transform: scale(1.1);
}
#a4f1ea78c7a334d > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a4f1ea78c7a334d  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#a4f1ea78c7a334d:hover * {color: #ffffff }
                            #a4f1ea78c7a334d:hover .line{border-color: #ffffff }#a538ba3591a1445 {
  overflow: hidden;
}
#a538ba3591a1445 .img-wrap {
  transition: all 0.3s ease-in;
}
#a538ba3591a1445 .img-wrap:hover {
  transform: scale(1.1);
}
#ae819abbc0ac97f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ae819abbc0ac97f  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#ae819abbc0ac97f:hover * {color: #ffffff }
                            #ae819abbc0ac97f:hover .line{border-color: #ffffff }#a595da770ba8433 {
  overflow: hidden;
}
#a595da770ba8433 .img-wrap {
  transition: all 0.3s ease-in;
}
#a595da770ba8433 .img-wrap:hover {
  transform: scale(1.1);
}
#a547ca8dbda2c49 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a547ca8dbda2c49  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#a547ca8dbda2c49:hover * {color: #ffffff }
                            #a547ca8dbda2c49:hover .line{border-color: #ffffff }#a6e2fa6407a7e71 {
  overflow: hidden;
}
#a6e2fa6407a7e71 .img-wrap {
  transition: all 0.3s ease-in;
}
#a6e2fa6407a7e71 .img-wrap:hover {
  transform: scale(1.1);
}
#ad7a7afc80abf16 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ad7a7afc80abf16  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#ad7a7afc80abf16:hover * {color: #ffffff }
                            #ad7a7afc80abf16:hover .line{border-color: #ffffff }#a5af4a0975ae27e {
  overflow: hidden;
}
#a5af4a0975ae27e .img-wrap {
  transition: all 0.3s ease-in;
}
#a5af4a0975ae27e .img-wrap:hover {
  transform: scale(1.1);
}
#abf86af032ac27d .uk-grid {
  margin-left: -15px;
}
#abf86af032ac27d .uk-grid > * {
  padding-left: 15px;
}
#abf86af032ac27d .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#abf86af032ac27d .ap-category-filter ul li.active {
  border-color: #ff8405;
  color: #ff8405;
}
#abf86af032ac27d .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#abf86af032ac27d .article .info {
  padding: 20px 10px;
  position: relative;
}
#abf86af032ac27d .article .info p {
  margin: 10px 0 10px;
}
#abf86af032ac27d .article svg {
  fill: currentColor;
}
#abf86af032ac27d .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#abf86af032ac27d .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#abf86af032ac27d .article.list-icon .info {
  padding-left: 25px;
}
#abf86af032ac27d .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#abf86af032ac27d .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
}
#abf86af032ac27d .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#abf86af032ac27d .article:hover .title {
  color: #ff8405;
}
#abf86af032ac27d .article:hover .datetime {
  color: #b6b6b6;
}
#abf86af032ac27d .article:hover .category {
  color: #b6b6b6;
}
#abf86af032ac27d .article:hover .abstract {
  color: #ff8405;
}
#abf86af032ac27d .article:hover .btn_icon {
  color: #ff8405;
}
#abf86af032ac27d .article:hover .list_icon {
  color: #b6b6b6;
}
#a75a3afe57a7a75 .uk-grid {
  margin-left: -15px;
}
#a75a3afe57a7a75 .uk-grid > * {
  padding-left: 15px;
}
#a75a3afe57a7a75 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a75a3afe57a7a75 .ap-category-filter ul li.active {
  border-color: #ff8405;
  color: #ff8405;
}
#a75a3afe57a7a75 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a75a3afe57a7a75 .article .info {
  padding: 20px 10px;
  position: relative;
}
#a75a3afe57a7a75 .article .info p {
  margin: 10px 0 10px;
}
#a75a3afe57a7a75 .article svg {
  fill: currentColor;
}
#a75a3afe57a7a75 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#a75a3afe57a7a75 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#a75a3afe57a7a75 .article.list-icon .info {
  padding-left: 25px;
}
#a75a3afe57a7a75 .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#a75a3afe57a7a75 .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
}
#a75a3afe57a7a75 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a75a3afe57a7a75 .article:hover .title {
  color: #ff8405;
}
#a75a3afe57a7a75 .article:hover .datetime {
  color: #b6b6b6;
}
#a75a3afe57a7a75 .article:hover .category {
  color: #b6b6b6;
}
#a75a3afe57a7a75 .article:hover .abstract {
  color: #ff8405;
}
#a75a3afe57a7a75 .article:hover .btn_icon {
  color: #ff8405;
}
#a75a3afe57a7a75 .article:hover .list_icon {
  color: #b6b6b6;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#af23fa008ca0ecb .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a6a1aa9fafa0b50 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a6a1aa9fafa0b50 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a6a1aa9fafa0b50 .ap-icon {
  margin-right: 6px;
}
#a6a1aa9fafa0b50 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: bold;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 1px;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  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-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  margin-right: 10px;
  margin-top: 10px;
  width: 220px;
  height: 46px;
}
#a6a1aa9fafa0b50 .menu-list > li.icon-bottom > a,
#a6a1aa9fafa0b50 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a6a1aa9fafa0b50 .menu-list > li.icon-bottom > a .ap-icon,
#a6a1aa9fafa0b50 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a6a1aa9fafa0b50 .menu-list > li.icon-bottom > a .ap-icon svg,
#a6a1aa9fafa0b50 .menu-list > li.icon-top > a .ap-icon svg,
#a6a1aa9fafa0b50 .menu-list > li.icon-bottom > a .ap-icon img,
#a6a1aa9fafa0b50 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a6a1aa9fafa0b50 .menu-list > li.icon-right > a .ap-icon,
#a6a1aa9fafa0b50 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a6a1aa9fafa0b50 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a6a1aa9fafa0b50 .menu-list > li:hover > a,
#a6a1aa9fafa0b50 .menu-list > li.active > a {
  background: #ff8405;
  background-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #ff8405;
  border-top-style: solid;
  border-right-color: #ff8405;
  border-left-color: #ff8405;
  border-bottom-color: #ff8405;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a6a1aa9fafa0b50 .menu-list ul,
#a6a1aa9fafa0b50 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a6a1aa9fafa0b50 .menu-list ul {
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
}
#a6a1aa9fafa0b50 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a6a1aa9fafa0b50 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a6a1aa9fafa0b50 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a08a1ab47dacdd8 .uk-grid {
  margin-left: -15px;
}
#a08a1ab47dacdd8 .uk-grid > * {
  padding-left: 15px;
}
#a08a1ab47dacdd8 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a08a1ab47dacdd8 .uk-position-center-left-out {
    left: -30px;
  }
  #a08a1ab47dacdd8 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a2e54ab8b8afaba > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a2e54ab8b8afaba  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#a2e54ab8b8afaba:hover * {color: #ffffff }
                            #a2e54ab8b8afaba:hover .line{border-color: #ffffff }#a60aba2db5a3697 {
  overflow: hidden;
}
#a60aba2db5a3697 .img-wrap {
  transition: all 0.3s ease-in;
}
#a60aba2db5a3697 .img-wrap:hover {
  transform: scale(1.1);
}
#af875a4bf7a7a03 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#af875a4bf7a7a03  > .ele-wrap:hover {color: #ff8405;}#af875a4bf7a7a03:hover * {color: #ff8405 }
                            #af875a4bf7a7a03:hover .line{border-color: #ff8405 }#a924aa8ddaa6a94 {
  overflow: hidden;
}
#a924aa8ddaa6a94 .img-wrap {
  transition: all 0.3s ease-in;
}
#a924aa8ddaa6a94 .img-wrap:hover {
  transform: scale(1.1);
}
#ad37aa4a4fa8ac5 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ad37aa4a4fa8ac5  > .ele-wrap:hover {color: #ff8405;}#ad37aa4a4fa8ac5:hover * {color: #ff8405 }
                            #ad37aa4a4fa8ac5:hover .line{border-color: #ff8405 }#a1112abedfa0f9a {
  overflow: hidden;
}
#a1112abedfa0f9a .img-wrap {
  transition: all 0.3s ease-in;
}
#a1112abedfa0f9a .img-wrap:hover {
  transform: scale(1.1);
}
#ac8c8acb91a7128 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ac8c8acb91a7128  > .ele-wrap:hover {color: #ff8405;}#ac8c8acb91a7128:hover * {color: #ff8405 }
                            #ac8c8acb91a7128:hover .line{border-color: #ff8405 }#a346baa2fbaf4b5 {
  overflow: hidden;
}
#a346baa2fbaf4b5 .img-wrap {
  transition: all 0.3s ease-in;
}
#a346baa2fbaf4b5 .img-wrap:hover {
  transform: scale(1.1);
}
#a4092af109aff05 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a4092af109aff05  > .ele-wrap:hover {color: #ff8405;}#a4092af109aff05:hover * {color: #ff8405 }
                            #a4092af109aff05:hover .line{border-color: #ff8405 }#a5153a390bae167 {
  overflow: hidden;
}
#a5153a390bae167 .img-wrap {
  transition: all 0.3s ease-in;
}
#a5153a390bae167 .img-wrap:hover {
  transform: scale(1.1);
}
#aa0c4a98faac1ff > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#aa0c4a98faac1ff  > .ele-wrap:hover {color: #ff8405;}#aa0c4a98faac1ff:hover * {color: #ff8405 }
                            #aa0c4a98faac1ff:hover .line{border-color: #ff8405 }#a4004aefdfabd75 {
  overflow: hidden;
}
#a4004aefdfabd75 .img-wrap {
  transition: all 0.3s ease-in;
}
#a4004aefdfabd75 .img-wrap:hover {
  transform: scale(1.1);
}
#a203dae20ca5bb5 .uk-grid {
  margin-left: -15px;
}
#a203dae20ca5bb5 .uk-grid > * {
  padding-left: 15px;
}
#a203dae20ca5bb5 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a203dae20ca5bb5 .ap-category-filter ul li.active {
  border-color: #ff8405;
  color: #ff8405;
}
#a203dae20ca5bb5 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a203dae20ca5bb5 .article .info {
  padding: 20px 10px;
  position: relative;
}
#a203dae20ca5bb5 .article .info p {
  margin: 10px 0 10px;
}
#a203dae20ca5bb5 .article svg {
  fill: currentColor;
}
#a203dae20ca5bb5 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#a203dae20ca5bb5 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#a203dae20ca5bb5 .article.list-icon .info {
  padding-left: 25px;
}
#a203dae20ca5bb5 .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#a203dae20ca5bb5 .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
}
#a203dae20ca5bb5 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a203dae20ca5bb5 .article:hover .title {
  color: #ff8405;
}
#a203dae20ca5bb5 .article:hover .datetime {
  color: #b6b6b6;
}
#a203dae20ca5bb5 .article:hover .category {
  color: #b6b6b6;
}
#a203dae20ca5bb5 .article:hover .abstract {
  color: #ff8405;
}
#a203dae20ca5bb5 .article:hover .btn_icon {
  color: #ff8405;
}
#a203dae20ca5bb5 .article:hover .list_icon {
  color: #b6b6b6;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#af4beadfb5a20ef .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#ad897af258a8bd3 .uk-grid {
  margin-left: -15px;
}
#ad897af258a8bd3 .uk-grid > * {
  padding-left: 15px;
}
#ad897af258a8bd3 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #ad897af258a8bd3 .uk-position-center-left-out {
    left: -30px;
  }
  #ad897af258a8bd3 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a063da43a4aad9a > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a063da43a4aad9a  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#a063da43a4aad9a:hover * {color: #ffffff }
                            #a063da43a4aad9a:hover .line{border-color: #ffffff }#ac646a3ea8a3250 {
  overflow: hidden;
}
#ac646a3ea8a3250 .img-wrap {
  transition: all 0.3s ease-in;
}
#ac646a3ea8a3250 .img-wrap:hover {
  transform: scale(1.1);
}
#ad932a066bab675 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ad932a066bab675  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#ad932a066bab675:hover * {color: #ffffff }
                            #ad932a066bab675:hover .line{border-color: #ffffff }#a594da428ea39ea {
  overflow: hidden;
}
#a594da428ea39ea .img-wrap {
  transition: all 0.3s ease-in;
}
#a594da428ea39ea .img-wrap:hover {
  transform: scale(1.1);
}
#a5988a5cb4a27c6 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a5988a5cb4a27c6  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#a5988a5cb4a27c6:hover * {color: #ffffff }
                            #a5988a5cb4a27c6:hover .line{border-color: #ffffff }#a8283ab239a6f8b {
  overflow: hidden;
}
#a8283ab239a6f8b .img-wrap {
  transition: all 0.3s ease-in;
}
#a8283ab239a6f8b .img-wrap:hover {
  transform: scale(1.1);
}
#acde5a4bfca6d11 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#acde5a4bfca6d11  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#acde5a4bfca6d11:hover * {color: #ffffff }
                            #acde5a4bfca6d11:hover .line{border-color: #ffffff }#acda0ac606a3b9c {
  overflow: hidden;
}
#acda0ac606a3b9c .img-wrap {
  transition: all 0.3s ease-in;
}
#acda0ac606a3b9c .img-wrap:hover {
  transform: scale(1.1);
}
#a92b5a1494a01e5 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a92b5a1494a01e5  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#a92b5a1494a01e5:hover * {color: #ffffff }
                            #a92b5a1494a01e5:hover .line{border-color: #ffffff }#a8203a26bba0f3c {
  overflow: hidden;
}
#a8203a26bba0f3c .img-wrap {
  transition: all 0.3s ease-in;
}
#a8203a26bba0f3c .img-wrap:hover {
  transform: scale(1.1);
}
#a5179a2e89ab3c7 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a5179a2e89ab3c7  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#a5179a2e89ab3c7:hover * {color: #ffffff }
                            #a5179a2e89ab3c7:hover .line{border-color: #ffffff }#a97b7a0bb4a0885 {
  overflow: hidden;
}
#a97b7a0bb4a0885 .img-wrap {
  transition: all 0.3s ease-in;
}
#a97b7a0bb4a0885 .img-wrap:hover {
  transform: scale(1.1);
}
#aeecda8a12a908a .uk-grid {
  margin-left: -15px;
}
#aeecda8a12a908a .uk-grid > * {
  padding-left: 15px;
}
#aeecda8a12a908a .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#aeecda8a12a908a .ap-category-filter ul li.active {
  border-color: #ff8405;
  color: #ff8405;
}
#aeecda8a12a908a .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#aeecda8a12a908a .article .info {
  padding: 20px 10px;
  position: relative;
}
#aeecda8a12a908a .article .info p {
  margin: 10px 0 10px;
}
#aeecda8a12a908a .article svg {
  fill: currentColor;
}
#aeecda8a12a908a .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#aeecda8a12a908a .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#aeecda8a12a908a .article.list-icon .info {
  padding-left: 25px;
}
#aeecda8a12a908a .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#aeecda8a12a908a .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
}
#aeecda8a12a908a .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#aeecda8a12a908a .article:hover .title {
  color: #ff8405;
}
#aeecda8a12a908a .article:hover .datetime {
  color: #b6b6b6;
}
#aeecda8a12a908a .article:hover .category {
  color: #b6b6b6;
}
#aeecda8a12a908a .article:hover .abstract {
  color: #ff8405;
}
#aeecda8a12a908a .article:hover .btn_icon {
  color: #ff8405;
}
#aeecda8a12a908a .article:hover .list_icon {
  color: #b6b6b6;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#ae0d8a6ecda2470 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#ad4f7ab91aad8b8 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#ad4f7ab91aad8b8 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#ad4f7ab91aad8b8 .ap-icon {
  margin-right: 6px;
}
#ad4f7ab91aad8b8 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: bold;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 1px;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  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-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  margin-top: 10px;
  margin-left: 10px;
  width: 350px;
  height: 40px;
}
#ad4f7ab91aad8b8 .menu-list > li.icon-bottom > a,
#ad4f7ab91aad8b8 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#ad4f7ab91aad8b8 .menu-list > li.icon-bottom > a .ap-icon,
#ad4f7ab91aad8b8 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#ad4f7ab91aad8b8 .menu-list > li.icon-bottom > a .ap-icon svg,
#ad4f7ab91aad8b8 .menu-list > li.icon-top > a .ap-icon svg,
#ad4f7ab91aad8b8 .menu-list > li.icon-bottom > a .ap-icon img,
#ad4f7ab91aad8b8 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#ad4f7ab91aad8b8 .menu-list > li.icon-right > a .ap-icon,
#ad4f7ab91aad8b8 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#ad4f7ab91aad8b8 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#ad4f7ab91aad8b8 .menu-list > li:hover > a,
#ad4f7ab91aad8b8 .menu-list > li.active > a {
  background: #ff8405;
  background-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #ff8405;
  border-top-style: solid;
  border-right-color: #ff8405;
  border-left-color: #ff8405;
  border-bottom-color: #ff8405;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#ad4f7ab91aad8b8 .menu-list ul,
#ad4f7ab91aad8b8 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#ad4f7ab91aad8b8 .menu-list ul {
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
}
#ad4f7ab91aad8b8 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#ad4f7ab91aad8b8 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#ad4f7ab91aad8b8 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a3fc9a3e9fafd7a .uk-grid {
  margin-left: -15px;
}
#a3fc9a3e9fafd7a .uk-grid > * {
  padding-left: 15px;
}
#a3fc9a3e9fafd7a .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a3fc9a3e9fafd7a .uk-position-center-left-out {
    left: -30px;
  }
  #a3fc9a3e9fafd7a .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ac0b8ab74dac4cb > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ac0b8ab74dac4cb  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#ac0b8ab74dac4cb:hover * {color: #ffffff }
                            #ac0b8ab74dac4cb:hover .line{border-color: #ffffff }#ac6c0afe1badba7 {
  overflow: hidden;
}
#ac6c0afe1badba7 .img-wrap {
  transition: all 0.3s ease-in;
}
#ac6c0afe1badba7 .img-wrap:hover {
  transform: scale(1.1);
}
#ac532a5570aef30 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ac532a5570aef30  > .ele-wrap:hover {color: #ff8405;}#ac532a5570aef30:hover * {color: #ff8405 }
                            #ac532a5570aef30:hover .line{border-color: #ff8405 }#a42deab696a5279 {
  overflow: hidden;
}
#a42deab696a5279 .img-wrap {
  transition: all 0.3s ease-in;
}
#a42deab696a5279 .img-wrap:hover {
  transform: scale(1.1);
}
#adc89ae91aa2b64 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#adc89ae91aa2b64  > .ele-wrap:hover {color: #ff8405;}#adc89ae91aa2b64:hover * {color: #ff8405 }
                            #adc89ae91aa2b64:hover .line{border-color: #ff8405 }#a3f31a27e8a9974 {
  overflow: hidden;
}
#a3f31a27e8a9974 .img-wrap {
  transition: all 0.3s ease-in;
}
#a3f31a27e8a9974 .img-wrap:hover {
  transform: scale(1.1);
}
#a264fa37f2abfa7 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a264fa37f2abfa7  > .ele-wrap:hover {color: #ff8405;}#a264fa37f2abfa7:hover * {color: #ff8405 }
                            #a264fa37f2abfa7:hover .line{border-color: #ff8405 }#aeba1a0741a684a {
  overflow: hidden;
}
#aeba1a0741a684a .img-wrap {
  transition: all 0.3s ease-in;
}
#aeba1a0741a684a .img-wrap:hover {
  transform: scale(1.1);
}
#a877eadef8ac551 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a877eadef8ac551  > .ele-wrap:hover {color: #ff8405;}#a877eadef8ac551:hover * {color: #ff8405 }
                            #a877eadef8ac551:hover .line{border-color: #ff8405 }#a6329ad5aeadfbc {
  overflow: hidden;
}
#a6329ad5aeadfbc .img-wrap {
  transition: all 0.3s ease-in;
}
#a6329ad5aeadfbc .img-wrap:hover {
  transform: scale(1.1);
}
#a469aa92f1aab88 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a469aa92f1aab88  > .ele-wrap:hover {color: #ff8405;}#a469aa92f1aab88:hover * {color: #ff8405 }
                            #a469aa92f1aab88:hover .line{border-color: #ff8405 }#a958baab55a8050 {
  overflow: hidden;
}
#a958baab55a8050 .img-wrap {
  transition: all 0.3s ease-in;
}
#a958baab55a8050 .img-wrap:hover {
  transform: scale(1.1);
}
#ac101aadd2a3e7a .uk-grid {
  margin-left: -15px;
}
#ac101aadd2a3e7a .uk-grid > * {
  padding-left: 15px;
}
#ac101aadd2a3e7a .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#ac101aadd2a3e7a .ap-category-filter ul li.active {
  border-color: #ff8405;
  color: #ff8405;
}
#ac101aadd2a3e7a .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#ac101aadd2a3e7a .article .info {
  padding: 20px 10px;
  position: relative;
}
#ac101aadd2a3e7a .article .info p {
  margin: 10px 0 10px;
}
#ac101aadd2a3e7a .article svg {
  fill: currentColor;
}
#ac101aadd2a3e7a .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#ac101aadd2a3e7a .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#ac101aadd2a3e7a .article.list-icon .info {
  padding-left: 25px;
}
#ac101aadd2a3e7a .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#ac101aadd2a3e7a .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
}
#ac101aadd2a3e7a .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#ac101aadd2a3e7a .article:hover .title {
  color: #ff8405;
}
#ac101aadd2a3e7a .article:hover .datetime {
  color: #b6b6b6;
}
#ac101aadd2a3e7a .article:hover .category {
  color: #b6b6b6;
}
#ac101aadd2a3e7a .article:hover .abstract {
  color: #ff8405;
}
#ac101aadd2a3e7a .article:hover .btn_icon {
  color: #ff8405;
}
#ac101aadd2a3e7a .article:hover .list_icon {
  color: #b6b6b6;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a94d5ae559a0189 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a728caa2baa0349 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a728caa2baa0349 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a728caa2baa0349 .ap-icon {
  margin-right: 6px;
}
#a728caa2baa0349 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: bold;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 1px;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  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-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  margin-top: 10px;
  margin-left: 10px;
  width: 350px;
  height: 40px;
}
#a728caa2baa0349 .menu-list > li.icon-bottom > a,
#a728caa2baa0349 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a728caa2baa0349 .menu-list > li.icon-bottom > a .ap-icon,
#a728caa2baa0349 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a728caa2baa0349 .menu-list > li.icon-bottom > a .ap-icon svg,
#a728caa2baa0349 .menu-list > li.icon-top > a .ap-icon svg,
#a728caa2baa0349 .menu-list > li.icon-bottom > a .ap-icon img,
#a728caa2baa0349 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a728caa2baa0349 .menu-list > li.icon-right > a .ap-icon,
#a728caa2baa0349 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a728caa2baa0349 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a728caa2baa0349 .menu-list > li:hover > a,
#a728caa2baa0349 .menu-list > li.active > a {
  background: #ff8405;
  background-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #ff8405;
  border-top-style: solid;
  border-right-color: #ff8405;
  border-left-color: #ff8405;
  border-bottom-color: #ff8405;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a728caa2baa0349 .menu-list ul,
#a728caa2baa0349 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a728caa2baa0349 .menu-list ul {
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
}
#a728caa2baa0349 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a728caa2baa0349 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a728caa2baa0349 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a3c3ea9f69aa3e2 .uk-grid {
  margin-left: -15px;
}
#a3c3ea9f69aa3e2 .uk-grid > * {
  padding-left: 15px;
}
#a3c3ea9f69aa3e2 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a3c3ea9f69aa3e2 .uk-position-center-left-out {
    left: -30px;
  }
  #a3c3ea9f69aa3e2 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a728ca06caa373b > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a728ca06caa373b  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#a728ca06caa373b:hover * {color: #ffffff }
                            #a728ca06caa373b:hover .line{border-color: #ffffff }#a4429a2787afdac {
  overflow: hidden;
}
#a4429a2787afdac .img-wrap {
  transition: all 0.3s ease-in;
}
#a4429a2787afdac .img-wrap:hover {
  transform: scale(1.1);
}
#a0011aa0d1ab69e > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a0011aa0d1ab69e  > .ele-wrap:hover {color: #ff8405;}#a0011aa0d1ab69e:hover * {color: #ff8405 }
                            #a0011aa0d1ab69e:hover .line{border-color: #ff8405 }#a3a7ba1582ac7dd {
  overflow: hidden;
}
#a3a7ba1582ac7dd .img-wrap {
  transition: all 0.3s ease-in;
}
#a3a7ba1582ac7dd .img-wrap:hover {
  transform: scale(1.1);
}
#a99f4ae1aba1516 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a99f4ae1aba1516  > .ele-wrap:hover {color: #ff8405;}#a99f4ae1aba1516:hover * {color: #ff8405 }
                            #a99f4ae1aba1516:hover .line{border-color: #ff8405 }#aef0fa36f1a7f35 {
  overflow: hidden;
}
#aef0fa36f1a7f35 .img-wrap {
  transition: all 0.3s ease-in;
}
#aef0fa36f1a7f35 .img-wrap:hover {
  transform: scale(1.1);
}
#a5402a1598a5b1f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a5402a1598a5b1f  > .ele-wrap:hover {color: #ff8405;}#a5402a1598a5b1f:hover * {color: #ff8405 }
                            #a5402a1598a5b1f:hover .line{border-color: #ff8405 }#a2dd4a5eb8aa7ed {
  overflow: hidden;
}
#a2dd4a5eb8aa7ed .img-wrap {
  transition: all 0.3s ease-in;
}
#a2dd4a5eb8aa7ed .img-wrap:hover {
  transform: scale(1.1);
}
#ae1ffa1717ae565 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ae1ffa1717ae565  > .ele-wrap:hover {color: #ff8405;}#ae1ffa1717ae565:hover * {color: #ff8405 }
                            #ae1ffa1717ae565:hover .line{border-color: #ff8405 }#aa829a5b61a20b5 {
  overflow: hidden;
}
#aa829a5b61a20b5 .img-wrap {
  transition: all 0.3s ease-in;
}
#aa829a5b61a20b5 .img-wrap:hover {
  transform: scale(1.1);
}
#a3753a9e1faf020 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a3753a9e1faf020  > .ele-wrap:hover {color: #ff8405;}#a3753a9e1faf020:hover * {color: #ff8405 }
                            #a3753a9e1faf020:hover .line{border-color: #ff8405 }#a2719a59e9a95f0 {
  overflow: hidden;
}
#a2719a59e9a95f0 .img-wrap {
  transition: all 0.3s ease-in;
}
#a2719a59e9a95f0 .img-wrap:hover {
  transform: scale(1.1);
}
#ad5c9a4cf5ad666 .uk-grid {
  margin-left: -15px;
}
#ad5c9a4cf5ad666 .uk-grid > * {
  padding-left: 15px;
}
#ad5c9a4cf5ad666 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#ad5c9a4cf5ad666 .ap-category-filter ul li.active {
  border-color: #ff8405;
  color: #ff8405;
}
#ad5c9a4cf5ad666 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#ad5c9a4cf5ad666 .article .info {
  padding: 20px 10px;
  position: relative;
}
#ad5c9a4cf5ad666 .article .info p {
  margin: 10px 0 10px;
}
#ad5c9a4cf5ad666 .article svg {
  fill: currentColor;
}
#ad5c9a4cf5ad666 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#ad5c9a4cf5ad666 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#ad5c9a4cf5ad666 .article.list-icon .info {
  padding-left: 25px;
}
#ad5c9a4cf5ad666 .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#ad5c9a4cf5ad666 .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
}
#ad5c9a4cf5ad666 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#ad5c9a4cf5ad666 .article:hover .title {
  color: #ff8405;
}
#ad5c9a4cf5ad666 .article:hover .datetime {
  color: #b6b6b6;
}
#ad5c9a4cf5ad666 .article:hover .category {
  color: #b6b6b6;
}
#ad5c9a4cf5ad666 .article:hover .abstract {
  color: #ff8405;
}
#ad5c9a4cf5ad666 .article:hover .btn_icon {
  color: #ff8405;
}
#ad5c9a4cf5ad666 .article:hover .list_icon {
  color: #b6b6b6;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a958aa1a80ab028 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a9ef5a8500a02e6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  text-align: left;
}
#a9ef5a8500a02e6 .menu-list li {
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
}
#a9ef5a8500a02e6 .ap-icon {
  margin-right: 6px;
}
#a9ef5a8500a02e6 .menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 4px;
  line-height: 1.5;
  margin: 0;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  background: transparent;
  font-weight: bold;
  font-style: normal;
  font-size: 13px;
  font-family: inherit;
  color: #333;
  line-height: 26px;
  border-top-width: 1px;
  border-top-color: #999999;
  border-top-style: solid;
  border-right-color: #999999;
  border-left-color: #999999;
  border-bottom-color: #999999;
  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-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  margin-bottom: 10px;
  margin-top: 10px;
  margin-left: 10px;
  width: 350px;
  height: 40px;
}
#a9ef5a8500a02e6 .menu-list > li.icon-bottom > a,
#a9ef5a8500a02e6 .menu-list > li.icon-top > a {
  flex-direction: column;
}
#a9ef5a8500a02e6 .menu-list > li.icon-bottom > a .ap-icon,
#a9ef5a8500a02e6 .menu-list > li.icon-top > a .ap-icon {
  margin-right: 0;
}
#a9ef5a8500a02e6 .menu-list > li.icon-bottom > a .ap-icon svg,
#a9ef5a8500a02e6 .menu-list > li.icon-top > a .ap-icon svg,
#a9ef5a8500a02e6 .menu-list > li.icon-bottom > a .ap-icon img,
#a9ef5a8500a02e6 .menu-list > li.icon-top > a .ap-icon img {
  height: auto;
}
#a9ef5a8500a02e6 .menu-list > li.icon-right > a .ap-icon,
#a9ef5a8500a02e6 .menu-list > li.icon-bottom > a .ap-icon {
  order: 1;
}
#a9ef5a8500a02e6 .menu-list > li.icon-right > a .ap-icon {
  margin-right: 0;
  margin-left: 6px;
}
#a9ef5a8500a02e6 .menu-list > li:hover > a,
#a9ef5a8500a02e6 .menu-list > li.active > a {
  background: #ff8405;
  background-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #fff;
  border-top-width: 1px;
  border-top-color: #ff8405;
  border-top-style: solid;
  border-right-color: #ff8405;
  border-left-color: #ff8405;
  border-bottom-color: #ff8405;
  border-right-width: 1px;
  border-left-width: 1px;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
}
#a9ef5a8500a02e6 .menu-list ul,
#a9ef5a8500a02e6 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
}
#a9ef5a8500a02e6 .menu-list ul {
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
}
#a9ef5a8500a02e6 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a9ef5a8500a02e6 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a9ef5a8500a02e6 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  clear: both;
  text-align: center;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
#a9f0da3cf3afd31 .uk-grid {
  margin-left: -15px;
}
#a9f0da3cf3afd31 .uk-grid > * {
  padding-left: 15px;
}
#a9f0da3cf3afd31 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a9f0da3cf3afd31 .uk-position-center-left-out {
    left: -30px;
  }
  #a9f0da3cf3afd31 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ad2a7a7c59a2770 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ad2a7a7c59a2770  > .ele-wrap:hover {background-color: rgba(255, 132, 5, 1);color: #ffffff;}#ad2a7a7c59a2770:hover * {color: #ffffff }
                            #ad2a7a7c59a2770:hover .line{border-color: #ffffff }#a3d3da24f9a5dce {
  overflow: hidden;
}
#a3d3da24f9a5dce .img-wrap {
  transition: all 0.3s ease-in;
}
#a3d3da24f9a5dce .img-wrap:hover {
  transform: scale(1.1);
}
#ac85ba0daaa1beb > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ac85ba0daaa1beb  > .ele-wrap:hover {color: #ff8405;}#ac85ba0daaa1beb:hover * {color: #ff8405 }
                            #ac85ba0daaa1beb:hover .line{border-color: #ff8405 }#aafe8a018eac57f {
  overflow: hidden;
}
#aafe8a018eac57f .img-wrap {
  transition: all 0.3s ease-in;
}
#aafe8a018eac57f .img-wrap:hover {
  transform: scale(1.1);
}
#af7b2ac4d2ad6a0 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#af7b2ac4d2ad6a0  > .ele-wrap:hover {color: #ff8405;}#af7b2ac4d2ad6a0:hover * {color: #ff8405 }
                            #af7b2ac4d2ad6a0:hover .line{border-color: #ff8405 }#a4918ae494a040c {
  overflow: hidden;
}
#a4918ae494a040c .img-wrap {
  transition: all 0.3s ease-in;
}
#a4918ae494a040c .img-wrap:hover {
  transform: scale(1.1);
}
#a9709a62bdace1c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a9709a62bdace1c  > .ele-wrap:hover {color: #ff8405;}#a9709a62bdace1c:hover * {color: #ff8405 }
                            #a9709a62bdace1c:hover .line{border-color: #ff8405 }#ae7dca77faadf90 {
  overflow: hidden;
}
#ae7dca77faadf90 .img-wrap {
  transition: all 0.3s ease-in;
}
#ae7dca77faadf90 .img-wrap:hover {
  transform: scale(1.1);
}
#a3473a298ba2147 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a3473a298ba2147  > .ele-wrap:hover {color: #ff8405;}#a3473a298ba2147:hover * {color: #ff8405 }
                            #a3473a298ba2147:hover .line{border-color: #ff8405 }#a9b8ea2907aebd6 {
  overflow: hidden;
}
#a9b8ea2907aebd6 .img-wrap {
  transition: all 0.3s ease-in;
}
#a9b8ea2907aebd6 .img-wrap:hover {
  transform: scale(1.1);
}
#ae570a5ac7a589a > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 2px;border-bottom-right-radius: 2px;border-top-left-radius: 2px;border-top-right-radius: 2px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ae570a5ac7a589a  > .ele-wrap:hover {color: #ff8405;}#ae570a5ac7a589a:hover * {color: #ff8405 }
                            #ae570a5ac7a589a:hover .line{border-color: #ff8405 }#ac143aaa32a3186 {
  overflow: hidden;
}
#ac143aaa32a3186 .img-wrap {
  transition: all 0.3s ease-in;
}
#ac143aaa32a3186 .img-wrap:hover {
  transform: scale(1.1);
}
#afad7ab7b9a90cb .uk-grid {
  margin-left: -15px;
}
#afad7ab7b9a90cb .uk-grid > * {
  padding-left: 15px;
}
#afad7ab7b9a90cb .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#afad7ab7b9a90cb .ap-category-filter ul li.active {
  border-color: #ff8405;
  color: #ff8405;
}
#afad7ab7b9a90cb .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#afad7ab7b9a90cb .article .info {
  padding: 20px 10px;
  position: relative;
}
#afad7ab7b9a90cb .article .info p {
  margin: 10px 0 10px;
}
#afad7ab7b9a90cb .article svg {
  fill: currentColor;
}
#afad7ab7b9a90cb .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#afad7ab7b9a90cb .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#afad7ab7b9a90cb .article.list-icon .info {
  padding-left: 25px;
}
#afad7ab7b9a90cb .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#afad7ab7b9a90cb .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #000000;
}
#afad7ab7b9a90cb .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#afad7ab7b9a90cb .article:hover .title {
  color: #ff8405;
}
#afad7ab7b9a90cb .article:hover .datetime {
  color: #b6b6b6;
}
#afad7ab7b9a90cb .article:hover .category {
  color: #b6b6b6;
}
#afad7ab7b9a90cb .article:hover .abstract {
  color: #ff8405;
}
#afad7ab7b9a90cb .article:hover .btn_icon {
  color: #ff8405;
}
#afad7ab7b9a90cb .article:hover .list_icon {
  color: #b6b6b6;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a9495a9955a46ec .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ab9d7a9015a8de9 {
  min-height: 90vh;
  /* mobile */
}
#ab9d7a9015a8de9 .search-highlight {
  background: yellow;
}
#ab9d7a9015a8de9 .el-item {
  padding: 0;
  border-bottom: 1px solid #ececec;
}
#ab9d7a9015a8de9 .el-title {
  margin-bottom: 20px;
}
#ab9d7a9015a8de9 .el-item:hover .el-title {
  color: #ffb804;
}
#ab9d7a9015a8de9 .img-wrap {
  overflow: hidden;
  display: block;
  border-radius: 4px;
}
#ab9d7a9015a8de9 .img-wrap img {
  transition: all .3s ease;
  border-radius: 4px;
}
#ab9d7a9015a8de9 .el-item:hover .img-wrap img {
  transform: scale(1.1);
}
#ab9d7a9015a8de9 .el-title a {
  font-size: 20px;
  color: #333;
  line-height: 36px;
}
#ab9d7a9015a8de9 .el-meta {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin: 6px 0;
}
#ab9d7a9015a8de9 .el-content {
  font-size: 14px;
  color: #777;
}
@media (max-width: 640px) {
  #ab9d7a9015a8de9 .el-title {
    margin-bottom: 0;
  }
  #ab9d7a9015a8de9 .el-title a {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }
  #ab9d7a9015a8de9 .category {
    font-size: 12px;
  }
  #ab9d7a9015a8de9 .el-content {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 6px 0 0px;
  }
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a9495a9955a46ec .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a068eab038a76a5 {
  /* 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------------------------*/
}
#a068eab038a76a5 * {
  font-family: 'PT Sans Caption', sans-serif, 'arial', 'Times New Roman';
}
#a068eab038a76a5 .error .clip .shadow {
  height: 180px;
  /*Contrall*/
}
#a068eab038a76a5 .error .clip:nth-of-type(2) .shadow {
  width: 130px;
  /*Contrall play with javascript*/
}
#a068eab038a76a5 .error .clip:nth-of-type(1) .shadow,
#a068eab038a76a5 .error .clip:nth-of-type(3) .shadow {
  width: 250px;
  /*Contrall*/
}
#a068eab038a76a5 .error .digit {
  width: 150px;
  /*Contrall*/
  height: 150px;
  /*Contrall*/
  line-height: 150px;
  /*Contrall*/
  font-size: 120px;
  font-weight: bold;
}
#a068eab038a76a5 .error h2 {
  font-size: 32px;
}
#a068eab038a76a5 .error .msg {
  top: -190px;
  left: 30%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 32px;
}
#a068eab038a76a5 .error span.triangle {
  top: 70%;
  right: 0%;
  border-left: 20px solid #535353;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
#a068eab038a76a5 .error .container-error-404 {
  margin-top: 10%;
  position: relative;
  height: 250px;
  padding-top: 40px;
  text-align: center;
}
#a068eab038a76a5 .error .container-error-404 .clip {
  display: inline-block;
  transform: skew(-45deg);
}
#a068eab038a76a5 .error .clip .shadow {
  overflow: hidden;
}
#a068eab038a76a5 .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);
}
#a068eab038a76a5 .error .clip:nth-of-type(3) .shadow:after,
#a068eab038a76a5 .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%;
}
#a068eab038a76a5 .error .clip:nth-of-type(3) .shadow:after {
  left: -8px;
}
#a068eab038a76a5 .error .digit {
  position: relative;
  top: 8%;
  color: white;
  background: #07B3F9;
  border-radius: 50%;
  display: inline-block;
  transform: skew(45deg);
}
#a068eab038a76a5 .error .clip:nth-of-type(2) .digit {
  left: -10%;
}
#a068eab038a76a5 .error .clip:nth-of-type(1) .digit {
  right: -20%;
}
#a068eab038a76a5 .error .clip:nth-of-type(3) .digit {
  left: -20%;
}
#a068eab038a76a5 .error h2 {
  color: #A2A2A2;
  font-weight: bold;
  padding-bottom: 20px;
}
#a068eab038a76a5 .error .msg {
  position: relative;
  z-index: 9999;
  display: block;
  background: #535353;
  color: #A2A2A2;
  border-radius: 50%;
  font-style: italic;
}
#a068eab038a76a5 .error .triangle {
  position: absolute;
  z-index: 999;
  transform: rotate(45deg);
  content: "";
  width: 0;
  height: 0;
}
@media (max-width: 767px) {
  #a068eab038a76a5 {
    /* Error Page */
    /* Error Page */
  }
  #a068eab038a76a5 .error .clip .shadow {
    height: 100px;
    /*Contrall*/
  }
  #a068eab038a76a5 .error .clip:nth-of-type(2) .shadow {
    width: 80px;
    /*Contrall play with javascript*/
  }
  #a068eab038a76a5 .error .clip:nth-of-type(1) .shadow,
  #a068eab038a76a5 .error .clip:nth-of-type(3) .shadow {
    width: 100px;
    /*Contrall*/
  }
  #a068eab038a76a5 .error .digit {
    width: 80px;
    /*Contrall*/
    height: 80px;
    /*Contrall*/
    line-height: 80px;
    /*Contrall*/
    font-size: 52px;
  }
  #a068eab038a76a5 .error h2 {
    font-size: 24px;
  }
  #a068eab038a76a5 .error .msg {
    top: -110px;
    left: 15%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
  #a068eab038a76a5 .error span.triangle {
    top: 70%;
    right: -3%;
    border-left: 10px solid #535353;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
  #a068eab038a76a5 .error .container-error-404 {
    height: 150px;
  }
}
#a068eab038a76a5 .overlay {
  position: relative;
  z-index: 20;
}
#a068eab038a76a5 .ground-color {
  background: white;
}
#a068eab038a76a5 .item-bg-color {
  background: #EAEAEA;
}
#a068eab038a76a5 .padding-top {
  padding-top: 10px;
}
#a068eab038a76a5 .padding-bottom {
  padding-bottom: 10px;
}
#a068eab038a76a5 .padding-vertical {
  padding-top: 10px;
  padding-bottom: 10px;
}
#a068eab038a76a5 .padding-horizontal {
  padding-left: 10px;
  padding-right: 10px;
}
#a068eab038a76a5 .padding-all {
  padding: 10px;
}
#a068eab038a76a5 .no-padding-left {
  padding-left: 0px;
}
#a068eab038a76a5 .no-padding-right {
  padding-right: 0px;
}
#a068eab038a76a5 .no-vertical-padding {
  padding-top: 0px;
  padding-bottom: 0px;
}
#a068eab038a76a5 .no-horizontal-padding {
  padding-left: 0px;
  padding-right: 0px;
}
#a068eab038a76a5 .no-padding {
  padding: 0px;
}
#a068eab038a76a5 .margin-top {
  margin-top: 10px;
}
#a068eab038a76a5 .margin-bottom {
  margin-bottom: 10px;
}
#a068eab038a76a5 .margin-right {
  margin-right: 10px;
}
#a068eab038a76a5 .margin-left {
  margin-left: 10px;
}
#a068eab038a76a5 .margin-horizontal {
  margin-left: 10px;
  margin-right: 10px;
}
#a068eab038a76a5 .margin-vertical {
  margin-top: 10px;
  margin-bottom: 10px;
}
#a068eab038a76a5 .margin-all {
  margin: 10px;
}
#a068eab038a76a5 .no-margin {
  margin: 0px;
}
#a068eab038a76a5 .no-vertical-margin {
  margin-top: 0px;
  margin-bottom: 0px;
}
#a068eab038a76a5 .no-horizontal-margin {
  margin-left: 0px;
  margin-right: 0px;
}
#a068eab038a76a5 .inside-col-shrink {
  margin: 0px 20px;
}
#a068eab038a76a5 hr {
  margin: 0px;
  padding: 0px;
  border-top: 1px dashed #999;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#ae1c9aba9bab250 .ele-wrap {color: #fff;font-size: 16px;font-weight: 500;background-color: #60bc57;border-radius: 25px;}#ae1c9aba9bab250 .ele-wrap:hover {background-color: #509c49;}#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a9495a9955a46ec .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a5210abd9caa798 .login-main {
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(12, 1, 4, 0.05);
}
#a5210abd9caa798 .switch_item {
  margin-right: 10px;
}
#a5210abd9caa798 a.switch_item:hover {
  text-decoration: underline;
}
#a5210abd9caa798 .slider {
  width: 420px;
  height: 600px;
}
#a5210abd9caa798 .uk-slideshow-items {
  height: 100%;
}
#a5210abd9caa798 .uk-slideshow-items a {
  width: 100%;
  height: 100%;
  display: block;
}
#a5210abd9caa798 .login-wrap {
  width: 100%;
  height: 100%;
}
#a5210abd9caa798 .uk-dotnav > * > * {
  background: #fff;
  border-color: #fff;
  opacity: .5;
}
#a5210abd9caa798 .uk-dotnav > .uk-active > * {
  border-color: #0076fe;
  background: #0076fe;
}
#a5210abd9caa798 .phone-login-box {
  margin: 40px auto 40px;
}
#a5210abd9caa798 .login-header {
  margin-bottom: 24px;
}
#a5210abd9caa798 .login-header h4 {
  font-size: 22px;
  font-weight: bolder;
  line-height: 1;
  padding-left: 20px;
  border-left: 4px solid #0076fe;
}
#a5210abd9caa798 .input-item {
  width: 330px;
  height: 45px;
  background-color: #f0f2f7;
  border-radius: 22px;
  border: solid 1px #e3e8f0;
  position: relative;
  overflow: hidden;
}
#a5210abd9caa798 .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;
}
#a5210abd9caa798 .forget_password {
  cursor: pointer;
}
#a5210abd9caa798 .forget_password:hover {
  color: #ff8405;
}
#a5210abd9caa798 .input-item input.error,
#a5210abd9caa798 .input-item input.error::placeholder {
  color: #fc4343;
}
#a5210abd9caa798 .input-item input::placeholder {
  color: #999;
}
#a5210abd9caa798 .input-item .icon {
  position: absolute;
  left: 10px;
  top: 12px;
  fill: #ccc;
  width: 20px;
}
#a5210abd9caa798 .form-item {
  margin: 24px 0;
}
#a5210abd9caa798 .verifycode-input .input-item {
  width: 200px;
  float: left;
}
#a5210abd9caa798 .send-code {
  float: left;
  margin-left: 20px;
}
#a5210abd9caa798 .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;
}
#a5210abd9caa798 .submit {
  width: 330px;
  height: 45px;
  background-color: #0076fe;
  border-radius: 22px;
  font-size: 18px;
  line-height: 45px;
  color: #fff;
  cursor: pointer;
}
#a5210abd9caa798 .error {
  color: #fc4343;
  font-size: 12px;
  padding-left: 10px;
  display: block;
  max-width: 300px;
}
#a5210abd9caa798 .login_btn_wrap {
  text-align: center;
}
#a5210abd9caa798 .login_btn_wrap .submit {
  display: block;
  margin-bottom: 10px;
}
#a5210abd9caa798 .input-item .pwd-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -10px;
  font-size: 16px;
  color: #999;
  cursor: pointer;
}
#a5210abd9caa798 .input-item .pwd-toggle:hover {
  color: currentColor;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a9495a9955a46ec .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#abf71a8c86a3a03 .sidebar {
  width: 150px;
  max-width: 150px;
  height: 100%;
}
#abf71a8c86a3a03 .nav-items {
  background: #fafafa;
  min-height: 200px;
}
#abf71a8c86a3a03 .phone-info {
  background: #fafafa;
  margin-top: 10px;
  font-size: 12px;
  padding: 22px 4px 20px 16px;
  line-height: 1.5;
  color: #666;
}
#abf71a8c86a3a03 .phone-info .phone {
  line-height: 1.5;
  color: #333;
  font-size: 18px;
  font-family: Arial;
}
#abf71a8c86a3a03 .nav-type {
  line-height: 37px;
  padding-left: 20px;
  cursor: pointer;
}
#abf71a8c86a3a03 .nav-type.active {
  color: #FFF;
  cursor: default;
  background: #ff658c;
}
#abf71a8c86a3a03 .content {
  padding-bottom: 60px;
  color: #666;
  border: 1px solid #f0f0f0;
  min-height: 400px;
}
#abf71a8c86a3a03 .nav-list {
  padding: 0 20px;
}
#abf71a8c86a3a03 .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;
}
#abf71a8c86a3a03 .nav-list .nav-item.active {
  background-color: #ff5c89;
  color: #fff;
  cursor: default;
}
#abf71a8c86a3a03 .order-item {
  margin-top: 10px;
  background: #fff;
  padding: 0 20px;
}
#abf71a8c86a3a03 .order-item:hover {
  background: #f7f7f7;
}
#abf71a8c86a3a03 .del-order {
  cursor: pointer;
}
#abf71a8c86a3a03 .order-item .order-title {
  line-height: 40px;
  color: #666;
  font-size: 13px;
  border-bottom: 1px solid #f7f7f7;
}
#abf71a8c86a3a03 .goods-item {
  padding: 10px 0;
  border-bottom: 1px solid #ececec;
  cursor: pointer;
}
#abf71a8c86a3a03 .order-goods-list .goods-item:last-child {
  border-bottom: none;
}
#abf71a8c86a3a03 .goods-item img {
  width: 100px;
  height: 100px;
  background: #f4f4f4;
}
#abf71a8c86a3a03 .goods-item .goods-info {
  padding: 0 15px;
}
#abf71a8c86a3a03 .appoint-time span {
  color: #e4393c;
  background-color: #f9eeee;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 2px;
  line-height: 1;
}
#abf71a8c86a3a03 .appoint-time {
  margin-bottom: 4px;
}
#abf71a8c86a3a03 .appoint-name {
  color: #333;
  font-size: 14px;
}
#abf71a8c86a3a03 .appoint-info {
  padding: 0 15px;
  font-size: 12px;
  color: #888;
}
#abf71a8c86a3a03 .goods-item .goods-name {
  color: #333;
}
#abf71a8c86a3a03 .goods-item .sku-name {
  color: #999;
  font-size: 12px;
}
#abf71a8c86a3a03 .order-total-info {
  padding-bottom: 10px;
  color: #999;
  font-size: 12px;
}
#abf71a8c86a3a03 .order-total-info .total-price {
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  font-size: 14px;
}
#abf71a8c86a3a03 .load-more {
  font-size: 12px;
  padding-bottom: 15px;
  color: #999;
}
#abf71a8c86a3a03 .order-btns {
  padding: 10px 0;
  border-top: 1px solid #f7f7f7;
}
#abf71a8c86a3a03 .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;
}
#abf71a8c86a3a03 .order-btns .btn-warn {
  color: #fff;
  background: #eb3c3c;
  border-color: #eb3c3c;
  cursor: pointer;
}
#abf71a8c86a3a03 .appoint-info .title {
  font-weight: bold;
  color: #333;
}
#abf71a8c86a3a03 .coupon-item {
  margin: 10px 30px;
  display: inline-flex;
  width: 42%;
}
#abf71a8c86a3a03 .setting-form {
  padding: 30px 20px;
}
#abf71a8c86a3a03 .setting-item {
  margin-bottom: 20px;
  font-size: 13px;
  color: #666;
  line-height: 18px;
}
#abf71a8c86a3a03 .setting-item .label {
  display: inline-block;
  margin-right: 6px;
  text-align: right;
  min-width: 120px;
}
#abf71a8c86a3a03 .setting-item .input-text {
  border: 1px solid #ccc;
  line-height: 28px;
  padding: 0 10px;
  min-width: 200px;
  font-size: 13px;
}
#abf71a8c86a3a03 .setting-form .setting-btns {
  margin-left: 130px;
}
#abf71a8c86a3a03 .setting-form .uk-button {
  height: 30px;
  line-height: 30px;
  margin-right: 8px;
}
#abf71a8c86a3a03 .setting-wrap {
  position: relative;
}
#abf71a8c86a3a03 .user-info {
  border: 1px solid #ccc;
  width: 300px;
  position: absolute;
  right: 80px;
  top: 30px;
  color: #666;
  padding: 10px;
  font-size: 13px;
  background: #f9f9f9;
}
#abf71a8c86a3a03 .user-info .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
  margin-right: 10px;
}
#abf71a8c86a3a03 .user-info .levels {
  color: #888;
  font-size: 12px;
}
#abf71a8c86a3a03 .address-wrap {
  padding: 30px 20px;
}
#abf71a8c86a3a03 .addr-header {
  font-size: 18px;
  color: #333;
  margin: 0;
}
#abf71a8c86a3a03 .addr-detail {
  border-bottom: 1px solid #ececec;
  margin-bottom: 10px;
}
#abf71a8c86a3a03 .addr-list {
  min-height: 200px;
}
#abf71a8c86a3a03 .addr-detail .addr-item-name,
#abf71a8c86a3a03 .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;
}
#abf71a8c86a3a03 .addr-detail .addr-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
#abf71a8c86a3a03 .addr-detail .addr-item-name {
  color: #e93b3d;
  border-color: #e93b3d;
}
#abf71a8c86a3a03 .addr-detail {
  padding: 12px 0;
  flex: 1;
}
#abf71a8c86a3a03 .op-btns a {
  font-size: 12px;
  color: #e93b3d;
  margin-left: 6px;
}
#abf71a8c86a3a03 .add-addr {
  height: 32px;
  line-height: 30px;
}
#abf71a8c86a3a03 .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;
}
#abf71a8c86a3a03 .publish-item {
  cursor: default;
  min-height: 120px;
}
#abf71a8c86a3a03 .publish-item .status-0 {
  background-image: url(/resources/sys/img/icons/info-unread.png);
}
#abf71a8c86a3a03 .publish-item .status-1 {
  background-image: url(/resources/sys/img/icons/info-fail.png);
}
#abf71a8c86a3a03 .publish-item .btns a {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 2px;
  color: #fff;
  background: #ff8405;
}
#abf71a8c86a3a03 .publish-item .btns .del-info {
  background: #ccc;
  color: #999;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a9495a9955a46ec .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a53dfaec2aa74ae .search-highlight {
  background: yellow;
}
#a53dfaec2aa74ae .category-list {
  background: #fff;
  padding: 20px 40px;
}
#a53dfaec2aa74ae .goods-sort {
  padding: 10px 0;
}
#a53dfaec2aa74ae .goods {
  padding-bottom: 20px;
}
#a53dfaec2aa74ae .goods-sort .category {
  border-bottom: 1px dashed #dedede;
  position: relative;
}
#a53dfaec2aa74ae .goods-sort .category .name {
  font-size: 14px;
  color: #999;
  position: absolute;
  left: 0;
  top: 0;
}
#a53dfaec2aa74ae .goods-sort .category-items {
  overflow: hidden;
  margin-bottom: 4px;
  margin-left: 65px;
}
#a53dfaec2aa74ae .goods-sort .category-item {
  float: left;
  color: #333;
  margin-right: 30px;
  margin-bottom: 10px;
  font-size: 14px;
}
#a53dfaec2aa74ae .goods-sort .sort-default.active,
#a53dfaec2aa74ae .goods-sort .category-item.active {
  color: red;
}
#a53dfaec2aa74ae .sorts {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  line-height: 1;
  border-bottom: 1px solid #dedede;
}
#a53dfaec2aa74ae .sorts .name {
  font-size: 14px;
  color: #999;
  margin-right: 28px;
}
#a53dfaec2aa74ae .sorts .sort {
  display: inline-block;
  margin-right: 30px;
  font-size: 14px;
  color: #333;
}
#a53dfaec2aa74ae .sorts .sort.active span {
  color: #e4393c;
}
#a53dfaec2aa74ae .sorts .fa {
  color: #999;
}
#a53dfaec2aa74ae .sorts .fa.active {
  color: #e4393c;
}
#a53dfaec2aa74ae .sorts .sort-icon {
  display: inline-block;
  margin-left: 6px;
}
#a53dfaec2aa74ae .sorts .sort-icon i {
  display: block;
  font-size: 12px;
  line-height: 1;
  height: 2px;
}
#a53dfaec2aa74ae .uk-container {
  min-height: 200px;
}
#a53dfaec2aa74ae .not-found {
  line-height: 200px;
}
#a53dfaec2aa74ae .goods .item {
  color: #333;
  font-weight: 400;
}
#a53dfaec2aa74ae .img-alter {
  display: none;
}
#a53dfaec2aa74ae .goods .item:hover .img-main {
  display: none;
}
#a53dfaec2aa74ae .goods .item:hover .img-alter {
  display: block;
}
#a53dfaec2aa74ae .goods .item .title {
  padding: 0 10px;
  margin-bottom: 4px;
  line-height: 20px;
  font-weight: bolder;
  transition: all .1s ease;
}
#a53dfaec2aa74ae .goods .item .title:hover {
  color: #d4282d;
}
#a53dfaec2aa74ae .goods .item .price {
  color: #d4282d;
  line-height: 22px;
  font-size: 13px;
  font-weight: bold;
  font-family: "Heiti SC", "Lucida Grande", "Hiragino Sans GB", "Hiragino Sans GB W3", verdana;
}
#a53dfaec2aa74ae .goods .item hr {
  width: 60%;
  display: block;
  height: 1px;
  padding: 0;
  margin: 6px auto 14px;
  border: 0;
  border-top: 1px solid #e8e8e8;
}
#a53dfaec2aa74ae .goods .item .subTitle {
  padding: 0 10px;
  line-height: 18px;
  color: #999;
}
#a53dfaec2aa74ae .goods .origin-price {
  display: inline-block;
  margin-left: 6px;
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}
#a53dfaec2aa74ae .goods .member-price {
  font-size: 12px;
  color: #d4282d;
  font-weight: 500;
  line-height: 18px;
  margin-left: 10px;
}
#a53dfaec2aa74ae .uk-card .uk-card-media {
  background: #fff;
}
#a53dfaec2aa74ae .uk-card:hover {
  background-color: #f4f0e9;
}
#a53dfaec2aa74ae .sort-time.active .fa {
  color: #e4393c;
}
#a53dfaec2aa74ae * + .uk-grid-margin-small,
#a53dfaec2aa74ae .uk-grid + .uk-grid-small,
#a53dfaec2aa74ae .uk-grid-small > .uk-grid-margin {
  margin-top: 50px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a9495a9955a46ec .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#af376a2c72a422c .coupon-item:after,
#af376a2c72a422c .coupon-item:before {
  background: #f8f8f8;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a9495a9955a46ec .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a28b1afbd8a995c {
  min-height: 90vh;
  /* mobile */
}
#a28b1afbd8a995c .search-highlight {
  background: yellow;
}
#a28b1afbd8a995c .el-item {
  padding: 0;
  border-bottom: 1px solid #ececec;
}
#a28b1afbd8a995c .el-title {
  margin-bottom: 20px;
}
#a28b1afbd8a995c .el-item:hover .el-title {
  color: #ffb804;
}
#a28b1afbd8a995c .img-wrap {
  overflow: hidden;
  display: block;
  border-radius: 4px;
}
#a28b1afbd8a995c .img-wrap img {
  transition: all .3s ease;
  border-radius: 4px;
}
#a28b1afbd8a995c .el-item:hover .img-wrap img {
  transform: scale(1.1);
}
#a28b1afbd8a995c .el-title a {
  font-size: 20px;
  color: #333;
  line-height: 36px;
}
#a28b1afbd8a995c .el-meta {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin: 6px 0;
}
#a28b1afbd8a995c .el-content {
  font-size: 14px;
  color: #777;
}
@media (max-width: 640px) {
  #a28b1afbd8a995c .el-title {
    margin-bottom: 0;
  }
  #a28b1afbd8a995c .el-title a {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }
  #a28b1afbd8a995c .category {
    font-size: 12px;
  }
  #a28b1afbd8a995c .el-content {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 6px 0 0px;
  }
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a9495a9955a46ec .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a9859a8699ab9e5 .uk-checkbox:not(:checked) {
  background: #fff;
}
#a9859a8699ab9e5 .cart-wrap .column {
  float: left;
  text-align: center;
}
#a9859a8699ab9e5 .cart-head,
#a9859a8699ab9e5 .cart-footer,
#a9859a8699ab9e5 .cart-item {
  margin-bottom: 10px;
  padding: 12px 0;
  border: 1px solid #f0f0f0;
  background-color: #fff;
}
#a9859a8699ab9e5 .cart-head {
  background-color: #efefef;
}
#a9859a8699ab9e5 .cart-head,
#a9859a8699ab9e5 .cart-footer {
  margin: 20px 0;
  padding: 12px;
}
#a9859a8699ab9e5 .cart-footer {
  display: none;
}
#a9859a8699ab9e5 .cart-head .c-checkbox {
  width: 150px;
}
#a9859a8699ab9e5 .c-info {
  width: 410px;
}
#a9859a8699ab9e5 .c-price {
  width: 180px;
}
#a9859a8699ab9e5 .c-count {
  width: 170px;
}
#a9859a8699ab9e5 .c-sum {
  width: 170px;
}
#a9859a8699ab9e5 .cart-item {
  padding: 20px 12px;
}
#a9859a8699ab9e5 .selected {
  background-color: #fdf5e9;
}
#a9859a8699ab9e5 .cart-item .c-info {
  width: 500px;
}
#a9859a8699ab9e5 .cart-item .c-checkbox {
  width: 60px;
}
#a9859a8699ab9e5 .cart-item .pic {
  float: left;
  width: 100px;
  height: 100px;
  border: 1px solid #f0f0f0;
  background: #fafafa;
}
#a9859a8699ab9e5 .cart-item .c-info .info {
  padding-left: 120px;
  min-height: 100px;
  width: 500px;
  padding-top: 10px;
  line-height: 1;
}
#a9859a8699ab9e5 .cart-item .c-info .title {
  font-size: 14px;
  display: block;
  color: #333;
  text-align: left;
  margin-bottom: 6px;
}
#a9859a8699ab9e5 .cart-item .c-info span {
  font-size: 12px;
  color: #999;
}
#a9859a8699ab9e5 .cart-item .price {
  text-align: center;
  font-family: "Heiti SC", "Lucida Grande", "Hiragino Sans GB", "Hiragino Sans GB W3", verdana;
}
#a9859a8699ab9e5 .cart-item .price-total {
  color: #d4282d;
  font-weight: bolder;
}
#a9859a8699ab9e5 .cart-item .present-price {
  font-size: 14px;
  color: #333;
}
#a9859a8699ab9e5 .cart-item .origin-price {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
  text-decoration: line-through;
}
#a9859a8699ab9e5 .cart-item .column {
  padding-top: 12px;
}
#a9859a8699ab9e5 .cart-item .c-info {
  padding-top: 0;
}
#a9859a8699ab9e5 .cart-item .del {
  color: #555;
}
#a9859a8699ab9e5 .select-num {
  display: inline-block;
  border: 1px solid #ddd;
  overflow: hidden;
  line-height: 30px;
}
#a9859a8699ab9e5 .select-num .btn {
  position: relative;
  width: 30px;
  height: 30px;
  line-height: 28px;
  background: #fff;
  text-align: center;
  color: #888;
  cursor: pointer;
}
#a9859a8699ab9e5 .select-num .btn.disable {
  cursor: not-allowed;
  color: #ececec;
}
#a9859a8699ab9e5 .select-num i {
  line-height: 30px;
}
#a9859a8699ab9e5 .select-num .less {
  float: left;
  border-right: 1px solid #ddd;
}
#a9859a8699ab9e5 .select-num .more {
  float: right;
  border-left: 1px solid #ddd;
}
#a9859a8699ab9e5 .select-num input {
  border: none;
  text-align: center;
  font-size: 12px;
  color: #333;
  width: 60px;
  height: 28px;
}
#a9859a8699ab9e5 .price-info {
  color: #999;
  float: right;
  margin-left: 20px;
}
#a9859a8699ab9e5 .price-info .discount {
  font-size: 12px;
}
#a9859a8699ab9e5 .price-info .price-num {
  font-size: 16px;
  color: #E2231A;
  font-weight: 700;
}
#a9859a8699ab9e5 .column-left {
  line-height: 36px;
}
#a9859a8699ab9e5 .column-left a {
  color: #888;
  display: inline-block;
  margin-left: 10px;
}
#a9859a8699ab9e5 .column-left a:hover {
  color: #E2231A;
}
#a9859a8699ab9e5 .column-right {
  padding-right: 130px;
}
#a9859a8699ab9e5 .column-right .selected-num {
  color: #999;
  font-size: 13px;
  line-height: 26px;
}
#a9859a8699ab9e5 .column-right .selected-num span {
  color: #E2231A;
  font-weight: bolder;
  display: inline-block;
  margin: 0 2px;
}
#a9859a8699ab9e5 .order-btn {
  display: block;
  position: absolute;
  right: -1px;
  top: -1px;
  width: 130px;
  line-height: 68px;
  color: #fff;
  font-size: 24px;
  background-color: #E2231A;
  text-align: center;
}
#a9859a8699ab9e5 .cart-icon {
  width: 200px;
  fill: #ccc;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a9495a9955a46ec .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ab818adae8abf57 .checkout-title {
  font-size: 16px;
  color: #666;
  line-height: 42px;
}
#ab818adae8abf57 .checkout-wrap {
  background-color: #fff;
  padding: 0 20px;
  border: 1px solid #f0f0f0;
  color: #666;
}
#ab818adae8abf57 .add-addr {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 12px;
}
#ab818adae8abf57 .checkout-wrap h3 {
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  color: #333;
  font-weight: bold;
  margin: 0;
}
#ab818adae8abf57 .addr-list {
  height: 45px;
  overflow: hidden;
}
#ab818adae8abf57 .addr-list.expand {
  height: auto;
}
#ab818adae8abf57 .addr-item {
  list-style: none;
  height: 30px;
  margin: 6px 0 20px;
  display: block;
  position: relative;
}
#ab818adae8abf57 .addr-item:hover {
  background-color: #fff3f3;
}
#ab818adae8abf57 .addr-item .addr-item-name {
  list-style: none;
  position: relative;
  border: 1px solid #ddd;
  line-height: 28px;
  padding: 0 10px;
  width: 120px;
  text-align: center;
  cursor: pointer;
  background-color: #fff;
  color: #777;
  float: left;
  margin-right: 15px;
}
#ab818adae8abf57 .addr-item.selected .addr-item-name {
  border: 2px solid #FF0036;
}
#ab818adae8abf57 .addr-default {
  margin: 5px 10px;
  background-color: #999;
  color: #fff;
  padding: 0 4px;
  line-height: 20px;
  display: inline-block;
}
#ab818adae8abf57 .addr-item.selected .addr-item-name i {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  overflow: hidden;
  text-indent: -99em;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAMAAABhq6zVAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAJUExURUxpcf8AN////7f4NBoAAAABdFJOUwBA5thmAAAAMUlEQVQI103MAQ4AMAQEQev/j66i6YrEXIKIX9jY2NjYyDmhZnlCo5rdyWvebfYDVAcSmABbA7WD+QAAAABJRU5ErkJggg==);
  color: black;
}
#ab818adae8abf57 .addr-item .addr-detail {
  line-height: 30px;
  font-size: 12px;
}
#ab818adae8abf57 .addr-item .op-btns {
  position: absolute;
  right: 0;
  top: 6px;
  font-size: 12px;
}
#ab818adae8abf57 .addr-item .op-btns a {
  color: #005ea7;
  display: inline-block;
  margin-right: 12px;
}
#ab818adae8abf57 .addr-item .op-btns a:hover {
  color: #FF0036;
}
#ab818adae8abf57 .addr-switch {
  line-height: 24px;
  cursor: pointer;
  font-size: 12px;
  margin-bottom: 15px;
}
#ab818adae8abf57 .addr-switch b {
  display: inline-block;
  vertical-align: middle;
  height: 10px;
  line-height: 10px;
  width: 9px;
  margin-left: 5px;
  background: url(/resources/sys/img/toggle-arrow.png) no-repeat 0 0;
}
#ab818adae8abf57 .addr-switch.expand b {
  background-position: 0 -10px;
}
#ab818adae8abf57 table {
  border: 1px solid #ececec;
  margin: 0 0 30px;
  color: #333;
}
#ab818adae8abf57 table thead {
  color: #999;
  background-color: #f5f5f5;
}
#ab818adae8abf57 table td {
  text-align: center;
}
#ab818adae8abf57 table thead td {
  border-top: none;
}
#ab818adae8abf57 table .goods-pic {
  width: 100px;
  height: 100px;
  margin-right: 12px;
  float: left;
}
#ab818adae8abf57 table .goods-info a {
  color: #333;
  font-weight: bolder;
}
#ab818adae8abf57 table .goods-info span {
  font-size: 12px;
  color: #999;
}
#ab818adae8abf57 .origin-price {
  color: #999;
  text-decoration: line-through;
}
#ab818adae8abf57 table .price {
  font-family: "Heiti SC", "Lucida Grande", "Hiragino Sans GB", "Hiragino Sans GB W3", verdana;
}
#ab818adae8abf57 .checkout-summary {
  margin: 20px 4px 10px;
}
#ab818adae8abf57 .summary-item {
  font-size: 12px;
  line-height: 24px;
  color: #666;
}
#ab818adae8abf57 .summary-item > em {
  width: 140px;
  display: inline-block;
  color: #333;
  font-size: 12px;
  font-family: verdana;
  font-style: normal;
}
#ab818adae8abf57 .order-confirm {
  padding: 15px 10px 15px 0;
  text-align: right;
  border-top: 1px solid #e6e6e6;
  color: #999;
  background-color: #f4f4f4;
  line-height: 24px;
  font-size: 12px;
}
#ab818adae8abf57 .order-confirm .total-price {
  display: inline-block;
  color: #e4393c;
  font-family: Verdana;
  font-weight: 700;
  font-size: 18px;
  min-width: 122px;
}
#ab818adae8abf57 .order-btn {
  margin-top: 20px;
  display: inline-block;
  line-height: 42px;
  padding: 0 35px;
  color: #fff;
  font-size: 18px;
  background-color: #E2231A;
  text-align: center;
  border-radius: 2px;
  cursor: pointer;
}
#ab818adae8abf57 .order-submit-btn:hover {
  background-color: #EF494D;
}
#ab818adae8abf57 .coupon-select {
  padding: 0 20px;
  line-height: 28px;
  color: #EF494D;
  border: 1px solid #EF494D;
  margin-top: 6px;
  display: inline-block;
  cursor: pointer;
  font-weight: 500;
}
#ab818adae8abf57 .coupon-select.disable {
  color: #555;
  border-color: #333;
  cursor: not-allowed;
}
#ab818adae8abf57 .select-num {
  display: inline-block;
  border: 1px solid #ddd;
  overflow: hidden;
  line-height: 30px;
}
#ab818adae8abf57 .select-num .btn {
  position: relative;
  width: 30px;
  height: 30px;
  line-height: 28px;
  background: #fff;
  text-align: center;
  color: #888;
  cursor: pointer;
}
#ab818adae8abf57 .select-num .btn.disable {
  cursor: not-allowed;
  color: #ececec;
}
#ab818adae8abf57 .select-num i {
  line-height: 30px;
}
#ab818adae8abf57 .select-num .less {
  float: left;
  border-right: 1px solid #ddd;
}
#ab818adae8abf57 .select-num .more {
  float: right;
  border-left: 1px solid #ddd;
}
#ab818adae8abf57 .select-num input {
  border: none;
  text-align: center;
  font-size: 12px;
  color: #333;
  width: 60px;
  height: 28px;
}
#ab818adae8abf57 .toggle-point {
  position: absolute;
  right: 0;
  top: 24px;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a9495a9955a46ec .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a51f0a4dd4ab14d .title {
  font-size: 18px;
  color: #000;
  line-height: 2;
}
#a51f0a4dd4ab14d .order-id {
  color: #666;
}
#a51f0a4dd4ab14d .payment {
  cursor: pointer;
}
#a51f0a4dd4ab14d .payment img {
  min-height: 40px;
}
#a51f0a4dd4ab14d .payment-wrap {
  border: 1px solid #ececec;
  margin: 20px 0;
}
#a51f0a4dd4ab14d .payment-title {
  height: 42px;
  padding-left: 21px;
  background-color: #f4f4f4;
  border-bottom: 1px solid #efefef;
  line-height: 41px;
  color: #999;
  font-size: 14px;
}
#a51f0a4dd4ab14d .selected {
  border: 2px solid #e1251b;
}
#a51f0a4dd4ab14d .btn {
  display: inline-block;
  line-height: 42px;
  padding: 2px 35px;
  color: #fff;
  font-size: 18px;
  background-color: #E2231A;
  text-align: center;
  border-radius: 2px;
  cursor: pointer;
}
#a51f0a4dd4ab14d .btn:hover {
  background-color: #EF494D;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a9495a9955a46ec .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a9ebfa4c68a543b {
  max-width: 1200px;
  margin: 0 auto;
}
#a9ebfa4c68a543b .m-header {
  background: #fff;
  height: 44px;
  position: relative;
  border-bottom: 1px solid #e5e5e5;
}
#a9ebfa4c68a543b .order-container {
  padding-bottom: 60px;
}
#a9ebfa4c68a543b .express-date {
  color: #999;
  font-size: 12px;
}
#a9ebfa4c68a543b .m-header-back {
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  padding: 10px;
  text-align: center;
}
#a9ebfa4c68a543b .m-header-back svg {
  width: 16px;
  fill: #666;
}
#a9ebfa4c68a543b .m-header-title {
  height: 44px;
  line-height: 44px;
  font-size: 16px;
  color: #333;
  text-align: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#a9ebfa4c68a543b .order-status {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #f66d70), to(#e93b3d));
  background-image: -webkit-linear-gradient(left, #f66d70, #e93b3d);
  background-image: linear-gradient(90deg, #f66d70, #e93b3d);
  color: #fff;
  padding: 12px 10px;
  font-size: 12px;
  line-height: 18px;
  position: relative;
}
#a9ebfa4c68a543b .order-status:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 20px;
  left: 0;
  bottom: 0;
  border-radius: 0 100% 0 0;
  background-image: -webkit-linear-gradient(60deg, #e93c3e 32%, #f66c6c 69%);
  background-image: linear-gradient(30deg, #e93c3e 32%, #f66c6c 69%);
}
#a9ebfa4c68a543b .order-status:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 48px;
  right: 0;
  bottom: 0;
  border-radius: 100% 0 0 2%;
  background-image: -webkit-linear-gradient(53deg, #e93c3e 8%, #f66d70 78%);
  background-image: linear-gradient(37deg, #e93c3e 8%, #f66d70 78%);
}
#a9ebfa4c68a543b .state-desc {
  padding-left: 25px;
}
#a9ebfa4c68a543b .order-status .icon-status {
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-image: url(/resources/sys/img/order_status_icon.png);
  background-size: 41px 41px;
  background-repeat: no-repeat;
  top: 25px;
}
#a9ebfa4c68a543b .order-status .icon-status.status-1,
#a9ebfa4c68a543b .order-status .icon-status.status-2,
#a9ebfa4c68a543b .order-status .icon-status.status-3 {
  background-position: 0 -22px;
}
#a9ebfa4c68a543b .order-status .icon-status.status--1 {
  background-position: -22px 0;
}
#a9ebfa4c68a543b .state-desc .state-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
#a9ebfa4c68a543b .state-tip {
  font-size: 12px;
}
#a9ebfa4c68a543b .top-content {
  padding: 0 10px;
  background: #fff;
}
#a9ebfa4c68a543b .top-content .fa {
  font-size: 24px;
  display: inline-block;
  margin-right: 10px;
  color: #ccc;
  width: 24px;
  text-align: center;
}
#a9ebfa4c68a543b .top-content .desc {
  color: #333;
  line-height: 21px;
  font-size: 14px;
  background: #fff;
}
#a9ebfa4c68a543b .top-content .tip {
  font-size: 12px;
  line-height: 18px;
  color: #999;
}
#a9ebfa4c68a543b .top-content .content-wrap {
  padding: 12px 0;
  border-bottom: 1px solid #f7f7f7;
}
#a9ebfa4c68a543b .top-content.address .content-wrap {
  border-bottom: none;
}
#a9ebfa4c68a543b .goods-item {
  margin-top: 10px;
  padding: 10px 10px 20px 10px;
  background: #fff;
  border-bottom: 1px solid #f7f7f7;
}
#a9ebfa4c68a543b .goods-item img {
  display: block;
  width: 75px;
  height: 75px;
  box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  margin-right: 10px;
}
#a9ebfa4c68a543b .goods-info .title {
  font-size: 14px;
  margin-bottom: 3px;
  word-break: break-all;
  position: relative;
  color: #333;
  font-weight: 500;
}
#a9ebfa4c68a543b .goods-info .sku-name {
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  color: #999;
}
#a9ebfa4c68a543b .goods-info .private-info {
  font-size: 12px;
}
#a9ebfa4c68a543b .goods-info .num-wrap {
  color: #999;
  font-size: 12px;
}
#a9ebfa4c68a543b .goods-info .present-price {
  line-height: 30px;
  color: #e93b3d;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
}
#a9ebfa4c68a543b .panel {
  background: #fff;
  margin: 20px 0;
}
#a9ebfa4c68a543b .panel-header {
  padding: 10px;
  color: #333;
  font-size: 16px;
  position: relative;
  border-bottom: 1px solid #f7f7f7;
}
#a9ebfa4c68a543b .panel-header .tip {
  line-height: 24px;
  font-size: 12px;
  position: absolute;
  right: 10px;
  top: 10px;
  color: #999;
}
#a9ebfa4c68a543b .contact {
  padding: 16px 0;
  line-height: 1;
  font-size: 12px;
  color: #999;
  display: block;
  text-align: center;
}
#a9ebfa4c68a543b .hide {
  display: none;
}
#a9ebfa4c68a543b .contact img {
  width: 20px;
  height: 20px;
  margin-right: 4px;
  display: inline-block;
}
#a9ebfa4c68a543b .order-detail {
  padding: 15px 10px;
  background: #fff;
}
#a9ebfa4c68a543b .order-detail .order-item {
  line-height: 22px;
  margin-bottom: 3px;
  color: #151515;
}
#a9ebfa4c68a543b .order-detail .order-item span {
  color: #999;
  display: inline-block;
  margin-right: 6px;
}
#a9ebfa4c68a543b .order-summary {
  border-top: 1px solid #f7f7f7;
  padding: 12px 0;
}
#a9ebfa4c68a543b .order-id {
  font-size: 13px;
  font-style: normal;
}
#a9ebfa4c68a543b .order-summary .order-price {
  line-height: 21px;
  color: #333;
  font-weight: 400;
}
#a9ebfa4c68a543b .order-summary .price {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bolder;
}
#a9ebfa4c68a543b .total-price {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  line-height: 32px;
}
#a9ebfa4c68a543b .total-price .price {
  color: #f2270c;
}
#a9ebfa4c68a543b .order-bottom {
  height: 50px;
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  z-index: 1000;
  font-size: 12px;
  border-top: 1px solid #f7f7f7;
}
#a9ebfa4c68a543b .pay-btn {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 35px;
  color: #fff;
  font-size: 18px;
  background-color: #E2231A;
  text-align: center;
  cursor: pointer;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a9495a9955a46ec .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a8f74a5dcea536e .comment-detail {
  min-height: 600px;
}
#a8f74a5dcea536e table {
  background: #f9fdff;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
#a8f74a5dcea536e table th,
#a8f74a5dcea536e table td {
  padding: 10px 20px;
  border: #ececec 1px solid;
  line-height: 1.8em;
}
#a8f74a5dcea536e table th {
  padding-left: 0;
  text-align: right;
  background: #eff7fe;
  font-weight: normal;
  color: #333;
}
#a8f74a5dcea536e .red {
  color: #F00!important;
}
#a8f74a5dcea536e .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;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a9495a9955a46ec .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a57e7aea55a68f7 .address-select {
  cursor: pointer;
}
#a57e7aea55a68f7 .form-item {
  border-bottom: 1px solid #f5f5f5;
  padding: 20px 0;
}
#a57e7aea55a68f7 .form-item-last {
  border-bottom: none;
}
#a57e7aea55a68f7 .form-item .uk-form-label {
  font-size: 16px;
  color: #888;
  margin-bottom: 8px;
  font-weight: bolder;
  display: block;
}
#a57e7aea55a68f7 .address-select .uk-select {
  width: 100px;
}
#a57e7aea55a68f7 .form-item .uk-input,
#a57e7aea55a68f7 .form-item .uk-select {
  background: #fafafa;
  border-color: #eee;
}
#a57e7aea55a68f7 .submit-btn {
  background: #5cc55c;
  font-size: 18px;
  width: 160px;
  text-align: center;
  border-radius: 2px;
  line-height: 48px;
}
#a57e7aea55a68f7 .submit-btn:hover {
  opacity: .9;
}
#a57e7aea55a68f7 .img-box {
  margin-top: 40px;
}
#a57e7aea55a68f7 .img-box .up-p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #555;
}
#a57e7aea55a68f7 .z_photo {
  padding: 18px;
  border: 2px dashed #e7e6e6;
}
#a57e7aea55a68f7 .z_photo .z_file {
  position: relative;
}
#a57e7aea55a68f7 .z_file .file {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}
#a57e7aea55a68f7 .z_photo .up-section {
  position: relative;
  margin-right: 20px;
  margin-bottom: 20px;
}
#a57e7aea55a68f7 .up-section .close-upimg {
  position: absolute;
  top: 6px;
  right: 8px;
  display: none;
  z-index: 10;
}
#a57e7aea55a68f7 .up-section .up-span {
  display: block;
  width: 100%;
  height: 100%;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  background: rgba(0, 0, 0, 0.5);
}
#a57e7aea55a68f7 .up-section:hover {
  border: 2px solid #f15134;
}
#a57e7aea55a68f7 .up-section:hover .close-upimg {
  display: block;
}
#a57e7aea55a68f7 .up-section:hover .up-span {
  visibility: visible;
}
#a57e7aea55a68f7 .z_photo .up-img {
  display: block;
  width: 100%;
  height: 100%;
}
#a57e7aea55a68f7 .upimg-div .up-section {
  width: 190px;
  height: 180px;
}
#a57e7aea55a68f7 .img-box .upimg-div .z_file {
  width: 190px;
  height: 180px;
}
#a57e7aea55a68f7 .publish-price {
  font-size: 16px;
  color: #888;
}
#a57e7aea55a68f7 .publish-price .num {
  color: #ff9933;
  display: inline-block;
  margin: 0 4px;
  font-weight: 500;
}
#a57e7aea55a68f7 .z_file .add-img {
  display: block;
  width: 190px;
  height: 180px;
  cursor: pointer;
}
#a57e7aea55a68f7 .mask {
  z-index: 1000;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
#a57e7aea55a68f7 .mask .mask-content {
  width: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -250px;
  margin-top: -80px;
  background: #fff;
  height: 160px;
  text-align: center;
}
#a57e7aea55a68f7 .mask .mask-content .del-p {
  color: #555;
  height: 94px;
  line-height: 94px;
  font-size: 18px;
  border-bottom: 1px solid #d1d1d1;
}
#a57e7aea55a68f7 .mask-content .check-p {
  height: 66px;
  line-height: 66px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
#a57e7aea55a68f7 .mask-content .check-p span {
  width: 49%;
  display: inline-block;
  text-align: center;
  color: #d4361d;
  font-size: 18px;
}
#a57e7aea55a68f7 .check-p .del-com {
  border-right: 1px solid #d1d1d1;
}
#a57e7aea55a68f7 #fileList,
#a57e7aea55a68f7 #picker {
  display: inline-block;
  float: left;
}
#a57e7aea55a68f7 .thumbnail {
  width: 140px;
  display: inline-block;
  margin-right: 10px;
  position: relative;
}
#a57e7aea55a68f7 .thumbnail img {
  width: 100%;
  height: 130px;
}
#a57e7aea55a68f7 .thumbnail .info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-indent: 5px;
  text-align: center;
  font-size: 12px;
  color: #fff;
}
#a57e7aea55a68f7 .thumbnail .error {
  background: #f43838;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 28px;
  line-height: 28px;
  width: 100%;
  z-index: 100;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
}
#a57e7aea55a68f7 .thumbnail .remove {
  position: absolute;
  color: #fff;
  right: 10px;
  top: 10px;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
  line-height: 24px;
}
#a57e7aea55a68f7 #picker {
  width: 140px;
  height: 130px;
  background: url(/resources/sys/img/upload-img.png) center center no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
  font-size: 0px;
  text-indent: -1000px;
}
#a57e7aea55a68f7 .webuploader-pick {
  height: 100%;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
#a9495a9955a46ec .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ae78faca0fa58a9 .search-detail {
  min-height: 400px;
}
#ae78faca0fa58a9 table {
  background: #f9fdff;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
#ae78faca0fa58a9 table th,
#ae78faca0fa58a9 table td {
  padding: 10px 20px;
  border: #ececec 1px solid;
  line-height: 1.8em;
}
#ae78faca0fa58a9 table th {
  padding-left: 0;
  text-align: right;
  background: #eff7fe;
  font-weight: normal;
  color: #333;
}
#ae78faca0fa58a9 .red {
  color: #F00!important;
}
#ae78faca0fa58a9 .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;
}
#a9bdba0642a59c6 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list > li {
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
#a9bdba0642a59c6 .menu-list > li > a {
  height: 100%;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: relative;
  text-transform: capitalize;
  line-height: 60px;
  padding: 0 0px;
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #000000;
}
#a9bdba0642a59c6 .menu-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background-color: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#a9bdba0642a59c6 .menu-list > li:hover > a {
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
  border-bottom-color: #ff8405;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  background-color: rgba(255, 255, 255, 0);
}
#a9bdba0642a59c6 .menu-list > li.active > a {
  background-color: rgba(255, 255, 255, 0);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ff8405;
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li.active > a:before,
#a9bdba0642a59c6 .menu-list > li:hover > a:before {
  width: 100%;
  background-color: currentColor;
}
#a9bdba0642a59c6 .menu-list > li ul li {
  position: relative;
}
#a9bdba0642a59c6 .menu-list > li ul li:hover > a {
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list > li ul li a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  padding: 0 20px;
  transition: all 0.2s ease-in;
  white-space: nowrap;
  background-color: #ffffff;
  width: 400px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #000000;
  background: transparent;
}
#a9bdba0642a59c6 .menu-list li ul li:hover > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul li a:active,
#a9bdba0642a59c6 .menu-list li ul li a.active,
#a9bdba0642a59c6 .menu-list li ul li.active > a {
  background-color: rgba(121, 163, 243, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ff8405;
}
#a9bdba0642a59c6 .menu-list li ul,
#a9bdba0642a59c6 .menu-list li ul li ul {
  line-height: 40px;
  list-style-type: none;
  text-align: left;
  left: -999em;
  position: absolute;
  z-index: 999;
  min-width: 100px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
#a9bdba0642a59c6 .menu-list li ul.menu-b > li,
#a9bdba0642a59c6 .menu-list li ul li ul.menu-b > li {
  display: inline-block;
}
#a9bdba0642a59c6 .menu-list .menu-b {
  transition: all .3s ease;
  padding: 20px 0;
  left: auto;
}
#a9bdba0642a59c6 .menu-list li:hover > ul {
  display: block;
}
#a9bdba0642a59c6 .menu-list li ul li:hover ul {
  left: 100%;
  top: 0;
}
#ac82da3aada921f > .ele-wrap {background-color: rgba(255, 132, 5, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6569a2204a40f2 {
  position: relative;
  cursor: pointer;
  z-index: 2000;
}
#a6569a2204a40f2 .ap-login-info {
  text-align: center;
  height: 100%;
  z-index: 10;
  font-size: 12px;
  color: #b0b0b0;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info .fa {
  margin-left: 2px;
}
#a6569a2204a40f2 .ap-login-info .login-icon svg,
#a6569a2204a40f2 .ap-login-info .login-icon img {
  height: 1em;
  display: inline-block;
  margin-right: 4px;
  fill: currentColor;
}
#a6569a2204a40f2 .ap-login-info .display-name {
  display: none;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info .login-btn {
  color: inherit;
  white-space: nowrap;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .login-btn {
  display: none;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .fa {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info.ap-logged .display-name {
  display: inline-block;
}
#a6569a2204a40f2 .ap-login-info:hover {
  color: #ed5f5f;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover {
  background-color: ;
}
#a6569a2204a40f2 .ap-login-info.ap-logged:hover .user-dropdown {
  display: block;
}
#a6569a2204a40f2 .user-dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 39px;
  border: 1px solid #ececec;
  width: 220px;
  padding: 20px 10px 10px;
  text-align: left;
  z-index: -1;
}
#a6569a2204a40f2.right .user-dropdown {
  left: auto;
  right: 0;
}
#a6569a2204a40f2 .portrait {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin-right: 10px;
}
#a6569a2204a40f2 .user-info-wrap {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding-top: 10px;
}
#a6569a2204a40f2 .actions {
  position: absolute;
  top: 10px;
  right: 10px;
}
#a6569a2204a40f2 .actions a {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
}
#a6569a2204a40f2 .actions a:hover {
  color: #ff8405;
}
#a3d2dab01ca426d .site-language-menu a {
  font-size: 13;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
}
#a3d2dab01ca426d .site-language-menu a:hover {
  color: #ffffff;
}
#a3d2dab01ca426d .uk-dropdown {
  box-shadow: none;
  background: #fff;
  border: 1px solid #ececec;
  font-size: 12px;
  padding: 0;
}
#a3d2dab01ca426d .uk-dropdown li {
  border-bottom: 1px solid #ececec;
  line-height: 32px;
  padding: 0 15px;
}
#a3d2dab01ca426d .uk-dropdown li a {
  font-size: 13;
  color: #444;
}
#a3d2dab01ca426d .uk-dropdown li a:hover {
  color: #222;
}
#a3d2dab01ca426d .uk-dropdown li:last-child {
  border-bottom: none;
}
#aee51a7b4fa8a8c form {
  width: 100%;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#aee51a7b4fa8a8c .search-box .select-text {
  line-height: 1;
  cursor: pointer;
  padding: 0 10px;
  white-space: nowrap;
  padding-left: 18px;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
#aee51a7b4fa8a8c .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#aee51a7b4fa8a8c .search-box .search-type.show {
  display: block;
}
#aee51a7b4fa8a8c .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#aee51a7b4fa8a8c .search-box .search-type li:hover {
  color: #ff8405;
}
#aee51a7b4fa8a8c .search-box .search-type li.active {
  color: #ff8405;
}
#aee51a7b4fa8a8c .inner-form {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 2px;
  background-color: #ffffff;
  overflow: hidden;
}
#aee51a7b4fa8a8c .inner-form .input-field {
  height: 100%;
}
#aee51a7b4fa8a8c .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #000;
}
#aee51a7b4fa8a8c .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#aee51a7b4fa8a8c .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  position: relative;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#aee51a7b4fa8a8c .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#aee51a7b4fa8a8c .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#aee51a7b4fa8a8c .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #ff8405;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
}
#aee51a7b4fa8a8c .btn-search:hover {
  background: #ff8405;
}
#aee51a7b4fa8a8c .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#afa91ae59faa90e .form-agree {
  display: flex;
  align-items: center;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  width: 340px;
}
#afa91ae59faa90e .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afa91ae59faa90e .submit-wrap {
  text-align: center;
}
#afa91ae59faa90e .submit-wrap button {
  background-color: #ff8405;
}
#afa91ae59faa90e .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
#afa91ae59faa90e form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afa91ae59faa90e .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea {
  width: autopx;
  height: 40px;
  line-height: 40px;
  background-color: #ffffff;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  border-left-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(206, 206, 206, 0.68);
  border-bottom-style: solid;
  border-right-color: rgba(206, 206, 206, 0.68);
  border-left-color: rgba(206, 206, 206, 0.68);
  border-top-color: rgba(206, 206, 206, 0.68);
  border-right-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
}
#afa91ae59faa90e .form-item .auto-height {
  height: auto;
}
#afa91ae59faa90e .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afa91ae59faa90e .form-item .send-code {
  bottom: 0px;
}
#afa91ae59faa90e .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afa91ae59faa90e .uk-form-label,
#afa91ae59faa90e .form-agree,
#afa91ae59faa90e .uk-h3,
#afa91ae59faa90e p {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #777777;
}
#afa91ae59faa90e .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid #e5e5e5;
}
#afa91ae59faa90e .form-item > label {
  flex: none;
}
#afa91ae59faa90e .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#afa91ae59faa90e .form-item .uk-input,
#afa91ae59faa90e .form-item .uk-select,
#afa91ae59faa90e .form-item .uk-textarea,
#afa91ae59faa90e .form-item .address-select,
#afa91ae59faa90e .form-item .uk-grid {
  border: none;
  flex: 1;
}
#afa91ae59faa90e .form-item .address-select .uk-select {
  padding-left: 4px;
}
