.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: #3062ff;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
.uk-link:hover {
  color: #00a2e8;
}
/* 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: #00a2e8;
}
/* 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: #0164ff;
  text-shadow: none;
}
::selection {
  background: #0164ff;
  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 #0164ff;
}
/* Small
   ========================================================================== */
/*
   * Reset child height, caused by `inline-block`
   */
.uk-divider-small {
  line-height: 0;
}
.uk-divider-small::after {
  border-top: 2px solid #0164ff;
}
/* ========================================================================
     Component: List
   ========================================================================== */
.uk-list,
.ap-child-list > ul {
  padding: 0;
  list-style: none;
}
.uk-list-striped > li:nth-of-type(odd) {
  background: #0d70dd;
}
/* ========================================================================
     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: #0d70dd;
}
/* Style modifiers
   ========================================================================== */
/*
   * Link
   */
.uk-icon-link:hover,
.uk-icon-link:focus {
  color: #0164ff;
  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: #0164ff;
  outline: none;
}
/* OnClick + Active */
.uk-icon-button:active,
.uk-active > .uk-icon-button {
  background-color: #0164ff;
  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: #0d70dd;
  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: #0164ff;
  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: #0164ff;
}
/* OnClick + Active */
.uk-button-default:active,
.uk-button-default.uk-active {
  background-color: #0164ff;
  color: #ffffff;
}
/*
   * Primary
   */
.uk-button-primary {
  background-color: #0164ff;
  color: #ffffff;
}
/* Hover + Focus */
.uk-button-primary:hover,
.uk-button-primary:focus {
  background-color: #00a2e8;
  color: #ffffff;
}
/* OnClick + Active */
.uk-button-primary:active,
.uk-button-primary.uk-active {
  color: #ffffff;
}
/*
   * Secondary
   */
.uk-button-secondary {
  color: #666;
  border: 1px solid #00a2e8;
}
/* OnClick + Active */
.uk-button-secondary:active,
.uk-button-secondary.uk-active {
  background-color: #0164ff;
  color: #ffffff;
  border-color: #0164ff;
}
/*
   * 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: #0d70dd;
  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: #0164ff;
}
/* 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: #3062ff;
}
/* Hover + Focus */
.uk-button-link:hover,
.uk-button-link:focus {
  color: #00a2e8;
}
/* 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: #0164ff;
}
/*
   * Secondary
   */
.uk-section-secondary,
.ap-container-secondary .uk-container {
  background: #00a2e8;
}
.uk-section-muted,
.ap-container-muted .uk-container {
  background: #0d70dd;
}
/* Style modifiers
   ========================================================================== */
/*
   * Default
   */
.uk-tile-default {
  background: #ffffff;
}
/*
   * Muted
   */
.uk-tile-muted {
  background: #0d70dd;
}
/*
   * Primary
   */
.uk-tile-primary {
  background: #0164ff;
}
/*
   * Secondary
   */
.uk-tile-secondary {
  background: #00a2e8;
}
/* ========================================================================
     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: #0164ff;
  color: #ffffff;
}
.uk-card-primary .uk-card-title {
  color: #ffffff;
}
/*
   * Secondary
   */
.uk-card-secondary {
  background: #00a2e8;
  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: #0164ff;
  background-color: transparent;
}
/* ========================================================================
     Component: Marker
   ========================================================================== */
/*
   * Addopts `uk-icon`
   */
.uk-marker {
  padding: 5px;
  background: #00a2e8;
  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: #0164ff;
}
/*
   * 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: #0164ff;
  color: #ffffff;
}
/*
   * Required for `a`
   */
.uk-badge:hover,
.uk-badge:focus {
  color: #ffffff;
  text-decoration: none;
  outline: none;
}
/* ========================================================================
     Component: Label
   ========================================================================== */
.uk-label {
  background: #0164ff;
  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: #0d70dd;
}
.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: #0164ff;
  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: #0164ff;
}
/* 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: #0164ff;
  outline: none;
}
.uk-navbar-nav > li > a:hover::before {
  background-color: currentColor;
}
/* OnClick */
.uk-navbar-nav > li.uk-active > a::before {
  background-color: #0164ff;
}
/* Item
   ========================================================================== */
.uk-navbar-item {
  color: #666;
}
/* Toggle
   ========================================================================== */
.uk-navbar-toggle:hover,
.uk-navbar-toggle:focus,
.uk-navbar-toggle.uk-open {
  color: #0164ff;
}
/* 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: #0164ff;
  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: #0164ff;
  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: #0164ff;
  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: #0164ff;
}
/* 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: #0164ff;
  border-color: transparent;
}
/* Active */
.uk-dotnav > .uk-active > * {
  background-color: #0164ff;
  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: #0164ff;
}
/*
   * 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: #0164ff;
}
/* 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: #0d70dd;
  color: #666;
}
/* Style modifiers
   ========================================================================== */
/*
   * Primary
   */
.uk-notification-message-primary {
  color: #0164ff;
}
/*
   * 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: #0164ff;
  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: #0d70dd;
  border-radius: 500px;
  overflow: hidden;
}
/*
   * Progress bar
   * 1. Remove right border in IE11 and Edge
   */
.uk-progress::-webkit-progress-value {
  background-color: #0164ff;
}
.uk-progress::-moz-progress-bar {
  background-color: #0164ff;
}
.uk-progress::-ms-fill {
  background-color: #0164ff;
}
/* ========================================================================
     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: #0164ff !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: #0164ff !important;
}
@supports (-webkit-background-clip: text) {
  .uk-text-background {
    background-color: #0164ff;
  }
}
/* ========================================================================
     Component: Background
   ========================================================================== */
/* Color
   ========================================================================== */
.uk-background-default {
  background-color: #ffffff;
}
.uk-background-muted {
  background-color: #0d70dd;
}
.uk-background-primary {
  background-color: #0164ff;
}
.uk-background-secondary {
  background-color: #00a2e8;
}
/* ========================================================================
     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: #0164ff;
  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: #0164ff;
  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: #0164ff;
  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: #0d70dd;
  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: #0164ff;
}
.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(0, 162, 232, 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: #0164ff;
}
.uk-section-muted .uk-navbar-container.uk-navbar-sticky {
  background-color: #0d70dd;
}
.uk-section-primary .uk-navbar-container.uk-navbar-sticky {
  background-color: #0164ff;
}
.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: #0164ff;
  border-color: #0164ff;
}
.category .uk-pagination li:hover,
.ap-pagination li:hover,
.dynamic-pagination li:hover {
  border-color: #0164ff;
}
/* ========================================================================
   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: #0050cd;
}
.ap-list-filter dd a.active {
  background-color: #0164ff;
  color: #fff;
  border-radius: 2px;
}
.ap-filter-dropdown .filter-item-wrap.open,
.ap-filter-dropdown .filter-item.active {
  color: #0164ff;
}
.category li a.active {
  color: #0164ff;
}
.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: #0164ff;
}
.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: #0164ff;
  border: 1px solid rgba(1, 100, 255, 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: #0164ff;
}
form .step .ui-step.active .ui-step-title {
  color: #0164ff;
}
/**************** 自定义版块样式 ********************/
.btn-effect-1 {
  border-color: #0164ff;
  background-color: #0164ff;
  color: #fff;
}
.header-effect-6 [data-item='title']::before {
  background-color: #0164ff;
}
.header-effect-7 [data-item='subTitle'] {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  background-color: #0164ff;
  color: #fff !important;
}
.btn-effect-2 {
  background-color: transparent;
  border: 1px solid #0164ff;
  color: #0164ff;
}
.btn-effect-2:hover {
  background-color: #0164ff;
}
.uk-button.btn-effect-5 {
  background-color: #0164ff;
  box-shadow: 0 0 15px rgba(1, 100, 255, 0.8);
}
.header-effect-3 [data-item='title']::after {
  background: #0164ff;
}
.header-effect-6 [data-item='title']::before {
  background-color: #0164ff;
}
#aff6fa92c7a6160 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#aff6fa92c7a6160 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aff6fa92c7a6160 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#aecddabcbaaeb9b > .ele-wrap {background-color: rgba(244, 252, 254, 1);background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1652490173864.jpeg);background-position: top left;background-size: auto;background-repeat: no-repeat;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a8fbfa62dfa52cf .jquery-accordion-menu {
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
}
#a8fbfa62dfa52cf .jquery-accordion-menu .jquery-accordion-menu-header {
  width: 100%;
  height: 50px;
  padding-left: 14px;
  font-size: 16px;
  line-height: 50px;
  font-weight: 600;
  color: #4a4a4a;
}
#a8fbfa62dfa52cf .jquery-accordion-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#a8fbfa62dfa52cf .jquery-accordion-menu ul li {
  width: 100%;
  display: block;
  position: relative;
}
#a8fbfa62dfa52cf .jquery-accordion-menu ul li a {
  color: #4a4a4a;
  display: block;
  width: 100%;
  padding: 14px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -o-transition: color .2s linear,background .2s linear;
  -moz-transition: color .2s linear,background .2s linear;
  -webkit-transition: color .2s linear,background .2s linear;
  transition: color .2s linear,background .2s linear;
}
#a8fbfa62dfa52cf .menu-list-expand .submenu-indicator {
  display: none;
}
#a8fbfa62dfa52cf .jquery-accordion-menu > ul > li > a:hover {
  color: #fff;
  background: #e3e6e7;
  border-bottom-color: #d8dcde;
  background-color: #e3e6e7;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#a8fbfa62dfa52cf .jquery-accordion-menu > ul > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  background-color: #e3e6e7;
}
#a8fbfa62dfa52cf .jquery-accordion-menu ul li > a {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #e3e6e7;
}
#a8fbfa62dfa52cf .jquery-accordion-menu > ul > li.active > a {
  color: #4a4a4a;
  background: #e3e6e7;
}
#a8fbfa62dfa52cf .jquery-accordion-menu ul li a img,
#a8fbfa62dfa52cf .jquery-accordion-menu ul li a svg {
  width: 14px;
  margin-right: 8px;
  margin-top: 4px;
  float: left;
  fill: currentColor;
  text-align: left;
}
#a8fbfa62dfa52cf .jquery-accordion-menu .submenu-indicator {
  cursor: pointer;
  float: right;
  right: 14px;
  position: absolute;
  line-height: 19px;
  font-size: 20px;
  -o-transition: transform .3s linear;
  -moz-transition: transform .3s linear;
  -webkit-transition: transform .3s linear;
  -ms-transition: transform .3s linear;
}
#a8fbfa62dfa52cf .jquery-accordion-menu ul ul.submenu .submenu-indicator {
  line-height: 16px;
}
#a8fbfa62dfa52cf .jquery-accordion-menu .submenu-indicator-minus > .submenu-indicator {
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#a8fbfa62dfa52cf .jquery-accordion-menu ul ul.submenu,
#a8fbfa62dfa52cf .jquery-accordion-menu ul ul.submenu li ul.submenu {
  width: 100%;
  display: none;
  position: static;
}
#a8fbfa62dfa52cf .jquery-accordion-menu.menu-list-expand ul ul.submenu,
#a8fbfa62dfa52cf .jquery-accordion-menu.menu-list-expand ul ul.submenu li ul.submenu {
  display: block;
}
#a8fbfa62dfa52cf .jquery-accordion-menu ul ul.submenu.show,
#a8fbfa62dfa52cf .jquery-accordion-menu ul ul.submenu li ul.submenu.show {
  display: block;
}
#a8fbfa62dfa52cf .jquery-accordion-menu ul ul.submenu li {
  clear: both;
  width: 100%;
}
#a8fbfa62dfa52cf .jquery-accordion-menu ul ul.submenu li a {
  border-left: 3px solid transparent;
  width: 100%;
  display: block;
  font-size: 14px;
  background: #383838;
  border-top: none;
  position: relative;
  border-left: solid 2px transparent;
  -o-transition: border .2s linear;
  -moz-transition: border .2s linear;
  -webkit-transition: border .2s linear;
  transition: border .2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a8fbfa62dfa52cf .jquery-accordion-menu ul ul.submenu.show > li > a {
  background: rgba(0, 0, 0, 0);
}
#a8fbfa62dfa52cf .jquery-accordion-menu ul ul.submenu li > a:hover {
  border-left-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  background-color: #e3e6e7;
}
#a8fbfa62dfa52cf .jquery-accordion-menu ul ul.submenu > li > a {
  padding-left: 30px;
}
#a8fbfa62dfa52cf .jquery-accordion-menu ul ul.submenu > li > ul.submenu > li > a {
  padding-left: 45px;
}
#a8fbfa62dfa52cf .jquery-accordion-menu ul ul.submenu > li > ul.submenu > li > ul.submenu > li > a {
  padding-left: 60px;
}
#a8fbfa62dfa52cf .jquery-accordion-menu ul ul.submenu li.active > a {
  color: #4a4a4a;
  background: #e3e6e7;
}
#a8fbfa62dfa52cf .jquery-accordion-menu > ul > li > a {
  padding-top: 14px;
  padding-bottom: 14px;
}
#a8fbfa62dfa52cf .jquery-accordion-menu ul.submenu li a {
  padding-top: 14px;
  padding-bottom: 14px;
}
#ab26ea292ea316a > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#ae05dacc15aff4b .uk-grid {
  margin-left: 0px;
}
#ae05dacc15aff4b .uk-grid > * {
  padding-left: 0px;
}
#ae05dacc15aff4b .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#ae05dacc15aff4b .dynamic-list-item {
  border-bottom-width: 1px;
  border-bottom-style: dotted;
  border-bottom-color: #e2e2e2;
}
#ae05dacc15aff4b .dynamic-list-item:hover {
  background-color: #fafafa;
}
/* mobile */
@media (max-width: 640px) {
  #ae05dacc15aff4b .uk-position-center-left-out {
    left: -30px;
  }
  #ae05dacc15aff4b .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a7517a4385aa707 > .ele-wrap {border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-left-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);border-top-color: rgba(226, 226, 226, 1);}#a8312aa9c6a19e3 a, #a8312aa9c6a19e3 {
        font-weight: normal;
        font-style: normal;
    font-size: 20px;font-family: inherit;color: rgba(49, 48, 48, 1);}#a8312aa9c6a19e3 a:hover {
        font-weight: normal;
        font-style: normal;
    font-size: 20px;font-family: inherit;color: rgba(1, 100, 255, 1);}#a3aeea5887a0a6e > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-left-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);}#a1739a9ed9ac510 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a1739a9ed9ac510 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a1739a9ed9ac510 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a1739a9ed9ac510 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a1739a9ed9ac510 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a1739a9ed9ac510 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a1739a9ed9ac510 .ele-article-list .pic-article .img_wrap .tag {
  display: inline-block;
  padding: 0 .5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: .6rem;
  text-align: center;
  border-radius: 1rem;
  margin: 0 5px 5px 0;
}
#a1739a9ed9ac510 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a1739a9ed9ac510 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a1739a9ed9ac510 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a1739a9ed9ac510 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a1739a9ed9ac510 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a1739a9ed9ac510 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a1739a9ed9ac510 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a1739a9ed9ac510 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a1739a9ed9ac510 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a1739a9ed9ac510 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a1739a9ed9ac510 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a1739a9ed9ac510 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a1739a9ed9ac510 .ele-article-list .text-article h3 a:hover {
  text-decoration: underline;
  color: #222;
}
/* mobile */
@media (max-width: 640px) {
  .ele-article-list .pic-article {
    padding: 10px 0;
  }
  .ele-article-list .pic-article .img_wrap {
    margin-right: 10px;
  }
  .ele-article-list .pic-article .img_wrap .tag {
    display: none;
  }
  .ele-article-list .pic-article .info {
    font-size: 12px;
  }
  .ele-article-list .pic-article .abstract {
    display: none;
  }
  .ele-article-list .pic-article .info h3 {
    font-size: 14px;
  }
}
#a1739a9ed9ac510 .ele-article-list .pic-article {
  border-bottom: 1px solid #ececec;
}
#a1739a9ed9ac510 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a1739a9ed9ac510 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a1739a9ed9ac510 .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a1739a9ed9ac510 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a1739a9ed9ac510 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a1739a9ed9ac510 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a1739a9ed9ac510 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a1739a9ed9ac510 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a1739a9ed9ac510 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
  padding-top: 5px;
  padding-bottom: 5px;
}
#a1739a9ed9ac510 .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a1739a9ed9ac510 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a1739a9ed9ac510 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a1739a9ed9ac510 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a5ba9ae2f2ab63b {
  /* 修复吸顶导航宽度被写死的问题 */
}
#a5ba9ae2f2ab63b .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a5ba9ae2f2ab63b .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a3e82aebe2aade7 > .ele-wrap {background-color: rgba(244, 252, 254, 1);background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1652490173864.jpeg);background-position: top left;background-size: auto;background-repeat: no-repeat;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ad7cdacec3ad258 .jquery-accordion-menu {
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
}
#ad7cdacec3ad258 .jquery-accordion-menu .jquery-accordion-menu-header {
  width: 100%;
  height: 50px;
  padding-left: 14px;
  font-size: 16px;
  line-height: 50px;
  font-weight: 600;
  color: #4a4a4a;
}
#ad7cdacec3ad258 .jquery-accordion-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#ad7cdacec3ad258 .jquery-accordion-menu ul li {
  width: 100%;
  display: block;
  position: relative;
}
#ad7cdacec3ad258 .jquery-accordion-menu ul li a {
  color: #4a4a4a;
  display: block;
  width: 100%;
  padding: 14px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -o-transition: color .2s linear,background .2s linear;
  -moz-transition: color .2s linear,background .2s linear;
  -webkit-transition: color .2s linear,background .2s linear;
  transition: color .2s linear,background .2s linear;
}
#ad7cdacec3ad258 .menu-list-expand .submenu-indicator {
  display: none;
}
#ad7cdacec3ad258 .jquery-accordion-menu > ul > li > a:hover {
  color: #fff;
  background: #e3e6e7;
  border-bottom-color: #d8dcde;
  background-color: #e3e6e7;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#ad7cdacec3ad258 .jquery-accordion-menu > ul > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  background-color: #e3e6e7;
}
#ad7cdacec3ad258 .jquery-accordion-menu ul li > a {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #e3e6e7;
}
#ad7cdacec3ad258 .jquery-accordion-menu > ul > li.active > a {
  color: #4a4a4a;
  background: #e3e6e7;
}
#ad7cdacec3ad258 .jquery-accordion-menu ul li a img,
#ad7cdacec3ad258 .jquery-accordion-menu ul li a svg {
  width: 14px;
  margin-right: 8px;
  margin-top: 4px;
  float: left;
  fill: currentColor;
  text-align: left;
}
#ad7cdacec3ad258 .jquery-accordion-menu .submenu-indicator {
  cursor: pointer;
  float: right;
  right: 14px;
  position: absolute;
  line-height: 19px;
  font-size: 20px;
  -o-transition: transform .3s linear;
  -moz-transition: transform .3s linear;
  -webkit-transition: transform .3s linear;
  -ms-transition: transform .3s linear;
}
#ad7cdacec3ad258 .jquery-accordion-menu ul ul.submenu .submenu-indicator {
  line-height: 16px;
}
#ad7cdacec3ad258 .jquery-accordion-menu .submenu-indicator-minus > .submenu-indicator {
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#ad7cdacec3ad258 .jquery-accordion-menu ul ul.submenu,
#ad7cdacec3ad258 .jquery-accordion-menu ul ul.submenu li ul.submenu {
  width: 100%;
  display: none;
  position: static;
}
#ad7cdacec3ad258 .jquery-accordion-menu.menu-list-expand ul ul.submenu,
#ad7cdacec3ad258 .jquery-accordion-menu.menu-list-expand ul ul.submenu li ul.submenu {
  display: block;
}
#ad7cdacec3ad258 .jquery-accordion-menu ul ul.submenu.show,
#ad7cdacec3ad258 .jquery-accordion-menu ul ul.submenu li ul.submenu.show {
  display: block;
}
#ad7cdacec3ad258 .jquery-accordion-menu ul ul.submenu li {
  clear: both;
  width: 100%;
}
#ad7cdacec3ad258 .jquery-accordion-menu ul ul.submenu li a {
  border-left: 3px solid transparent;
  width: 100%;
  display: block;
  font-size: 14px;
  background: #383838;
  border-top: none;
  position: relative;
  border-left: solid 2px transparent;
  -o-transition: border .2s linear;
  -moz-transition: border .2s linear;
  -webkit-transition: border .2s linear;
  transition: border .2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#ad7cdacec3ad258 .jquery-accordion-menu ul ul.submenu.show > li > a {
  background: rgba(0, 0, 0, 0);
}
#ad7cdacec3ad258 .jquery-accordion-menu ul ul.submenu li > a:hover {
  border-left-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  background-color: #e3e6e7;
}
#ad7cdacec3ad258 .jquery-accordion-menu ul ul.submenu > li > a {
  padding-left: 30px;
}
#ad7cdacec3ad258 .jquery-accordion-menu ul ul.submenu > li > ul.submenu > li > a {
  padding-left: 45px;
}
#ad7cdacec3ad258 .jquery-accordion-menu ul ul.submenu > li > ul.submenu > li > ul.submenu > li > a {
  padding-left: 60px;
}
#ad7cdacec3ad258 .jquery-accordion-menu ul ul.submenu li.active > a {
  color: #4a4a4a;
  background: #e3e6e7;
}
#ad7cdacec3ad258 .jquery-accordion-menu > ul > li > a {
  padding-top: 14px;
  padding-bottom: 14px;
}
#ad7cdacec3ad258 .jquery-accordion-menu ul.submenu li a {
  padding-top: 14px;
  padding-bottom: 14px;
}
#a7564a44c7a080d > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#a069ead348aca58 .uk-grid {
  margin-left: 0px;
}
#a069ead348aca58 .uk-grid > * {
  padding-left: 0px;
}
#a069ead348aca58 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a069ead348aca58 .dynamic-list-item {
  border-bottom-width: 1px;
  border-bottom-style: dotted;
  border-bottom-color: #e2e2e2;
}
#a069ead348aca58 .dynamic-list-item:hover {
  background-color: #fafafa;
}
/* mobile */
@media (max-width: 640px) {
  #a069ead348aca58 .uk-position-center-left-out {
    left: -30px;
  }
  #a069ead348aca58 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a87d5a1d18ac7a2 > .ele-wrap {border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-left-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);border-top-color: rgba(226, 226, 226, 1);}#a484aa1ed5a082c a, #a484aa1ed5a082c {
        font-weight: normal;
        font-style: normal;
    font-size: 20px;font-family: inherit;color: rgba(49, 48, 48, 1);}#a484aa1ed5a082c a:hover {
        font-weight: normal;
        font-style: normal;
    font-size: 20px;font-family: inherit;color: rgba(1, 100, 255, 1);}#a682aab8cea076b > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-left-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);}#af94fad359a4a88 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#af94fad359a4a88 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#af94fad359a4a88 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#af94fad359a4a88 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#af94fad359a4a88 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#af94fad359a4a88 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#af94fad359a4a88 .ele-article-list .pic-article .img_wrap .tag {
  display: inline-block;
  padding: 0 .5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: .6rem;
  text-align: center;
  border-radius: 1rem;
  margin: 0 5px 5px 0;
}
#af94fad359a4a88 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#af94fad359a4a88 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#af94fad359a4a88 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#af94fad359a4a88 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#af94fad359a4a88 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#af94fad359a4a88 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#af94fad359a4a88 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#af94fad359a4a88 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#af94fad359a4a88 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#af94fad359a4a88 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#af94fad359a4a88 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#af94fad359a4a88 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#af94fad359a4a88 .ele-article-list .text-article h3 a:hover {
  text-decoration: underline;
  color: #222;
}
/* mobile */
@media (max-width: 640px) {
  .ele-article-list .pic-article {
    padding: 10px 0;
  }
  .ele-article-list .pic-article .img_wrap {
    margin-right: 10px;
  }
  .ele-article-list .pic-article .img_wrap .tag {
    display: none;
  }
  .ele-article-list .pic-article .info {
    font-size: 12px;
  }
  .ele-article-list .pic-article .abstract {
    display: none;
  }
  .ele-article-list .pic-article .info h3 {
    font-size: 14px;
  }
}
#af94fad359a4a88 .ele-article-list .pic-article {
  border-bottom: 1px solid #ececec;
}
#af94fad359a4a88 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#af94fad359a4a88 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#af94fad359a4a88 .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#af94fad359a4a88 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#af94fad359a4a88 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#af94fad359a4a88 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#af94fad359a4a88 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#af94fad359a4a88 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#af94fad359a4a88 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
  padding-top: 5px;
  padding-bottom: 5px;
}
#af94fad359a4a88 .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#af94fad359a4a88 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#af94fad359a4a88 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#af94fad359a4a88 .ele-article-list .text-article:hover .time {
  color: auto;
}
#ac9d1a3cb6a58fe {
  /* 修复吸顶导航宽度被写死的问题 */
}
#ac9d1a3cb6a58fe .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ac9d1a3cb6a58fe .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a8754a1298a525d > .ele-wrap {background-color: rgba(244, 252, 254, 1);background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1652490173864.jpeg);background-position: top left;background-size: auto;background-repeat: no-repeat;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a1f2ca0f37aa32e .jquery-accordion-menu {
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
}
#a1f2ca0f37aa32e .jquery-accordion-menu .jquery-accordion-menu-header {
  width: 100%;
  height: 50px;
  padding-left: 14px;
  font-size: 16px;
  line-height: 50px;
  font-weight: 600;
  color: #4a4a4a;
}
#a1f2ca0f37aa32e .jquery-accordion-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#a1f2ca0f37aa32e .jquery-accordion-menu ul li {
  width: 100%;
  display: block;
  position: relative;
}
#a1f2ca0f37aa32e .jquery-accordion-menu ul li a {
  color: #4a4a4a;
  display: block;
  width: 100%;
  padding: 14px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -o-transition: color .2s linear,background .2s linear;
  -moz-transition: color .2s linear,background .2s linear;
  -webkit-transition: color .2s linear,background .2s linear;
  transition: color .2s linear,background .2s linear;
}
#a1f2ca0f37aa32e .menu-list-expand .submenu-indicator {
  display: none;
}
#a1f2ca0f37aa32e .jquery-accordion-menu > ul > li > a:hover {
  color: #fff;
  background: #e3e6e7;
  border-bottom-color: #d8dcde;
  background-color: #e3e6e7;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#a1f2ca0f37aa32e .jquery-accordion-menu > ul > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  background-color: #e3e6e7;
}
#a1f2ca0f37aa32e .jquery-accordion-menu ul li > a {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #e3e6e7;
}
#a1f2ca0f37aa32e .jquery-accordion-menu > ul > li.active > a {
  color: #4a4a4a;
  background: #e3e6e7;
}
#a1f2ca0f37aa32e .jquery-accordion-menu ul li a img,
#a1f2ca0f37aa32e .jquery-accordion-menu ul li a svg {
  width: 14px;
  margin-right: 8px;
  margin-top: 4px;
  float: left;
  fill: currentColor;
  text-align: left;
}
#a1f2ca0f37aa32e .jquery-accordion-menu .submenu-indicator {
  cursor: pointer;
  float: right;
  right: 14px;
  position: absolute;
  line-height: 19px;
  font-size: 20px;
  -o-transition: transform .3s linear;
  -moz-transition: transform .3s linear;
  -webkit-transition: transform .3s linear;
  -ms-transition: transform .3s linear;
}
#a1f2ca0f37aa32e .jquery-accordion-menu ul ul.submenu .submenu-indicator {
  line-height: 16px;
}
#a1f2ca0f37aa32e .jquery-accordion-menu .submenu-indicator-minus > .submenu-indicator {
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#a1f2ca0f37aa32e .jquery-accordion-menu ul ul.submenu,
#a1f2ca0f37aa32e .jquery-accordion-menu ul ul.submenu li ul.submenu {
  width: 100%;
  display: none;
  position: static;
}
#a1f2ca0f37aa32e .jquery-accordion-menu.menu-list-expand ul ul.submenu,
#a1f2ca0f37aa32e .jquery-accordion-menu.menu-list-expand ul ul.submenu li ul.submenu {
  display: block;
}
#a1f2ca0f37aa32e .jquery-accordion-menu ul ul.submenu.show,
#a1f2ca0f37aa32e .jquery-accordion-menu ul ul.submenu li ul.submenu.show {
  display: block;
}
#a1f2ca0f37aa32e .jquery-accordion-menu ul ul.submenu li {
  clear: both;
  width: 100%;
}
#a1f2ca0f37aa32e .jquery-accordion-menu ul ul.submenu li a {
  border-left: 3px solid transparent;
  width: 100%;
  display: block;
  background: rgba(155, 155, 155, 0.1);
  border-top: none;
  position: relative;
  border-left: solid 2px transparent;
  -o-transition: border .2s linear;
  -moz-transition: border .2s linear;
  -webkit-transition: border .2s linear;
  transition: border .2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
  color: #4a4a4a;
  background-color: rgba(155, 155, 155, 0.1);
}
#a1f2ca0f37aa32e .jquery-accordion-menu ul ul.submenu.show > li > a {
  background: rgba(0, 0, 0, 0);
}
#a1f2ca0f37aa32e .jquery-accordion-menu ul ul.submenu li > a:hover {
  border-left-color: rgba(0, 0, 0, 0);
  background-color: #e3e6e7;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#a1f2ca0f37aa32e .jquery-accordion-menu ul ul.submenu > li > a {
  padding-left: 30px;
}
#a1f2ca0f37aa32e .jquery-accordion-menu ul ul.submenu > li > ul.submenu > li > a {
  padding-left: 45px;
}
#a1f2ca0f37aa32e .jquery-accordion-menu ul ul.submenu > li > ul.submenu > li > ul.submenu > li > a {
  padding-left: 60px;
}
#a1f2ca0f37aa32e .jquery-accordion-menu ul ul.submenu li.active > a {
  color: #4a4a4a;
  background: #e3e6e7;
}
#a1f2ca0f37aa32e .jquery-accordion-menu > ul > li > a {
  padding-top: 14px;
  padding-bottom: 14px;
}
#a1f2ca0f37aa32e .jquery-accordion-menu ul.submenu li a {
  padding-top: 14px;
  padding-bottom: 14px;
}
#af467aefe1a1f17 > .ele-wrap {border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-left-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);border-top-color: rgba(226, 226, 226, 1);}#a9ea6afab4abd24 a, #a9ea6afab4abd24 {
        font-weight: normal;
        font-style: normal;
    font-size: 20px;font-family: inherit;color: rgba(49, 48, 48, 1);}#a9ea6afab4abd24 a:hover {
        font-weight: normal;
        font-style: normal;
    font-size: 20px;font-family: inherit;color: rgba(1, 100, 255, 1);}#a0c80a2ad5a8b80 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#aca84ad25fa22ca .uk-grid {
  margin-left: 0px;
}
#aca84ad25fa22ca .uk-grid > * {
  padding-left: 0px;
}
#aca84ad25fa22ca .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#aca84ad25fa22ca .dynamic-list-item {
  border-bottom-width: 1px;
  border-bottom-style: dotted;
  border-bottom-color: #e2e2e2;
}
#aca84ad25fa22ca .dynamic-list-item:hover {
  background-color: #fafafa;
}
/* mobile */
@media (max-width: 640px) {
  #aca84ad25fa22ca .uk-position-center-left-out {
    left: -30px;
  }
  #aca84ad25fa22ca .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ae686aa4b6a4ea8 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#ae686aa4b6a4ea8 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ae686aa4b6a4ea8 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a2651a67b3abab4 a, #a2651a67b3abab4 {
        font-weight: normal;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#a5309aaa96af5b6 > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1776391309244.png);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#a51b8a2a67a4f4d .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a51b8a2a67a4f4d .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a51b8a2a67a4f4d .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a51b8a2a67a4f4d .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a51b8a2a67a4f4d .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a51b8a2a67a4f4d .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a51b8a2a67a4f4d .ele-article-list .pic-article .img_wrap .tag {
  display: inline-block;
  padding: 0 .5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: .6rem;
  text-align: center;
  border-radius: 1rem;
  margin: 0 5px 5px 0;
}
#a51b8a2a67a4f4d .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a51b8a2a67a4f4d .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a51b8a2a67a4f4d .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a51b8a2a67a4f4d .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a51b8a2a67a4f4d .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a51b8a2a67a4f4d .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a51b8a2a67a4f4d .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a51b8a2a67a4f4d .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a51b8a2a67a4f4d .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a51b8a2a67a4f4d .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a51b8a2a67a4f4d .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a51b8a2a67a4f4d .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a51b8a2a67a4f4d .ele-article-list .text-article h3 a:hover {
  text-decoration: underline;
  color: #222;
}
/* mobile */
@media (max-width: 640px) {
  .ele-article-list .pic-article {
    padding: 10px 0;
  }
  .ele-article-list .pic-article .img_wrap {
    margin-right: 10px;
  }
  .ele-article-list .pic-article .img_wrap .tag {
    display: none;
  }
  .ele-article-list .pic-article .info {
    font-size: 12px;
  }
  .ele-article-list .pic-article .abstract {
    display: none;
  }
  .ele-article-list .pic-article .info h3 {
    font-size: 14px;
  }
}
#a51b8a2a67a4f4d .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px dashed #ececec;
}
#a51b8a2a67a4f4d .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a51b8a2a67a4f4d .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a51b8a2a67a4f4d .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
}
#a51b8a2a67a4f4d .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a51b8a2a67a4f4d .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a51b8a2a67a4f4d .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a51b8a2a67a4f4d .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a51b8a2a67a4f4d .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a51b8a2a67a4f4d .ele-article-list .text-article {
  border-bottom: 1px dashed #ececec;
}
#a51b8a2a67a4f4d .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
}
#a51b8a2a67a4f4d .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a51b8a2a67a4f4d .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a51b8a2a67a4f4d .ele-article-list .text-article:hover .time {
  color: auto;
}
#a3766ae10fae17c > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1776391309244.png);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#aa1a6abfc5a0182 > .ele-wrap {background-color: rgba(0, 0, 0, 0);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a1e64a8346a2e21 .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a1e64a8346a2e21 .img-wrap:hover {
  border-color: #4a90e2;
}
#a114ba0331a8f04 , #a114ba0331a8f04 a{color: rgba(255, 255, 255, 1);}#a114ba0331a8f04:hover, #a114ba0331a8f04 a:hover {color: rgba(204, 233, 252, 1);}#ad22baa3aeaf965 .img-wrap {
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}
#a8ed1a4c76ac1e0 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#af8fcaab65a017d .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#ad251aec4eabcb1 .img-wrap {
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}
#a5984a7370a4724 , #a5984a7370a4724 a{color: rgba(255, 255, 255, 1);}#ad5a5aa0f9ab51a > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a426da0801aa405 .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#ad1f7af105a5622 , #ad1f7af105a5622 a{color: rgba(255, 255, 255, 1);}#aa891a5360ad8b0 .img-wrap {
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
}
#a3dfbabe01a584c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#aa734ad00caed82 .gallery-thumbnails .uk-thumbnav {
  justify-content: center;
}
#aa734ad00caed82 .gallery-thumbnails .uk-thumbnav > * {
  padding-left: 8px;
}
#afa78a215ba8d42 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a9bc4a8297a7a91 .uk-grid {
  margin-left: -15px;
}
#a9bc4a8297a7a91 .uk-grid > * {
  padding-left: 15px;
}
#a9bc4a8297a7a91 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a9bc4a8297a7a91 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a9bc4a8297a7a91 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a9bc4a8297a7a91 .article .info {
  padding: 6px 8px;
  position: relative;
}
#a9bc4a8297a7a91 .article .info p {
  margin: 10px 0 10px;
}
#a9bc4a8297a7a91 .article svg {
  fill: currentColor;
}
#a9bc4a8297a7a91 .article .btn_icon {
  position: absolute;
  right: 8px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#a9bc4a8297a7a91 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#a9bc4a8297a7a91 .article.list-icon .info {
  padding-left: 25px;
}
#a9bc4a8297a7a91 .article .datetime {
  position: absolute;
  right: 8px;
  top: 6px;
}
#a9bc4a8297a7a91 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#a9bc4a8297a7a91 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a9bc4a8297a7a91 .article:hover .title {
  color: #009adc;
}
#a9bc4a8297a7a91 .article:hover .datetime {
  color: #009adc;
}
#a9bc4a8297a7a91 .article:hover .category {
  color: #b6b6b6;
}
#a9bc4a8297a7a91 .article:hover .abstract {
  color: #b6b6b6;
}
#a9bc4a8297a7a91 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a9bc4a8297a7a91 .article:hover .list_icon {
  color: #009adc;
}
#a5c71a8374a5817 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#a5c71a8374a5817 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a5c71a8374a5817 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a5f17ad34baa68c .sidebar {
  width: 300px;
  margin-left: 20px;
}
#a5f17ad34baa68c .datetime {
  flex-shrink: 0;
  margin-left: 20px;
}
#a5f17ad34baa68c .data-list .uk-card {
  border-bottom: 1px dashed #ececec;
}
#a5f17ad34baa68c .content-header .category {
  border-left: 3px solid #0164ff;
  padding-left: 10px;
  line-height: 1;
}
#a5f17ad34baa68c .post-item {
  overflow: hidden;
}
#a5f17ad34baa68c .post-item .uk-button {
  color: #fff;
  background: #0164ff;
  border-radius: 14px;
  line-height: 28px;
  padding: 0 25px;
}
#a5f17ad34baa68c .post-item {
  height: 100%;
  width: 100%;
}
#a5f17ad34baa68c .post-title {
  margin-bottom: 20px;
}
#a5f17ad34baa68c .date {
  font-size: 28px;
  font-weight: bolder;
}
#a5f17ad34baa68c .sidebar.left {
  margin-left: 0;
  margin-right: 20px;
}
@media (max-width: 640px) {
  #a5f17ad34baa68c .sidebar {
    width: 100%;
    margin: 0 0 15px;
  }
  #a5f17ad34baa68c .data-list .uk-card {
    padding: 10px 0;
  }
  #a5f17ad34baa68c .post-title {
    margin-bottom: 6px;
  }
  #a5f17ad34baa68c .mobile-date {
    color: #999;
    font-size: 12px;
  }
}
#a5f17ad34baa68c .data-list .uk-card {
  cursor: pointer !important;
}
#a5f17ad34baa68c .data-list .uk-card img {
  max-height: 300px;
}
#a5f17ad34baa68c .data-list .uk-card:hover {
  background: #fafafa;
}
#a5f17ad34baa68c .data-list .uk-card:hover .uk-h4 {
  color: #00a2e8;
}
#a5f17ad34baa68c .data-list .uk-card .uk-card-media-left img {
  transition: all .3s ease;
}
#a5f17ad34baa68c .data-list .uk-card .uk-card-media-left:hover img {
  transform: scale(1.05);
}
#a5f17ad34baa68c .data-list .uk-card-media-left {
  border-radius: 4px;
  overflow: hidden;
}
#a5f17ad34baa68c .search-form {
  position: relative;
  overflow: hidden;
  background: #fff;
  display: block;
}
#a5f17ad34baa68c .search-form input.search-input {
  width: 100%;
  height: 34px;
  padding: 5px 52px 5px 10px;
  font-size: 14px;
  color: #333;
  border: 1px solid #efefef;
}
#a5f17ad34baa68c .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: #0164ff;
  cursor: pointer;
}
#a5f17ad34baa68c .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;
}
#a5f17ad34baa68c .uk-card .category:hover {
  background: #0164ff;
}
#a5f17ad34baa68c .accordion-menu {
  width: 100%;
}
#a5f17ad34baa68c .accordion-menu ul ul.submenu,
#a5f17ad34baa68c .accordion-menu ul ul.submenu li ul.submenu {
  background: transparent;
}
#a5f17ad34baa68c .accordion-menu-header {
  padding: 10px 10px 0;
  border-bottom: 1px solid #ececec;
}
#a5f17ad34baa68c .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;
}
#a5f17ad34baa68c .accordion-menu > ul > li > a {
  background: #fff;
  font-size: 14px;
  border-bottom: 1px solid #ececec;
}
#a5f17ad34baa68c .accordion-menu .menu-item.active > a {
  background: #0164ff;
  color: #fff;
}
#a5f17ad34baa68c .accordion-menu li a:hover {
  background-color: #0164ff;
  color: #fff;
  border: none;
}
#a5f17ad34baa68c .accordion-menu .submenu-indicator {
  cursor: pointer;
  position: absolute;
  font-size: 20px;
  line-height: 40px;
  padding: 0 20px;
  right: 0;
}
#a5f17ad34baa68c .phone {
  display: block;
  font-size: 24px;
  font-weight: bold;
}
#a5f17ad34baa68c .hot-list,
#a5f17ad34baa68c .new-list {
  padding: 12px;
}
#a5f17ad34baa68c .new-list a:hover,
#a5f17ad34baa68c .hot-list a:hover {
  color: #00a2e8;
}
#a5f17ad34baa68c .hot-item .thumb {
  display: inline-block;
  width: 100px;
  overflow: hidden;
  margin-right: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
#a5f17ad34baa68c .hot-item:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  transition: all 0.3s ease-out 0s;
}
#a5f17ad34baa68c .hot-item:hover a {
  color: #00a2e8;
}
#a5f17ad34baa68c .panel-title {
  position: relative;
  padding-left: 10px;
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
#a5f17ad34baa68c .panel-title::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 16px;
  border-radius: 3px;
  background: #0164ff;
  content: "";
}
#a5f17ad34baa68c .content-header {
  padding: 0 0 0;
}
#a5f17ad34baa68c .item-title {
  color: #333;
}
#a5f17ad34baa68c input::placeholder {
  color: #999;
}
#a5f17ad34baa68c .datetime {
  color: #999;
}
#a5f17ad34baa68c .new-item a {
  padding-left: 25px;
}
#a5f17ad34baa68c .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;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5f17ad34baa68c [data-item*=".abstract"], #a5f17ad34baa68c [data-item*=".abstract"] a {show: true;}#a5f17ad34baa68c [data-item*=".subTitle"], #a5f17ad34baa68c [data-item*=".subTitle"] a {show: true;}#a5f17ad34baa68c [data-item*=".category"], #a5f17ad34baa68c [data-item*=".category"] a {show: true;}#ad62caf964a7b50 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#ad62caf964a7b50 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ad62caf964a7b50 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a7cdbad08da6eb8 > .ele-wrap {background-color: rgba(244, 252, 254, 1);background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1652490173864.jpeg);background-position: top left;background-size: auto;background-repeat: no-repeat;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a7b8da2d85a1ade .jquery-accordion-menu {
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
}
#a7b8da2d85a1ade .jquery-accordion-menu .jquery-accordion-menu-header {
  width: 100%;
  height: 50px;
  padding-left: 14px;
  font-size: 16px;
  line-height: 50px;
  font-weight: 600;
  color: #4a4a4a;
}
#a7b8da2d85a1ade .jquery-accordion-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#a7b8da2d85a1ade .jquery-accordion-menu ul li {
  width: 100%;
  display: block;
  position: relative;
}
#a7b8da2d85a1ade .jquery-accordion-menu ul li a {
  color: #4a4a4a;
  display: block;
  width: 100%;
  padding: 14px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -o-transition: color .2s linear,background .2s linear;
  -moz-transition: color .2s linear,background .2s linear;
  -webkit-transition: color .2s linear,background .2s linear;
  transition: color .2s linear,background .2s linear;
}
#a7b8da2d85a1ade .menu-list-expand .submenu-indicator {
  display: none;
}
#a7b8da2d85a1ade .jquery-accordion-menu > ul > li > a:hover {
  color: #fff;
  background: #e3e6e7;
  border-bottom-color: #d8dcde;
  background-color: #e3e6e7;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#a7b8da2d85a1ade .jquery-accordion-menu > ul > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  background-color: #e3e6e7;
}
#a7b8da2d85a1ade .jquery-accordion-menu ul li > a {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #e3e6e7;
}
#a7b8da2d85a1ade .jquery-accordion-menu > ul > li.active > a {
  color: #4a4a4a;
  background: #e3e6e7;
}
#a7b8da2d85a1ade .jquery-accordion-menu ul li a img,
#a7b8da2d85a1ade .jquery-accordion-menu ul li a svg {
  width: 14px;
  margin-right: 8px;
  margin-top: 4px;
  float: left;
  fill: currentColor;
  text-align: left;
}
#a7b8da2d85a1ade .jquery-accordion-menu .submenu-indicator {
  cursor: pointer;
  float: right;
  right: 14px;
  position: absolute;
  line-height: 19px;
  font-size: 20px;
  -o-transition: transform .3s linear;
  -moz-transition: transform .3s linear;
  -webkit-transition: transform .3s linear;
  -ms-transition: transform .3s linear;
}
#a7b8da2d85a1ade .jquery-accordion-menu ul ul.submenu .submenu-indicator {
  line-height: 16px;
}
#a7b8da2d85a1ade .jquery-accordion-menu .submenu-indicator-minus > .submenu-indicator {
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#a7b8da2d85a1ade .jquery-accordion-menu ul ul.submenu,
#a7b8da2d85a1ade .jquery-accordion-menu ul ul.submenu li ul.submenu {
  width: 100%;
  display: none;
  position: static;
}
#a7b8da2d85a1ade .jquery-accordion-menu.menu-list-expand ul ul.submenu,
#a7b8da2d85a1ade .jquery-accordion-menu.menu-list-expand ul ul.submenu li ul.submenu {
  display: block;
}
#a7b8da2d85a1ade .jquery-accordion-menu ul ul.submenu.show,
#a7b8da2d85a1ade .jquery-accordion-menu ul ul.submenu li ul.submenu.show {
  display: block;
}
#a7b8da2d85a1ade .jquery-accordion-menu ul ul.submenu li {
  clear: both;
  width: 100%;
}
#a7b8da2d85a1ade .jquery-accordion-menu ul ul.submenu li a {
  border-left: 3px solid transparent;
  width: 100%;
  display: block;
  font-size: 14px;
  background: #383838;
  border-top: none;
  position: relative;
  border-left: solid 2px transparent;
  -o-transition: border .2s linear;
  -moz-transition: border .2s linear;
  -webkit-transition: border .2s linear;
  transition: border .2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a7b8da2d85a1ade .jquery-accordion-menu ul ul.submenu.show > li > a {
  background: rgba(0, 0, 0, 0);
}
#a7b8da2d85a1ade .jquery-accordion-menu ul ul.submenu li > a:hover {
  border-left-color: rgba(0, 0, 0, 0);
  background-color: #e3e6e7;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#a7b8da2d85a1ade .jquery-accordion-menu ul ul.submenu > li > a {
  padding-left: 30px;
}
#a7b8da2d85a1ade .jquery-accordion-menu ul ul.submenu > li > ul.submenu > li > a {
  padding-left: 45px;
}
#a7b8da2d85a1ade .jquery-accordion-menu ul ul.submenu > li > ul.submenu > li > ul.submenu > li > a {
  padding-left: 60px;
}
#a7b8da2d85a1ade .jquery-accordion-menu ul ul.submenu li.active > a {
  color: #4a4a4a;
  background: #e3e6e7;
}
#a7b8da2d85a1ade .jquery-accordion-menu > ul > li > a {
  padding-top: 14px;
  padding-bottom: 14px;
}
#a7b8da2d85a1ade .jquery-accordion-menu ul.submenu li a {
  padding-top: 14px;
  padding-bottom: 14px;
}
#a46fea28b9a3712 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#ac948a7bb2a289d .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#ac948a7bb2a289d .dynamic-list-item {
  border-bottom-width: 1px;
  border-bottom-style: dotted;
  border-bottom-color: #e2e2e2;
}
#ac948a7bb2a289d .dynamic-list-item:hover {
  background-color: #fafafa;
}
/* mobile */
@media (max-width: 640px) {
  #ac948a7bb2a289d .uk-position-center-left-out {
    left: -30px;
  }
  #ac948a7bb2a289d .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a2a99a64d1ad290 > .ele-wrap {border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-left-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);border-top-color: rgba(226, 226, 226, 1);}#aac80ac903ab5f7 a, #aac80ac903ab5f7 {
        font-weight: normal;
        font-style: normal;
    font-size: 20px;font-family: inherit;color: rgba(49, 48, 48, 1);}#aac80ac903ab5f7 a:hover {
        font-weight: normal;
        font-style: normal;
    font-size: 20px;font-family: inherit;color: rgba(1, 100, 255, 1);}#a7b28aa577abff7 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-left-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);}#a5ed0a21e0a326a .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a5ed0a21e0a326a .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a5ed0a21e0a326a .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a5ed0a21e0a326a .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a5ed0a21e0a326a .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a5ed0a21e0a326a .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a5ed0a21e0a326a .ele-article-list .pic-article .img_wrap .tag {
  display: inline-block;
  padding: 0 .5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: .6rem;
  text-align: center;
  border-radius: 1rem;
  margin: 0 5px 5px 0;
}
#a5ed0a21e0a326a .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a5ed0a21e0a326a .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a5ed0a21e0a326a .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a5ed0a21e0a326a .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a5ed0a21e0a326a .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a5ed0a21e0a326a .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a5ed0a21e0a326a .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a5ed0a21e0a326a .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a5ed0a21e0a326a .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a5ed0a21e0a326a .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a5ed0a21e0a326a .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a5ed0a21e0a326a .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a5ed0a21e0a326a .ele-article-list .text-article h3 a:hover {
  text-decoration: underline;
  color: #222;
}
/* mobile */
@media (max-width: 640px) {
  .ele-article-list .pic-article {
    padding: 10px 0;
  }
  .ele-article-list .pic-article .img_wrap {
    margin-right: 10px;
  }
  .ele-article-list .pic-article .img_wrap .tag {
    display: none;
  }
  .ele-article-list .pic-article .info {
    font-size: 12px;
  }
  .ele-article-list .pic-article .abstract {
    display: none;
  }
  .ele-article-list .pic-article .info h3 {
    font-size: 14px;
  }
}
#a5ed0a21e0a326a .ele-article-list .pic-article {
  border-bottom: 1px solid #ececec;
}
#a5ed0a21e0a326a .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a5ed0a21e0a326a .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a5ed0a21e0a326a .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a5ed0a21e0a326a .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a5ed0a21e0a326a .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a5ed0a21e0a326a .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a5ed0a21e0a326a .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a5ed0a21e0a326a .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a5ed0a21e0a326a .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
  padding-top: 5px;
  padding-bottom: 5px;
}
#a5ed0a21e0a326a .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a5ed0a21e0a326a .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a5ed0a21e0a326a .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a5ed0a21e0a326a .ele-article-list .text-article:hover .time {
  color: auto;
}
#ace2aae7c2a5249 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#ace2aae7c2a5249 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ace2aae7c2a5249 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a3ed5ab7d1afdd8 {
  /* mobile */
}
#a3ed5ab7d1afdd8 .category-list {
  background: #fff;
  padding: 20px 40px;
}
#a3ed5ab7d1afdd8 .goods-sort {
  padding: 30px 0 25px;
}
#a3ed5ab7d1afdd8 .goods {
  padding-bottom: 40px;
}
#a3ed5ab7d1afdd8 .goods-sort .category {
  border-bottom: 1px dashed #dedede;
  position: relative;
}
#a3ed5ab7d1afdd8 .goods-sort .name {
  flex-shrink: 0;
  margin-right: 12px;
}
#a3ed5ab7d1afdd8 .goods-sort .category-items {
  overflow: hidden;
  margin-bottom: 4px;
}
#a3ed5ab7d1afdd8 .goods-sort .category-item {
  float: left;
  color: #333;
  margin-right: 30px;
  margin-bottom: 16px;
  font-size: 14px;
}
#a3ed5ab7d1afdd8 .goods-sort .category-item.active {
  color: red;
}
#a3ed5ab7d1afdd8 .sorts {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  line-height: 1;
  border-bottom: 1px solid #dedede;
}
#a3ed5ab7d1afdd8 .sorts .name {
  font-size: 14px;
  color: #999;
  margin-right: 28px;
}
#a3ed5ab7d1afdd8 .sorts .sort {
  display: inline-block;
  margin-right: 30px;
  font-size: 14px;
  color: #333;
}
#a3ed5ab7d1afdd8 .sorts .sort.active span {
  color: #e4393c;
}
#a3ed5ab7d1afdd8 .sorts .fa {
  color: #999;
}
#a3ed5ab7d1afdd8 .sorts .fa.active {
  color: #e4393c;
}
#a3ed5ab7d1afdd8 .sorts .sort-icon {
  display: inline-block;
  margin-left: 6px;
}
#a3ed5ab7d1afdd8 .sorts .sort-icon i {
  display: block;
  font-size: 12px;
  line-height: 1;
  height: 2px;
}
#a3ed5ab7d1afdd8 .goods .item {
  color: #333;
  font-weight: 400;
}
#a3ed5ab7d1afdd8 .img-alter {
  display: none;
}
#a3ed5ab7d1afdd8 .goods .item:hover .img-main {
  display: none;
}
#a3ed5ab7d1afdd8 .goods .item:hover .img-alter {
  display: block;
}
#a3ed5ab7d1afdd8 .goods .item .title {
  padding: 0 10px;
  margin-bottom: 4px;
  line-height: 20px;
  font-weight: bolder;
  transition: all .1s ease;
}
#a3ed5ab7d1afdd8 .goods .item .title:hover {
  color: #d4282d;
}
#a3ed5ab7d1afdd8 .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;
}
#a3ed5ab7d1afdd8 .goods .item hr {
  width: 60%;
  display: block;
  height: 1px;
  padding: 0;
  margin: 6px auto 14px;
  border: 0;
  border-top: 1px solid #e8e8e8;
}
#a3ed5ab7d1afdd8 .goods .item .subTitle {
  padding: 0 10px;
  line-height: 18px;
  color: #999;
}
#a3ed5ab7d1afdd8 .goods .origin-price {
  display: inline-block;
  margin-left: 6px;
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}
#a3ed5ab7d1afdd8 .uk-card .uk-card-media {
  background: #fff;
}
#a3ed5ab7d1afdd8 .uk-card:hover {
  background-color: #f4f0e9;
}
#a3ed5ab7d1afdd8 .sort-time.active .fa {
  color: #e4393c;
}
#a3ed5ab7d1afdd8 * + .uk-grid-margin-small,
#a3ed5ab7d1afdd8 .uk-grid + .uk-grid-small,
#a3ed5ab7d1afdd8 .uk-grid-small > .uk-grid-margin {
  margin-top: 50px;
}
@media (max-width: 640px) {
  #a3ed5ab7d1afdd8 .category-list,
  #a3ed5ab7d1afdd8 .goods-sort {
    padding: 10px 0;
  }
  #a3ed5ab7d1afdd8 .goods-sort .category-item {
    margin-bottom: 8px;
  }
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a7e5aaca6ba3a55 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#a7e5aaca6ba3a55 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a7e5aaca6ba3a55 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#aab70ad766a17fa > .ele-wrap {background-color: rgba(244, 252, 254, 1);background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1652490173864.jpeg);background-position: top left;background-size: auto;background-repeat: no-repeat;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aadf8a5f8aa9f68 .jquery-accordion-menu {
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
}
#aadf8a5f8aa9f68 .jquery-accordion-menu .jquery-accordion-menu-header {
  width: 100%;
  height: 50px;
  padding-left: 14px;
  font-size: 16px;
  line-height: 50px;
  font-weight: 600;
  color: #4a4a4a;
}
#aadf8a5f8aa9f68 .jquery-accordion-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#aadf8a5f8aa9f68 .jquery-accordion-menu ul li {
  width: 100%;
  display: block;
  position: relative;
}
#aadf8a5f8aa9f68 .jquery-accordion-menu ul li a {
  color: #4a4a4a;
  display: block;
  width: 100%;
  padding: 14px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -o-transition: color .2s linear,background .2s linear;
  -moz-transition: color .2s linear,background .2s linear;
  -webkit-transition: color .2s linear,background .2s linear;
  transition: color .2s linear,background .2s linear;
}
#aadf8a5f8aa9f68 .menu-list-expand .submenu-indicator {
  display: none;
}
#aadf8a5f8aa9f68 .jquery-accordion-menu > ul > li > a:hover {
  color: #fff;
  background: #e3e6e7;
  border-bottom-color: #d8dcde;
  background-color: #e3e6e7;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#aadf8a5f8aa9f68 .jquery-accordion-menu > ul > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  background-color: #e3e6e7;
}
#aadf8a5f8aa9f68 .jquery-accordion-menu ul li > a {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #e3e6e7;
}
#aadf8a5f8aa9f68 .jquery-accordion-menu > ul > li.active > a {
  color: #4a4a4a;
  background: #e3e6e7;
}
#aadf8a5f8aa9f68 .jquery-accordion-menu ul li a img,
#aadf8a5f8aa9f68 .jquery-accordion-menu ul li a svg {
  width: 14px;
  margin-right: 8px;
  margin-top: 4px;
  float: left;
  fill: currentColor;
  text-align: left;
}
#aadf8a5f8aa9f68 .jquery-accordion-menu .submenu-indicator {
  cursor: pointer;
  float: right;
  right: 14px;
  position: absolute;
  line-height: 19px;
  font-size: 20px;
  -o-transition: transform .3s linear;
  -moz-transition: transform .3s linear;
  -webkit-transition: transform .3s linear;
  -ms-transition: transform .3s linear;
}
#aadf8a5f8aa9f68 .jquery-accordion-menu ul ul.submenu .submenu-indicator {
  line-height: 16px;
}
#aadf8a5f8aa9f68 .jquery-accordion-menu .submenu-indicator-minus > .submenu-indicator {
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#aadf8a5f8aa9f68 .jquery-accordion-menu ul ul.submenu,
#aadf8a5f8aa9f68 .jquery-accordion-menu ul ul.submenu li ul.submenu {
  width: 100%;
  display: none;
  position: static;
}
#aadf8a5f8aa9f68 .jquery-accordion-menu.menu-list-expand ul ul.submenu,
#aadf8a5f8aa9f68 .jquery-accordion-menu.menu-list-expand ul ul.submenu li ul.submenu {
  display: block;
}
#aadf8a5f8aa9f68 .jquery-accordion-menu ul ul.submenu.show,
#aadf8a5f8aa9f68 .jquery-accordion-menu ul ul.submenu li ul.submenu.show {
  display: block;
}
#aadf8a5f8aa9f68 .jquery-accordion-menu ul ul.submenu li {
  clear: both;
  width: 100%;
}
#aadf8a5f8aa9f68 .jquery-accordion-menu ul ul.submenu li a {
  border-left: 3px solid transparent;
  width: 100%;
  display: block;
  font-size: 14px;
  background: #383838;
  border-top: none;
  position: relative;
  border-left: solid 2px transparent;
  -o-transition: border .2s linear;
  -moz-transition: border .2s linear;
  -webkit-transition: border .2s linear;
  transition: border .2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#aadf8a5f8aa9f68 .jquery-accordion-menu ul ul.submenu.show > li > a {
  background: rgba(0, 0, 0, 0);
}
#aadf8a5f8aa9f68 .jquery-accordion-menu ul ul.submenu li > a:hover {
  border-left-color: rgba(0, 0, 0, 0);
  background-color: #e3e6e7;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#aadf8a5f8aa9f68 .jquery-accordion-menu ul ul.submenu > li > a {
  padding-left: 30px;
}
#aadf8a5f8aa9f68 .jquery-accordion-menu ul ul.submenu > li > ul.submenu > li > a {
  padding-left: 45px;
}
#aadf8a5f8aa9f68 .jquery-accordion-menu ul ul.submenu > li > ul.submenu > li > ul.submenu > li > a {
  padding-left: 60px;
}
#aadf8a5f8aa9f68 .jquery-accordion-menu ul ul.submenu li.active > a {
  color: #4a4a4a;
  background: #e3e6e7;
}
#aadf8a5f8aa9f68 .jquery-accordion-menu > ul > li > a {
  padding-top: 14px;
  padding-bottom: 14px;
}
#aadf8a5f8aa9f68 .jquery-accordion-menu ul.submenu li a {
  padding-top: 14px;
  padding-bottom: 14px;
}
#a4cb3ad3a0a92dd > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#aaca1af57ea8bd7 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#aaca1af57ea8bd7 .dynamic-list-item {
  border-bottom-width: 1px;
  border-bottom-style: dotted;
  border-bottom-color: #e2e2e2;
}
#aaca1af57ea8bd7 .dynamic-list-item:hover {
  background-color: #fafafa;
}
/* mobile */
@media (max-width: 640px) {
  #aaca1af57ea8bd7 .uk-position-center-left-out {
    left: -30px;
  }
  #aaca1af57ea8bd7 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a520faf7c5a237c > .ele-wrap {border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-left-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);border-top-color: rgba(226, 226, 226, 1);}#a5a69a2d4da41c4 a, #a5a69a2d4da41c4 {
        font-weight: normal;
        font-style: normal;
    font-size: 20px;font-family: inherit;color: rgba(49, 48, 48, 1);}#a5a69a2d4da41c4 a:hover {
        font-weight: normal;
        font-style: normal;
    font-size: 20px;font-family: inherit;color: rgba(1, 100, 255, 1);}#ad539a2a0fa5968 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#ad539a2a0fa5968 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ad539a2a0fa5968 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a392babe61ac0ce > .ele-wrap {background-color: rgba(244, 252, 254, 1);background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1652490173864.jpeg);background-position: top left;background-size: auto;background-repeat: no-repeat;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a6824a9765aabb8 .jquery-accordion-menu {
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
}
#a6824a9765aabb8 .jquery-accordion-menu .jquery-accordion-menu-header {
  width: 100%;
  height: 50px;
  padding-left: 14px;
  font-size: 16px;
  line-height: 50px;
  font-weight: 600;
  color: #4a4a4a;
}
#a6824a9765aabb8 .jquery-accordion-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#a6824a9765aabb8 .jquery-accordion-menu ul li {
  width: 100%;
  display: block;
  position: relative;
}
#a6824a9765aabb8 .jquery-accordion-menu ul li a {
  color: #4a4a4a;
  display: block;
  width: 100%;
  padding: 14px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -o-transition: color .2s linear,background .2s linear;
  -moz-transition: color .2s linear,background .2s linear;
  -webkit-transition: color .2s linear,background .2s linear;
  transition: color .2s linear,background .2s linear;
}
#a6824a9765aabb8 .menu-list-expand .submenu-indicator {
  display: none;
}
#a6824a9765aabb8 .jquery-accordion-menu > ul > li > a:hover {
  color: #fff;
  background: #e3e6e7;
  border-bottom-color: #d8dcde;
  background-color: #e3e6e7;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#a6824a9765aabb8 .jquery-accordion-menu > ul > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  background-color: #e3e6e7;
}
#a6824a9765aabb8 .jquery-accordion-menu ul li > a {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #e3e6e7;
}
#a6824a9765aabb8 .jquery-accordion-menu > ul > li.active > a {
  color: #4a4a4a;
  background: #e3e6e7;
}
#a6824a9765aabb8 .jquery-accordion-menu ul li a img,
#a6824a9765aabb8 .jquery-accordion-menu ul li a svg {
  width: 14px;
  margin-right: 8px;
  margin-top: 4px;
  float: left;
  fill: currentColor;
  text-align: left;
}
#a6824a9765aabb8 .jquery-accordion-menu .submenu-indicator {
  cursor: pointer;
  float: right;
  right: 14px;
  position: absolute;
  line-height: 19px;
  font-size: 20px;
  -o-transition: transform .3s linear;
  -moz-transition: transform .3s linear;
  -webkit-transition: transform .3s linear;
  -ms-transition: transform .3s linear;
}
#a6824a9765aabb8 .jquery-accordion-menu ul ul.submenu .submenu-indicator {
  line-height: 16px;
}
#a6824a9765aabb8 .jquery-accordion-menu .submenu-indicator-minus > .submenu-indicator {
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#a6824a9765aabb8 .jquery-accordion-menu ul ul.submenu,
#a6824a9765aabb8 .jquery-accordion-menu ul ul.submenu li ul.submenu {
  width: 100%;
  display: none;
  position: static;
}
#a6824a9765aabb8 .jquery-accordion-menu.menu-list-expand ul ul.submenu,
#a6824a9765aabb8 .jquery-accordion-menu.menu-list-expand ul ul.submenu li ul.submenu {
  display: block;
}
#a6824a9765aabb8 .jquery-accordion-menu ul ul.submenu.show,
#a6824a9765aabb8 .jquery-accordion-menu ul ul.submenu li ul.submenu.show {
  display: block;
}
#a6824a9765aabb8 .jquery-accordion-menu ul ul.submenu li {
  clear: both;
  width: 100%;
}
#a6824a9765aabb8 .jquery-accordion-menu ul ul.submenu li a {
  border-left: 3px solid transparent;
  width: 100%;
  display: block;
  font-size: 14px;
  background: #383838;
  border-top: none;
  position: relative;
  border-left: solid 2px transparent;
  -o-transition: border .2s linear;
  -moz-transition: border .2s linear;
  -webkit-transition: border .2s linear;
  transition: border .2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a6824a9765aabb8 .jquery-accordion-menu ul ul.submenu.show > li > a {
  background: rgba(0, 0, 0, 0);
}
#a6824a9765aabb8 .jquery-accordion-menu ul ul.submenu li > a:hover {
  border-left-color: rgba(0, 0, 0, 0);
  background-color: #e3e6e7;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#a6824a9765aabb8 .jquery-accordion-menu ul ul.submenu > li > a {
  padding-left: 30px;
}
#a6824a9765aabb8 .jquery-accordion-menu ul ul.submenu > li > ul.submenu > li > a {
  padding-left: 45px;
}
#a6824a9765aabb8 .jquery-accordion-menu ul ul.submenu > li > ul.submenu > li > ul.submenu > li > a {
  padding-left: 60px;
}
#a6824a9765aabb8 .jquery-accordion-menu ul ul.submenu li.active > a {
  color: #4a4a4a;
  background: #e3e6e7;
}
#a6824a9765aabb8 .jquery-accordion-menu > ul > li > a {
  padding-top: 14px;
  padding-bottom: 14px;
}
#a6824a9765aabb8 .jquery-accordion-menu ul.submenu li a {
  padding-top: 14px;
  padding-bottom: 14px;
}
#afc83a5dfca1d4b > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#a26a9a7c87a1f13 .uk-grid {
  margin-left: 0px;
}
#a26a9a7c87a1f13 .uk-grid > * {
  padding-left: 0px;
}
#a26a9a7c87a1f13 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a26a9a7c87a1f13 .dynamic-list-item {
  border-bottom-width: 1px;
  border-bottom-style: dotted;
  border-bottom-color: #e2e2e2;
}
#a26a9a7c87a1f13 .dynamic-list-item:hover {
  background-color: #fafafa;
}
/* mobile */
@media (max-width: 640px) {
  #a26a9a7c87a1f13 .uk-position-center-left-out {
    left: -30px;
  }
  #a26a9a7c87a1f13 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#affb1a4760a59f0 > .ele-wrap {border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-left-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);border-top-color: rgba(226, 226, 226, 1);}#a7ba9ae2e7a9798 a, #a7ba9ae2e7a9798 {
        font-weight: normal;
        font-style: normal;
    font-size: 20px;font-family: inherit;color: rgba(49, 48, 48, 1);}#a7ba9ae2e7a9798 a:hover {
        font-weight: normal;
        font-style: normal;
    font-size: 20px;font-family: inherit;color: rgba(1, 100, 255, 1);}#a8064af8e6a7509 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-left-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);}#a1eedae6b8aaed1 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a1eedae6b8aaed1 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a1eedae6b8aaed1 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a1eedae6b8aaed1 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a1eedae6b8aaed1 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a1eedae6b8aaed1 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a1eedae6b8aaed1 .ele-article-list .pic-article .img_wrap .tag {
  display: inline-block;
  padding: 0 .5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: .6rem;
  text-align: center;
  border-radius: 1rem;
  margin: 0 5px 5px 0;
}
#a1eedae6b8aaed1 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a1eedae6b8aaed1 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a1eedae6b8aaed1 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a1eedae6b8aaed1 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a1eedae6b8aaed1 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a1eedae6b8aaed1 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a1eedae6b8aaed1 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a1eedae6b8aaed1 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a1eedae6b8aaed1 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a1eedae6b8aaed1 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a1eedae6b8aaed1 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a1eedae6b8aaed1 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a1eedae6b8aaed1 .ele-article-list .text-article h3 a:hover {
  text-decoration: underline;
  color: #222;
}
/* mobile */
@media (max-width: 640px) {
  .ele-article-list .pic-article {
    padding: 10px 0;
  }
  .ele-article-list .pic-article .img_wrap {
    margin-right: 10px;
  }
  .ele-article-list .pic-article .img_wrap .tag {
    display: none;
  }
  .ele-article-list .pic-article .info {
    font-size: 12px;
  }
  .ele-article-list .pic-article .abstract {
    display: none;
  }
  .ele-article-list .pic-article .info h3 {
    font-size: 14px;
  }
}
#a1eedae6b8aaed1 .ele-article-list .pic-article {
  border-bottom: 1px solid #ececec;
}
#a1eedae6b8aaed1 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a1eedae6b8aaed1 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a1eedae6b8aaed1 .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a1eedae6b8aaed1 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a1eedae6b8aaed1 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a1eedae6b8aaed1 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a1eedae6b8aaed1 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a1eedae6b8aaed1 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a1eedae6b8aaed1 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
  padding-top: 5px;
  padding-bottom: 5px;
}
#a1eedae6b8aaed1 .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a1eedae6b8aaed1 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a1eedae6b8aaed1 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a1eedae6b8aaed1 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a589ca9639a0a98 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#a589ca9639a0a98 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a589ca9639a0a98 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a4f07a1d87a4e23 > .ele-wrap {background-color: rgba(244, 252, 254, 1);background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1652490173864.jpeg);background-position: top left;background-size: auto;background-repeat: no-repeat;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a309ca5398afbdb .jquery-accordion-menu {
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
}
#a309ca5398afbdb .jquery-accordion-menu .jquery-accordion-menu-header {
  width: 100%;
  height: 50px;
  padding-left: 14px;
  font-size: 16px;
  line-height: 50px;
  font-weight: 600;
  color: #4a4a4a;
}
#a309ca5398afbdb .jquery-accordion-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#a309ca5398afbdb .jquery-accordion-menu ul li {
  width: 100%;
  display: block;
  position: relative;
}
#a309ca5398afbdb .jquery-accordion-menu ul li a {
  color: #4a4a4a;
  display: block;
  width: 100%;
  padding: 14px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -o-transition: color .2s linear,background .2s linear;
  -moz-transition: color .2s linear,background .2s linear;
  -webkit-transition: color .2s linear,background .2s linear;
  transition: color .2s linear,background .2s linear;
}
#a309ca5398afbdb .menu-list-expand .submenu-indicator {
  display: none;
}
#a309ca5398afbdb .jquery-accordion-menu > ul > li > a:hover {
  color: #fff;
  background: #e3e6e7;
  border-bottom-color: #d8dcde;
  background-color: #e3e6e7;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#a309ca5398afbdb .jquery-accordion-menu > ul > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  background-color: #e3e6e7;
}
#a309ca5398afbdb .jquery-accordion-menu ul li > a {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #e3e6e7;
}
#a309ca5398afbdb .jquery-accordion-menu > ul > li.active > a {
  color: #4a4a4a;
  background: #e3e6e7;
}
#a309ca5398afbdb .jquery-accordion-menu ul li a img,
#a309ca5398afbdb .jquery-accordion-menu ul li a svg {
  width: 14px;
  margin-right: 8px;
  margin-top: 4px;
  float: left;
  fill: currentColor;
  text-align: left;
}
#a309ca5398afbdb .jquery-accordion-menu .submenu-indicator {
  cursor: pointer;
  float: right;
  right: 14px;
  position: absolute;
  line-height: 19px;
  font-size: 20px;
  -o-transition: transform .3s linear;
  -moz-transition: transform .3s linear;
  -webkit-transition: transform .3s linear;
  -ms-transition: transform .3s linear;
}
#a309ca5398afbdb .jquery-accordion-menu ul ul.submenu .submenu-indicator {
  line-height: 16px;
}
#a309ca5398afbdb .jquery-accordion-menu .submenu-indicator-minus > .submenu-indicator {
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#a309ca5398afbdb .jquery-accordion-menu ul ul.submenu,
#a309ca5398afbdb .jquery-accordion-menu ul ul.submenu li ul.submenu {
  width: 100%;
  display: none;
  position: static;
}
#a309ca5398afbdb .jquery-accordion-menu.menu-list-expand ul ul.submenu,
#a309ca5398afbdb .jquery-accordion-menu.menu-list-expand ul ul.submenu li ul.submenu {
  display: block;
}
#a309ca5398afbdb .jquery-accordion-menu ul ul.submenu.show,
#a309ca5398afbdb .jquery-accordion-menu ul ul.submenu li ul.submenu.show {
  display: block;
}
#a309ca5398afbdb .jquery-accordion-menu ul ul.submenu li {
  clear: both;
  width: 100%;
}
#a309ca5398afbdb .jquery-accordion-menu ul ul.submenu li a {
  border-left: 3px solid transparent;
  width: 100%;
  display: block;
  font-size: 14px;
  background: #383838;
  border-top: none;
  position: relative;
  border-left: solid 2px transparent;
  -o-transition: border .2s linear;
  -moz-transition: border .2s linear;
  -webkit-transition: border .2s linear;
  transition: border .2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a309ca5398afbdb .jquery-accordion-menu ul ul.submenu.show > li > a {
  background: rgba(0, 0, 0, 0);
}
#a309ca5398afbdb .jquery-accordion-menu ul ul.submenu li > a:hover {
  border-left-color: rgba(0, 0, 0, 0);
  background-color: #e3e6e7;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#a309ca5398afbdb .jquery-accordion-menu ul ul.submenu > li > a {
  padding-left: 30px;
}
#a309ca5398afbdb .jquery-accordion-menu ul ul.submenu > li > ul.submenu > li > a {
  padding-left: 45px;
}
#a309ca5398afbdb .jquery-accordion-menu ul ul.submenu > li > ul.submenu > li > ul.submenu > li > a {
  padding-left: 60px;
}
#a309ca5398afbdb .jquery-accordion-menu ul ul.submenu li.active > a {
  color: #4a4a4a;
  background: #e3e6e7;
}
#a309ca5398afbdb .jquery-accordion-menu > ul > li > a {
  padding-top: 14px;
  padding-bottom: 14px;
}
#a309ca5398afbdb .jquery-accordion-menu ul.submenu li a {
  padding-top: 14px;
  padding-bottom: 14px;
}
#a0633af682a819c > .ele-wrap {border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-left-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);border-top-color: rgba(226, 226, 226, 1);}#af1d1a8269adcf2 a, #af1d1a8269adcf2 {
        font-weight: normal;
        font-style: normal;
    font-size: 20px;font-family: inherit;color: rgba(49, 48, 48, 1);}#af1d1a8269adcf2 a:hover {
        font-weight: normal;
        font-style: normal;
    font-size: 20px;font-family: inherit;color: rgba(1, 100, 255, 1);}#a104cad369aa9d3 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-left-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);}#aaaecae197ade92 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#aaaecae197ade92 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#aaaecae197ade92 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#aaaecae197ade92 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#aaaecae197ade92 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#aaaecae197ade92 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#aaaecae197ade92 .ele-article-list .pic-article .img_wrap .tag {
  display: inline-block;
  padding: 0 .5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: .6rem;
  text-align: center;
  border-radius: 1rem;
  margin: 0 5px 5px 0;
}
#aaaecae197ade92 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#aaaecae197ade92 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#aaaecae197ade92 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#aaaecae197ade92 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#aaaecae197ade92 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#aaaecae197ade92 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#aaaecae197ade92 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#aaaecae197ade92 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#aaaecae197ade92 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#aaaecae197ade92 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#aaaecae197ade92 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#aaaecae197ade92 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#aaaecae197ade92 .ele-article-list .text-article h3 a:hover {
  text-decoration: underline;
  color: #222;
}
/* mobile */
@media (max-width: 640px) {
  .ele-article-list .pic-article {
    padding: 10px 0;
  }
  .ele-article-list .pic-article .img_wrap {
    margin-right: 10px;
  }
  .ele-article-list .pic-article .img_wrap .tag {
    display: none;
  }
  .ele-article-list .pic-article .info {
    font-size: 12px;
  }
  .ele-article-list .pic-article .abstract {
    display: none;
  }
  .ele-article-list .pic-article .info h3 {
    font-size: 14px;
  }
}
#aaaecae197ade92 .ele-article-list .pic-article {
  border-bottom: 1px solid #ececec;
}
#aaaecae197ade92 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#aaaecae197ade92 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#aaaecae197ade92 .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#aaaecae197ade92 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#aaaecae197ade92 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#aaaecae197ade92 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#aaaecae197ade92 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#aaaecae197ade92 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#aaaecae197ade92 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
  padding-top: 5px;
  padding-bottom: 5px;
}
#aaaecae197ade92 .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#aaaecae197ade92 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#aaaecae197ade92 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#aaaecae197ade92 .ele-article-list .text-article:hover .time {
  color: auto;
}
#aa54da61c8ab46b > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#a80e5ac6d9abf85 .uk-grid {
  margin-left: 0px;
}
#a80e5ac6d9abf85 .uk-grid > * {
  padding-left: 0px;
}
#a80e5ac6d9abf85 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a80e5ac6d9abf85 .dynamic-list-item {
  border-bottom-width: 1px;
  border-bottom-style: dotted;
  border-bottom-color: #e2e2e2;
}
#a80e5ac6d9abf85 .dynamic-list-item:hover {
  background-color: #fafafa;
}
/* mobile */
@media (max-width: 640px) {
  #a80e5ac6d9abf85 .uk-position-center-left-out {
    left: -30px;
  }
  #a80e5ac6d9abf85 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a54ceae6b7a5606 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#a54ceae6b7a5606 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a54ceae6b7a5606 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#aa75aa7065a7166 > .ele-wrap {background-color: rgba(244, 252, 254, 1);background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1652490173864.jpeg);background-position: top left;background-size: auto;background-repeat: no-repeat;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#af2cba3ba9aa2a0 .jquery-accordion-menu {
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
}
#af2cba3ba9aa2a0 .jquery-accordion-menu .jquery-accordion-menu-header {
  width: 100%;
  height: 50px;
  padding-left: 14px;
  font-size: 16px;
  line-height: 50px;
  font-weight: 600;
  color: #4a4a4a;
}
#af2cba3ba9aa2a0 .jquery-accordion-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#af2cba3ba9aa2a0 .jquery-accordion-menu ul li {
  width: 100%;
  display: block;
  position: relative;
}
#af2cba3ba9aa2a0 .jquery-accordion-menu ul li a {
  color: #4a4a4a;
  display: block;
  width: 100%;
  padding: 14px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -o-transition: color .2s linear,background .2s linear;
  -moz-transition: color .2s linear,background .2s linear;
  -webkit-transition: color .2s linear,background .2s linear;
  transition: color .2s linear,background .2s linear;
}
#af2cba3ba9aa2a0 .menu-list-expand .submenu-indicator {
  display: none;
}
#af2cba3ba9aa2a0 .jquery-accordion-menu > ul > li > a:hover {
  color: #fff;
  background: #e3e6e7;
  border-bottom-color: #d8dcde;
  background-color: #e3e6e7;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#af2cba3ba9aa2a0 .jquery-accordion-menu > ul > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  background-color: #e3e6e7;
}
#af2cba3ba9aa2a0 .jquery-accordion-menu ul li > a {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #e3e6e7;
}
#af2cba3ba9aa2a0 .jquery-accordion-menu > ul > li.active > a {
  color: #4a4a4a;
  background: #e3e6e7;
}
#af2cba3ba9aa2a0 .jquery-accordion-menu ul li a img,
#af2cba3ba9aa2a0 .jquery-accordion-menu ul li a svg {
  width: 14px;
  margin-right: 8px;
  margin-top: 4px;
  float: left;
  fill: currentColor;
  text-align: left;
}
#af2cba3ba9aa2a0 .jquery-accordion-menu .submenu-indicator {
  cursor: pointer;
  float: right;
  right: 14px;
  position: absolute;
  line-height: 19px;
  font-size: 20px;
  -o-transition: transform .3s linear;
  -moz-transition: transform .3s linear;
  -webkit-transition: transform .3s linear;
  -ms-transition: transform .3s linear;
}
#af2cba3ba9aa2a0 .jquery-accordion-menu ul ul.submenu .submenu-indicator {
  line-height: 16px;
}
#af2cba3ba9aa2a0 .jquery-accordion-menu .submenu-indicator-minus > .submenu-indicator {
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#af2cba3ba9aa2a0 .jquery-accordion-menu ul ul.submenu,
#af2cba3ba9aa2a0 .jquery-accordion-menu ul ul.submenu li ul.submenu {
  width: 100%;
  display: none;
  position: static;
}
#af2cba3ba9aa2a0 .jquery-accordion-menu.menu-list-expand ul ul.submenu,
#af2cba3ba9aa2a0 .jquery-accordion-menu.menu-list-expand ul ul.submenu li ul.submenu {
  display: block;
}
#af2cba3ba9aa2a0 .jquery-accordion-menu ul ul.submenu.show,
#af2cba3ba9aa2a0 .jquery-accordion-menu ul ul.submenu li ul.submenu.show {
  display: block;
}
#af2cba3ba9aa2a0 .jquery-accordion-menu ul ul.submenu li {
  clear: both;
  width: 100%;
}
#af2cba3ba9aa2a0 .jquery-accordion-menu ul ul.submenu li a {
  border-left: 3px solid transparent;
  width: 100%;
  display: block;
  font-size: 14px;
  background: #383838;
  border-top: none;
  position: relative;
  border-left: solid 2px transparent;
  -o-transition: border .2s linear;
  -moz-transition: border .2s linear;
  -webkit-transition: border .2s linear;
  transition: border .2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#af2cba3ba9aa2a0 .jquery-accordion-menu ul ul.submenu.show > li > a {
  background: rgba(0, 0, 0, 0);
}
#af2cba3ba9aa2a0 .jquery-accordion-menu ul ul.submenu li > a:hover {
  border-left-color: rgba(0, 0, 0, 0);
  background-color: #e3e6e7;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#af2cba3ba9aa2a0 .jquery-accordion-menu ul ul.submenu > li > a {
  padding-left: 30px;
}
#af2cba3ba9aa2a0 .jquery-accordion-menu ul ul.submenu > li > ul.submenu > li > a {
  padding-left: 45px;
}
#af2cba3ba9aa2a0 .jquery-accordion-menu ul ul.submenu > li > ul.submenu > li > ul.submenu > li > a {
  padding-left: 60px;
}
#af2cba3ba9aa2a0 .jquery-accordion-menu ul ul.submenu li.active > a {
  color: #4a4a4a;
  background: #e3e6e7;
}
#af2cba3ba9aa2a0 .jquery-accordion-menu > ul > li > a {
  padding-top: 14px;
  padding-bottom: 14px;
}
#af2cba3ba9aa2a0 .jquery-accordion-menu ul.submenu li a {
  padding-top: 14px;
  padding-bottom: 14px;
}
#a10fca9053a97d0 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#a8e96a5427a2c62 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a8e96a5427a2c62 .dynamic-list-item {
  border-bottom-width: 1px;
  border-bottom-style: dotted;
  border-bottom-color: #e2e2e2;
}
#a8e96a5427a2c62 .dynamic-list-item:hover {
  background-color: #fafafa;
}
/* mobile */
@media (max-width: 640px) {
  #a8e96a5427a2c62 .uk-position-center-left-out {
    left: -30px;
  }
  #a8e96a5427a2c62 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a67a0a6743a06bb > .ele-wrap {border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-left-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);border-top-color: rgba(226, 226, 226, 1);}#a2e18a46a4a82ac a, #a2e18a46a4a82ac {
        font-weight: normal;
        font-style: normal;
    font-size: 20px;font-family: inherit;color: rgba(49, 48, 48, 1);}#a2e18a46a4a82ac a:hover {
        font-weight: normal;
        font-style: normal;
    font-size: 20px;font-family: inherit;color: rgba(1, 100, 255, 1);}#a2db9a525bacec4 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-left-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);}#a2858a5643a749a .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a2858a5643a749a .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a2858a5643a749a .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a2858a5643a749a .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a2858a5643a749a .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a2858a5643a749a .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a2858a5643a749a .ele-article-list .pic-article .img_wrap .tag {
  display: inline-block;
  padding: 0 .5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: .6rem;
  text-align: center;
  border-radius: 1rem;
  margin: 0 5px 5px 0;
}
#a2858a5643a749a .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a2858a5643a749a .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a2858a5643a749a .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a2858a5643a749a .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a2858a5643a749a .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a2858a5643a749a .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a2858a5643a749a .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a2858a5643a749a .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a2858a5643a749a .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a2858a5643a749a .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a2858a5643a749a .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a2858a5643a749a .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a2858a5643a749a .ele-article-list .text-article h3 a:hover {
  text-decoration: underline;
  color: #222;
}
/* mobile */
@media (max-width: 640px) {
  .ele-article-list .pic-article {
    padding: 10px 0;
  }
  .ele-article-list .pic-article .img_wrap {
    margin-right: 10px;
  }
  .ele-article-list .pic-article .img_wrap .tag {
    display: none;
  }
  .ele-article-list .pic-article .info {
    font-size: 12px;
  }
  .ele-article-list .pic-article .abstract {
    display: none;
  }
  .ele-article-list .pic-article .info h3 {
    font-size: 14px;
  }
}
#a2858a5643a749a .ele-article-list .pic-article {
  border-bottom: 1px solid #ececec;
}
#a2858a5643a749a .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a2858a5643a749a .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a2858a5643a749a .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a2858a5643a749a .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a2858a5643a749a .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a2858a5643a749a .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a2858a5643a749a .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a2858a5643a749a .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a2858a5643a749a .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
  padding-top: 5px;
  padding-bottom: 5px;
}
#a2858a5643a749a .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a2858a5643a749a .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a2858a5643a749a .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a2858a5643a749a .ele-article-list .text-article:hover .time {
  color: auto;
}
#a41caa7b37a4a2b {
  /* 修复吸顶导航宽度被写死的问题 */
}
#a41caa7b37a4a2b .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a41caa7b37a4a2b .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a4ba8ae5c5a650f a, #a4ba8ae5c5a650f {
        font-weight: normal;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#a817ca6ca8a6e13 > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1776391309244.png);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#a5c1ea353ea2508 .aef3ba09ddaff3d {
  overflow: hidden;
}
#a5c1ea353ea2508 .aef3ba09ddaff3d , #a5c1ea353ea2508 .aef3ba09ddaff3d > * {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;font-family: inherit;color: rgba(74, 74, 74, 1);}#a5c1ea353ea2508 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a5c1ea353ea2508 .uk-position-center-left-out {
    left: -30px;
  }
  #a5c1ea353ea2508 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#af079a313daae3f .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#af079a313daae3f .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#af079a313daae3f .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#af079a313daae3f .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#af079a313daae3f .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#af079a313daae3f .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#af079a313daae3f .ele-article-list .pic-article .img_wrap .tag {
  display: inline-block;
  padding: 0 .5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: .6rem;
  text-align: center;
  border-radius: 1rem;
  margin: 0 5px 5px 0;
}
#af079a313daae3f .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#af079a313daae3f .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#af079a313daae3f .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#af079a313daae3f .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#af079a313daae3f .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#af079a313daae3f .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#af079a313daae3f .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#af079a313daae3f .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#af079a313daae3f .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#af079a313daae3f .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#af079a313daae3f .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#af079a313daae3f .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#af079a313daae3f .ele-article-list .text-article h3 a:hover {
  text-decoration: underline;
  color: #222;
}
/* mobile */
@media (max-width: 640px) {
  .ele-article-list .pic-article {
    padding: 10px 0;
  }
  .ele-article-list .pic-article .img_wrap {
    margin-right: 10px;
  }
  .ele-article-list .pic-article .img_wrap .tag {
    display: none;
  }
  .ele-article-list .pic-article .info {
    font-size: 12px;
  }
  .ele-article-list .pic-article .abstract {
    display: none;
  }
  .ele-article-list .pic-article .info h3 {
    font-size: 14px;
  }
}
#af079a313daae3f .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px dashed #ececec;
}
#af079a313daae3f .ele-article-list .pic-article .img_wrap {
  width: 10%;
  border-radius: 0px;
  overflow: hidden;
}
#af079a313daae3f .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#af079a313daae3f .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#af079a313daae3f .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#af079a313daae3f .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#af079a313daae3f .ele-article-list .pic-article:hover .category {
  color: auto;
}
#af079a313daae3f .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#af079a313daae3f .ele-article-list .pic-article:hover .time {
  color: auto;
}
#af079a313daae3f .ele-article-list .text-article {
  border-bottom: 1px dashed #ececec;
}
#af079a313daae3f .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#af079a313daae3f .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#af079a313daae3f .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#af079a313daae3f .ele-article-list .text-article:hover .time {
  color: auto;
}
#acfc8a0a07a0d26 > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1776391309244.png);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#aa967a3b7ea8c03 > .ele-wrap {background-color: rgba(0, 0, 0, 0);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#abd0ca1cdfaa9be .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#abd0ca1cdfaa9be .img-wrap:hover {
  border-color: #4a90e2;
}
#a5826af4fdab148 , #a5826af4fdab148 a{color: rgba(255, 255, 255, 1);}#a5826af4fdab148:hover, #a5826af4fdab148 a:hover {color: rgba(204, 233, 252, 1);}#a961ba5b7ead77c .img-wrap {
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}
#a3a8cae4baa4468 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ab5f7a7e17ab257 .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a9c2aa91eaa712a .img-wrap {
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}
#a07a8ab253acd46 , #a07a8ab253acd46 a{color: rgba(255, 255, 255, 1);}#a16ffa4d96a646c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a0375a78eba4ed7 .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a00c5ad580a266d , #a00c5ad580a266d a{color: rgba(255, 255, 255, 1);}#a98d7a3220ad046 .img-wrap {
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
}
#a1017a68a4a833f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ad9a5a47caa7696 .gallery-thumbnails .uk-thumbnav {
  justify-content: center;
}
#ad9a5a47caa7696 .gallery-thumbnails .uk-thumbnav > * {
  padding-left: 8px;
}
#a20e1adb7eace6e > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#aafeaa6b7fa1750 .uk-grid {
  margin-left: -15px;
}
#aafeaa6b7fa1750 .uk-grid > * {
  padding-left: 15px;
}
#aafeaa6b7fa1750 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#aafeaa6b7fa1750 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#aafeaa6b7fa1750 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#aafeaa6b7fa1750 .article .info {
  padding: 6px 8px;
  position: relative;
}
#aafeaa6b7fa1750 .article .info p {
  margin: 10px 0 10px;
}
#aafeaa6b7fa1750 .article svg {
  fill: currentColor;
}
#aafeaa6b7fa1750 .article .btn_icon {
  position: absolute;
  right: 8px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#aafeaa6b7fa1750 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#aafeaa6b7fa1750 .article.list-icon .info {
  padding-left: 25px;
}
#aafeaa6b7fa1750 .article .datetime {
  position: absolute;
  right: 8px;
  top: 6px;
}
#aafeaa6b7fa1750 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#aafeaa6b7fa1750 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#aafeaa6b7fa1750 .article:hover .title {
  color: #009adc;
}
#aafeaa6b7fa1750 .article:hover .datetime {
  color: #009adc;
}
#aafeaa6b7fa1750 .article:hover .category {
  color: #b6b6b6;
}
#aafeaa6b7fa1750 .article:hover .abstract {
  color: #b6b6b6;
}
#aafeaa6b7fa1750 .article:hover .btn_icon {
  color: #b6b6b6;
}
#aafeaa6b7fa1750 .article:hover .list_icon {
  color: #009adc;
}
#a09ababd0dadb20 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#a09ababd0dadb20 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a09ababd0dadb20 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a0101a79cda21a1 > .ele-wrap {background-color: rgba(244, 252, 254, 1);background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1652490173864.jpeg);background-position: top left;background-size: auto;background-repeat: no-repeat;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a831ba6ce2af8d4 .jquery-accordion-menu {
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
}
#a831ba6ce2af8d4 .jquery-accordion-menu .jquery-accordion-menu-header {
  width: 100%;
  height: 50px;
  padding-left: 14px;
  font-size: 16px;
  line-height: 50px;
  font-weight: 600;
  color: #4a4a4a;
}
#a831ba6ce2af8d4 .jquery-accordion-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#a831ba6ce2af8d4 .jquery-accordion-menu ul li {
  width: 100%;
  display: block;
  position: relative;
}
#a831ba6ce2af8d4 .jquery-accordion-menu ul li a {
  color: #4a4a4a;
  display: block;
  width: 100%;
  padding: 14px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -o-transition: color .2s linear,background .2s linear;
  -moz-transition: color .2s linear,background .2s linear;
  -webkit-transition: color .2s linear,background .2s linear;
  transition: color .2s linear,background .2s linear;
}
#a831ba6ce2af8d4 .menu-list-expand .submenu-indicator {
  display: none;
}
#a831ba6ce2af8d4 .jquery-accordion-menu > ul > li > a:hover {
  color: #fff;
  background: #e3e6e7;
  border-bottom-color: #d8dcde;
  background-color: #e3e6e7;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#a831ba6ce2af8d4 .jquery-accordion-menu > ul > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  background-color: #e3e6e7;
}
#a831ba6ce2af8d4 .jquery-accordion-menu ul li > a {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #e3e6e7;
}
#a831ba6ce2af8d4 .jquery-accordion-menu > ul > li.active > a {
  color: #4a4a4a;
  background: #e3e6e7;
}
#a831ba6ce2af8d4 .jquery-accordion-menu ul li a img,
#a831ba6ce2af8d4 .jquery-accordion-menu ul li a svg {
  width: 14px;
  margin-right: 8px;
  margin-top: 4px;
  float: left;
  fill: currentColor;
  text-align: left;
}
#a831ba6ce2af8d4 .jquery-accordion-menu .submenu-indicator {
  cursor: pointer;
  float: right;
  right: 14px;
  position: absolute;
  line-height: 19px;
  font-size: 20px;
  -o-transition: transform .3s linear;
  -moz-transition: transform .3s linear;
  -webkit-transition: transform .3s linear;
  -ms-transition: transform .3s linear;
}
#a831ba6ce2af8d4 .jquery-accordion-menu ul ul.submenu .submenu-indicator {
  line-height: 16px;
}
#a831ba6ce2af8d4 .jquery-accordion-menu .submenu-indicator-minus > .submenu-indicator {
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#a831ba6ce2af8d4 .jquery-accordion-menu ul ul.submenu,
#a831ba6ce2af8d4 .jquery-accordion-menu ul ul.submenu li ul.submenu {
  width: 100%;
  display: none;
  position: static;
}
#a831ba6ce2af8d4 .jquery-accordion-menu.menu-list-expand ul ul.submenu,
#a831ba6ce2af8d4 .jquery-accordion-menu.menu-list-expand ul ul.submenu li ul.submenu {
  display: block;
}
#a831ba6ce2af8d4 .jquery-accordion-menu ul ul.submenu.show,
#a831ba6ce2af8d4 .jquery-accordion-menu ul ul.submenu li ul.submenu.show {
  display: block;
}
#a831ba6ce2af8d4 .jquery-accordion-menu ul ul.submenu li {
  clear: both;
  width: 100%;
}
#a831ba6ce2af8d4 .jquery-accordion-menu ul ul.submenu li a {
  border-left: 3px solid transparent;
  width: 100%;
  display: block;
  font-size: 14px;
  background: #383838;
  border-top: none;
  position: relative;
  border-left: solid 2px transparent;
  -o-transition: border .2s linear;
  -moz-transition: border .2s linear;
  -webkit-transition: border .2s linear;
  transition: border .2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a831ba6ce2af8d4 .jquery-accordion-menu ul ul.submenu.show > li > a {
  background: rgba(0, 0, 0, 0);
}
#a831ba6ce2af8d4 .jquery-accordion-menu ul ul.submenu li > a:hover {
  border-left-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  background-color: #e3e6e7;
}
#a831ba6ce2af8d4 .jquery-accordion-menu ul ul.submenu > li > a {
  padding-left: 30px;
}
#a831ba6ce2af8d4 .jquery-accordion-menu ul ul.submenu > li > ul.submenu > li > a {
  padding-left: 45px;
}
#a831ba6ce2af8d4 .jquery-accordion-menu ul ul.submenu > li > ul.submenu > li > ul.submenu > li > a {
  padding-left: 60px;
}
#a831ba6ce2af8d4 .jquery-accordion-menu ul ul.submenu li.active > a {
  color: #4a4a4a;
  background: #e3e6e7;
}
#a831ba6ce2af8d4 .jquery-accordion-menu > ul > li > a {
  padding-top: 14px;
  padding-bottom: 14px;
}
#a831ba6ce2af8d4 .jquery-accordion-menu ul.submenu li a {
  padding-top: 14px;
  padding-bottom: 14px;
}
#a20c8a76e4a3dfe > .ele-wrap {border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-left-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);border-top-color: rgba(226, 226, 226, 1);}#aded4a4850a2987 a, #aded4a4850a2987 {
        font-weight: normal;
        font-style: normal;
    font-size: 20px;font-family: inherit;color: rgba(49, 48, 48, 1);}#aded4a4850a2987 a:hover {
        font-weight: normal;
        font-style: normal;
    font-size: 20px;font-family: inherit;color: rgba(1, 100, 255, 1);}#ada79a54f5a1969 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-left-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);}#a561aaa4cdad327 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a561aaa4cdad327 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a561aaa4cdad327 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a561aaa4cdad327 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a561aaa4cdad327 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a561aaa4cdad327 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a561aaa4cdad327 .ele-article-list .pic-article .img_wrap .tag {
  display: inline-block;
  padding: 0 .5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: .6rem;
  text-align: center;
  border-radius: 1rem;
  margin: 0 5px 5px 0;
}
#a561aaa4cdad327 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a561aaa4cdad327 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a561aaa4cdad327 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a561aaa4cdad327 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a561aaa4cdad327 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a561aaa4cdad327 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a561aaa4cdad327 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a561aaa4cdad327 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a561aaa4cdad327 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a561aaa4cdad327 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a561aaa4cdad327 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a561aaa4cdad327 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a561aaa4cdad327 .ele-article-list .text-article h3 a:hover {
  text-decoration: underline;
  color: #222;
}
/* mobile */
@media (max-width: 640px) {
  .ele-article-list .pic-article {
    padding: 10px 0;
  }
  .ele-article-list .pic-article .img_wrap {
    margin-right: 10px;
  }
  .ele-article-list .pic-article .img_wrap .tag {
    display: none;
  }
  .ele-article-list .pic-article .info {
    font-size: 12px;
  }
  .ele-article-list .pic-article .abstract {
    display: none;
  }
  .ele-article-list .pic-article .info h3 {
    font-size: 14px;
  }
}
#a561aaa4cdad327 .ele-article-list .pic-article {
  border-bottom: 1px solid #ececec;
}
#a561aaa4cdad327 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a561aaa4cdad327 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a561aaa4cdad327 .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a561aaa4cdad327 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a561aaa4cdad327 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a561aaa4cdad327 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a561aaa4cdad327 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a561aaa4cdad327 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a561aaa4cdad327 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
  padding-top: 5px;
  padding-bottom: 5px;
}
#a561aaa4cdad327 .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a561aaa4cdad327 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a561aaa4cdad327 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a561aaa4cdad327 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a4e5fa7b34ae804 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#a0f5eab29ca7596 .uk-grid {
  margin-left: 0px;
}
#a0f5eab29ca7596 .uk-grid > * {
  padding-left: 0px;
}
#a0f5eab29ca7596 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a0f5eab29ca7596 .dynamic-list-item {
  border-bottom-width: 1px;
  border-bottom-style: dotted;
  border-bottom-color: #e2e2e2;
}
#a0f5eab29ca7596 .dynamic-list-item:hover {
  background-color: #fafafa;
}
/* mobile */
@media (max-width: 640px) {
  #a0f5eab29ca7596 .uk-position-center-left-out {
    left: -30px;
  }
  #a0f5eab29ca7596 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#abef7a06a6a4ff9 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#abef7a06a6a4ff9 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#abef7a06a6a4ff9 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#ac140acf40aea23 a, #ac140acf40aea23 {
        font-weight: normal;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#aa972a86d7ab540 > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1776391309244.png);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#a87e0ae3eca5225 .afb0cad62ba7ff7 {
  overflow: hidden;
}
#a87e0ae3eca5225 .afb0cad62ba7ff7 , #a87e0ae3eca5225 .afb0cad62ba7ff7 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;font-family: inherit;color: rgba(74, 74, 74, 1);}#a87e0ae3eca5225 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a87e0ae3eca5225 .uk-position-center-left-out {
    left: -30px;
  }
  #a87e0ae3eca5225 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a1a08a56f5a0aee .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a1a08a56f5a0aee .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a1a08a56f5a0aee .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a1a08a56f5a0aee .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a1a08a56f5a0aee .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a1a08a56f5a0aee .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a1a08a56f5a0aee .ele-article-list .pic-article .img_wrap .tag {
  display: inline-block;
  padding: 0 .5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: .6rem;
  text-align: center;
  border-radius: 1rem;
  margin: 0 5px 5px 0;
}
#a1a08a56f5a0aee .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a1a08a56f5a0aee .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a1a08a56f5a0aee .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a1a08a56f5a0aee .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a1a08a56f5a0aee .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a1a08a56f5a0aee .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a1a08a56f5a0aee .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a1a08a56f5a0aee .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a1a08a56f5a0aee .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a1a08a56f5a0aee .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a1a08a56f5a0aee .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a1a08a56f5a0aee .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a1a08a56f5a0aee .ele-article-list .text-article h3 a:hover {
  text-decoration: underline;
  color: #222;
}
/* mobile */
@media (max-width: 640px) {
  .ele-article-list .pic-article {
    padding: 10px 0;
  }
  .ele-article-list .pic-article .img_wrap {
    margin-right: 10px;
  }
  .ele-article-list .pic-article .img_wrap .tag {
    display: none;
  }
  .ele-article-list .pic-article .info {
    font-size: 12px;
  }
  .ele-article-list .pic-article .abstract {
    display: none;
  }
  .ele-article-list .pic-article .info h3 {
    font-size: 14px;
  }
}
#a1a08a56f5a0aee .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px dashed #ececec;
}
#a1a08a56f5a0aee .ele-article-list .pic-article .img_wrap {
  width: 10%;
  border-radius: 0px;
  overflow: hidden;
}
#a1a08a56f5a0aee .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a1a08a56f5a0aee .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a1a08a56f5a0aee .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a1a08a56f5a0aee .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a1a08a56f5a0aee .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a1a08a56f5a0aee .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a1a08a56f5a0aee .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a1a08a56f5a0aee .ele-article-list .text-article {
  border-bottom: 1px dashed #ececec;
}
#a1a08a56f5a0aee .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a1a08a56f5a0aee .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a1a08a56f5a0aee .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a1a08a56f5a0aee .ele-article-list .text-article:hover .time {
  color: auto;
}
#aae74aeaaca75e7 > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1776391309244.png);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#a1420a5c83a31f9 > .ele-wrap {background-color: rgba(0, 0, 0, 0);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a2ba0a6499aac79 .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a2ba0a6499aac79 .img-wrap:hover {
  border-color: #4a90e2;
}
#aa8dcafcaca0db1 , #aa8dcafcaca0db1 a{color: rgba(255, 255, 255, 1);}#aa8dcafcaca0db1:hover, #aa8dcafcaca0db1 a:hover {color: rgba(204, 233, 252, 1);}#a3c9ca32c8ac9d1 .img-wrap {
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}
#a90faae37faeb3c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a2574a766eaefa5 .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#aa32aaec7eac538 .img-wrap {
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}
#a264da80cbaf46f , #a264da80cbaf46f a{color: rgba(255, 255, 255, 1);}#a7ea1a42eaa547c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a0cf9aa259a6bfa .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a10ecaab54a00e2 , #a10ecaab54a00e2 a{color: rgba(255, 255, 255, 1);}#afe9aaa228ac511 .img-wrap {
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
}
#adb18abee3a6d9f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a5bd3a65a2a999f .gallery-thumbnails .uk-thumbnav {
  justify-content: center;
}
#a5bd3a65a2a999f .gallery-thumbnails .uk-thumbnav > * {
  padding-left: 8px;
}
#a61d8a88f2a1c60 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a5668ad5afadb2f .uk-grid {
  margin-left: -15px;
}
#a5668ad5afadb2f .uk-grid > * {
  padding-left: 15px;
}
#a5668ad5afadb2f .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a5668ad5afadb2f .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a5668ad5afadb2f .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a5668ad5afadb2f .article .info {
  padding: 6px 8px;
  position: relative;
}
#a5668ad5afadb2f .article .info p {
  margin: 10px 0 10px;
}
#a5668ad5afadb2f .article svg {
  fill: currentColor;
}
#a5668ad5afadb2f .article .btn_icon {
  position: absolute;
  right: 8px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#a5668ad5afadb2f .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#a5668ad5afadb2f .article.list-icon .info {
  padding-left: 25px;
}
#a5668ad5afadb2f .article .datetime {
  position: absolute;
  right: 8px;
  top: 6px;
}
#a5668ad5afadb2f .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#a5668ad5afadb2f .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a5668ad5afadb2f .article:hover .title {
  color: #009adc;
}
#a5668ad5afadb2f .article:hover .datetime {
  color: #009adc;
}
#a5668ad5afadb2f .article:hover .category {
  color: #b6b6b6;
}
#a5668ad5afadb2f .article:hover .abstract {
  color: #b6b6b6;
}
#a5668ad5afadb2f .article:hover .btn_icon {
  color: #b6b6b6;
}
#a5668ad5afadb2f .article:hover .list_icon {
  color: #009adc;
}
#a763ba2fe6ae073 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#a763ba2fe6ae073 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a763ba2fe6ae073 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a23dda2b69a5f67 a, #a23dda2b69a5f67 {
        font-weight: normal;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#a3217a496aae9dd > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1776391309244.png);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#abb32aa756ac35d .a7456aebb8ad215 {
  overflow: hidden;
}
#abb32aa756ac35d .a7456aebb8ad215 , #abb32aa756ac35d .a7456aebb8ad215 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;font-family: inherit;color: rgba(74, 74, 74, 1);}#abb32aa756ac35d .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #abb32aa756ac35d .uk-position-center-left-out {
    left: -30px;
  }
  #abb32aa756ac35d .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#adaf3a44bba23d8 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#adaf3a44bba23d8 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#adaf3a44bba23d8 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#adaf3a44bba23d8 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#adaf3a44bba23d8 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#adaf3a44bba23d8 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#adaf3a44bba23d8 .ele-article-list .pic-article .img_wrap .tag {
  display: inline-block;
  padding: 0 .5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: .6rem;
  text-align: center;
  border-radius: 1rem;
  margin: 0 5px 5px 0;
}
#adaf3a44bba23d8 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#adaf3a44bba23d8 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#adaf3a44bba23d8 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#adaf3a44bba23d8 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#adaf3a44bba23d8 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#adaf3a44bba23d8 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#adaf3a44bba23d8 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#adaf3a44bba23d8 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#adaf3a44bba23d8 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#adaf3a44bba23d8 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#adaf3a44bba23d8 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#adaf3a44bba23d8 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#adaf3a44bba23d8 .ele-article-list .text-article h3 a:hover {
  text-decoration: underline;
  color: #222;
}
/* mobile */
@media (max-width: 640px) {
  .ele-article-list .pic-article {
    padding: 10px 0;
  }
  .ele-article-list .pic-article .img_wrap {
    margin-right: 10px;
  }
  .ele-article-list .pic-article .img_wrap .tag {
    display: none;
  }
  .ele-article-list .pic-article .info {
    font-size: 12px;
  }
  .ele-article-list .pic-article .abstract {
    display: none;
  }
  .ele-article-list .pic-article .info h3 {
    font-size: 14px;
  }
}
#adaf3a44bba23d8 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px dashed #ececec;
}
#adaf3a44bba23d8 .ele-article-list .pic-article .img_wrap {
  width: 10%;
  border-radius: 0px;
  overflow: hidden;
}
#adaf3a44bba23d8 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#adaf3a44bba23d8 .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#adaf3a44bba23d8 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#adaf3a44bba23d8 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#adaf3a44bba23d8 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#adaf3a44bba23d8 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#adaf3a44bba23d8 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#adaf3a44bba23d8 .ele-article-list .text-article {
  border-bottom: 1px dashed #ececec;
}
#adaf3a44bba23d8 .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#adaf3a44bba23d8 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#adaf3a44bba23d8 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#adaf3a44bba23d8 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a4372a74e0a8e47 > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1776391309244.png);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#af13ea778da71cd > .ele-wrap {background-color: rgba(0, 0, 0, 0);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ad9a4a4e5eadfb5 .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#ad9a4a4e5eadfb5 .img-wrap:hover {
  border-color: #4a90e2;
}
#a4141ae986a0e2d , #a4141ae986a0e2d a{color: rgba(255, 255, 255, 1);}#a4141ae986a0e2d:hover, #a4141ae986a0e2d a:hover {color: rgba(204, 233, 252, 1);}#a7200a49e1a0479 .img-wrap {
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}
#a4fb8a35e1a1e16 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a9695a7066adc47 .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#ad30fafa3fa63cb .img-wrap {
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}
#afb36a6d0bab96e , #afb36a6d0bab96e a{color: rgba(255, 255, 255, 1);}#ab45fad65ead591 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#aecaca3a16a94d3 .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#aa9c8ac657ac6a9 , #aa9c8ac657ac6a9 a{color: rgba(255, 255, 255, 1);}#a6ff9a5fc0ac6c4 .img-wrap {
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
}
#a6b46a3470a1ea9 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#af800a2765a10b3 .gallery-thumbnails .uk-thumbnav {
  justify-content: center;
}
#af800a2765a10b3 .gallery-thumbnails .uk-thumbnav > * {
  padding-left: 8px;
}
#aba5da4defad067 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a20a7a8f50a1604 .uk-grid {
  margin-left: -15px;
}
#a20a7a8f50a1604 .uk-grid > * {
  padding-left: 15px;
}
#a20a7a8f50a1604 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a20a7a8f50a1604 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a20a7a8f50a1604 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a20a7a8f50a1604 .article .info {
  padding: 6px 8px;
  position: relative;
}
#a20a7a8f50a1604 .article .info p {
  margin: 10px 0 10px;
}
#a20a7a8f50a1604 .article svg {
  fill: currentColor;
}
#a20a7a8f50a1604 .article .btn_icon {
  position: absolute;
  right: 8px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#a20a7a8f50a1604 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#a20a7a8f50a1604 .article.list-icon .info {
  padding-left: 25px;
}
#a20a7a8f50a1604 .article .datetime {
  position: absolute;
  right: 8px;
  top: 6px;
}
#a20a7a8f50a1604 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#a20a7a8f50a1604 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a20a7a8f50a1604 .article:hover .title {
  color: #009adc;
}
#a20a7a8f50a1604 .article:hover .datetime {
  color: #009adc;
}
#a20a7a8f50a1604 .article:hover .category {
  color: #b6b6b6;
}
#a20a7a8f50a1604 .article:hover .abstract {
  color: #b6b6b6;
}
#a20a7a8f50a1604 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a20a7a8f50a1604 .article:hover .list_icon {
  color: #009adc;
}
#ace2aae7c2a5249 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#ace2aae7c2a5249 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ace2aae7c2a5249 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a511da8a17a8070 [data-item="items"] {left: 0px;top: -1px; position: relative;}#af836a1c2eac8e9 , #af836a1c2eac8e9 a{color: rgba(255, 255, 255, 0.5);}#af836a1c2eac8e9:hover, #af836a1c2eac8e9 a:hover {color: rgba(255, 255, 255, 1);}#a404fa5751ad68c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a6281ab45eaba70 .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a9a28a4933a33dc .img-wrap {
  border-bottom-right-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-top-left-radius: 25px;
}
#a0cb9a3484a09f0 , #a0cb9a3484a09f0 a{color: rgba(255, 255, 255, 1);}#a0cb9a3484a09f0:hover, #a0cb9a3484a09f0 a:hover {color: rgba(204, 233, 252, 1);}#a5cdeafac3a2166 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 600;background-color: rgba(41, 87, 237, 1);border-radius: 10px;justify-content: center;border-style: solid;}#a5cdeafac3a2166 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(20, 14, 131, 1);}#a037aa0e17afe02 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ae8c7a685caa466 .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#aac82a7f7ea7b8f .img-wrap {
  border-bottom-right-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-top-left-radius: 25px;
}
#a2784ae3b5a25cf , #a2784ae3b5a25cf a{color: rgba(255, 255, 255, 1);}#a2784ae3b5a25cf:hover, #a2784ae3b5a25cf a:hover {color: rgba(204, 233, 252, 1);}#a196da7beda9647 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 600;background-color: rgba(41, 87, 237, 1);border-radius: 10px;justify-content: center;border-style: solid;}#a196da7beda9647 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(20, 14, 131, 1);}#a427aa9e57a404d > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a8e73a0926a0ebb .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#af421aec8fa7fc8 .img-wrap {
  border-bottom-right-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-top-left-radius: 25px;
}
#a2499ae572a49cc , #a2499ae572a49cc a{color: rgba(255, 255, 255, 1);}#a2499ae572a49cc:hover, #a2499ae572a49cc a:hover {color: rgba(204, 233, 252, 1);}#a345faf337a6da6 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 600;background-color: rgba(41, 87, 237, 1);border-radius: 10px;justify-content: center;border-style: solid;}#a345faf337a6da6 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(20, 14, 131, 1);}#ae388acc30a655f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ab61fa5475a7055 .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#afd1fac8aca036b .img-wrap {
  border-bottom-right-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-top-left-radius: 25px;
}
#aa0d3a20d4a0c8a , #aa0d3a20d4a0c8a a{color: rgba(255, 255, 255, 1);}#aa0d3a20d4a0c8a:hover, #aa0d3a20d4a0c8a a:hover {color: rgba(204, 233, 252, 1);}#a52b5a003caec74 .ele-wrap {border-color: #000;color: #fff;font-size: 16px;font-weight: 600;background-color: rgba(41, 87, 237, 1);border-radius: 10px;justify-content: center;border-style: solid;}#a52b5a003caec74 .ele-wrap:hover {background-color: #0483cc;background-color: rgba(20, 14, 131, 1);}#a650ba24f8a0403 > .ele-wrap {background-color: rgba(176, 209, 247, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a9a52a1aa4ab8d6 > .ele-wrap {border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#aec4bace64a108d .gallery-thumbnails .uk-thumbnav {
  justify-content: center;
}
#aec4bace64a108d .gallery-thumbnails .uk-thumbnav > * {
  padding-left: 8px;
}
#a6ce7a8daaa00c6 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac90baf4d2a7907 .gallery-thumbnails .uk-thumbnav {
  justify-content: center;
}
#ac90baf4d2a7907 .gallery-thumbnails .uk-thumbnav > * {
  padding-left: 8px;
}
#aa221a1a2fa23e9 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a7344aa178a9989 .uk-grid {
  margin-left: -15px;
}
#a7344aa178a9989 .uk-grid > * {
  padding-left: 15px;
}
#a7344aa178a9989 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a7344aa178a9989 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a7344aa178a9989 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a7344aa178a9989 .article .info {
  padding: 6px 8px;
  position: relative;
}
#a7344aa178a9989 .article .info p {
  margin: 10px 0 10px;
}
#a7344aa178a9989 .article svg {
  fill: currentColor;
}
#a7344aa178a9989 .article .btn_icon {
  position: absolute;
  right: 8px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#a7344aa178a9989 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#a7344aa178a9989 .article.list-icon .info {
  padding-left: 25px;
}
#a7344aa178a9989 .article .datetime {
  position: absolute;
  right: 8px;
  top: 6px;
}
#a7344aa178a9989 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  color: #4a4a4a;
}
#a7344aa178a9989 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a7344aa178a9989 .article:hover .title {
  color: #4a90e2;
}
#a7344aa178a9989 .article:hover .datetime {
  color: #4a90e2;
}
#a7344aa178a9989 .article:hover .category {
  color: #b6b6b6;
}
#a7344aa178a9989 .article:hover .abstract {
  color: #b6b6b6;
}
#a7344aa178a9989 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a7344aa178a9989 .article:hover .list_icon {
  color: #009adc;
}
#a1051aa185a608f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a9c9fad756a6a21 .uk-grid {
  margin-left: -15px;
}
#a9c9fad756a6a21 .uk-grid > * {
  padding-left: 15px;
}
#a9c9fad756a6a21 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a9c9fad756a6a21 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a9c9fad756a6a21 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a9c9fad756a6a21 .article .info {
  padding: 6px 8px;
  position: relative;
}
#a9c9fad756a6a21 .article .info p {
  margin: 10px 0 10px;
}
#a9c9fad756a6a21 .article svg {
  fill: currentColor;
}
#a9c9fad756a6a21 .article .btn_icon {
  position: absolute;
  right: 8px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#a9c9fad756a6a21 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#a9c9fad756a6a21 .article.list-icon .info {
  padding-left: 25px;
}
#a9c9fad756a6a21 .article .datetime {
  position: absolute;
  right: 8px;
  top: 6px;
}
#a9c9fad756a6a21 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  color: #4a4a4a;
}
#a9c9fad756a6a21 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a9c9fad756a6a21 .article:hover .title {
  color: #4a90e2;
}
#a9c9fad756a6a21 .article:hover .datetime {
  color: #4a90e2;
}
#a9c9fad756a6a21 .article:hover .category {
  color: #b6b6b6;
}
#a9c9fad756a6a21 .article:hover .abstract {
  color: #b6b6b6;
}
#a9c9fad756a6a21 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a9c9fad756a6a21 .article:hover .list_icon {
  color: #009adc;
}
#a397ca9b01a79ac > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a8fbbaa842ad5e3 .uk-grid {
  margin-left: -15px;
}
#a8fbbaa842ad5e3 .uk-grid > * {
  padding-left: 15px;
}
#a8fbbaa842ad5e3 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a8fbbaa842ad5e3 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a8fbbaa842ad5e3 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a8fbbaa842ad5e3 .article .info {
  padding: 6px 8px;
  position: relative;
}
#a8fbbaa842ad5e3 .article .info p {
  margin: 10px 0 10px;
}
#a8fbbaa842ad5e3 .article svg {
  fill: currentColor;
}
#a8fbbaa842ad5e3 .article .btn_icon {
  position: absolute;
  right: 8px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#a8fbbaa842ad5e3 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#a8fbbaa842ad5e3 .article.list-icon .info {
  padding-left: 25px;
}
#a8fbbaa842ad5e3 .article .datetime {
  position: absolute;
  right: 8px;
  top: 6px;
}
#a8fbbaa842ad5e3 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  color: #4a4a4a;
}
#a8fbbaa842ad5e3 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a8fbbaa842ad5e3 .article:hover .title {
  color: #4a90e2;
}
#a8fbbaa842ad5e3 .article:hover .datetime {
  color: #4a90e2;
}
#a8fbbaa842ad5e3 .article:hover .category {
  color: #b6b6b6;
}
#a8fbbaa842ad5e3 .article:hover .abstract {
  color: #b6b6b6;
}
#a8fbbaa842ad5e3 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a8fbbaa842ad5e3 .article:hover .list_icon {
  color: #009adc;
}
#a188ba2b23acd6c .gallery-items-wrap {
  margin-left: -15px;
}
#a188ba2b23acd6c .filter.active {
  background-color: #0164ff;
}
#a188ba2b23acd6c .gallery-item {
  width: 260px;
  margin: 0 0 15px 15px;
  float: left;
  list-style: none;
  position: relative;
}
#a188ba2b23acd6c .text-style-3 figure {
  height: 300px;
}
#a188ba2b23acd6c .gallery-item figcaption {
  background-color: #06459a;
}
#a188ba2b23acd6c .gallery-item h3 {
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
}
#a188ba2b23acd6c .filter.active {
  background-color: #9b9b9b;
}
#a4507adb10a67b4 > .ele-wrap {background-color: rgba(0, 0, 0, 0);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a94e2a79faa0d64 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#a94e2a79faa0d64 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a94e2a79faa0d64 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#abf57a1071a4d12 form {
  width: 100%;
  height: 100%;
}
#abf57a1071a4d12 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#abf57a1071a4d12 .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;
}
#abf57a1071a4d12 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#abf57a1071a4d12 .search-box .search-type.show {
  display: block;
}
#abf57a1071a4d12 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#abf57a1071a4d12 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#abf57a1071a4d12 .search-box .search-type li.active {
  color: #4a4a4a;
}
#abf57a1071a4d12 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#abf57a1071a4d12 .inner-form .input-field {
  height: 100%;
}
#abf57a1071a4d12 .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;
}
#abf57a1071a4d12 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#abf57a1071a4d12 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#abf57a1071a4d12 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#abf57a1071a4d12 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#abf57a1071a4d12 .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;
}
#abf57a1071a4d12 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#abf57a1071a4d12 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#abf57a1071a4d12 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#abf57a1071a4d12 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#abf57a1071a4d12 .btn-search:hover {
  background: #4a4a4a;
}
#abf57a1071a4d12 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a66d0a6ce3ab4ad .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a66d0a6ce3ab4ad .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a66d0a6ce3ab4ad .ap-icon {
  margin-right: 6px;
}
#a66d0a6ce3ab4ad .indicator {
  margin-left: 4px;
}
#a66d0a6ce3ab4ad .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a66d0a6ce3ab4ad .menu-list li:hover > a,
#a66d0a6ce3ab4ad .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a66d0a6ce3ab4ad .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a66d0a6ce3ab4ad .menu-list ul,
#a66d0a6ce3ab4ad .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a66d0a6ce3ab4ad .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a66d0a6ce3ab4ad .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a66d0a6ce3ab4ad .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a66d0a6ce3ab4ad .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a66d0a6ce3ab4ad .menu-list ul li a:hover {
  background-color: #140e83;
}
#a66d0a6ce3ab4ad .menu-list ul li.active > a {
  background-color: #140e83;
}
#ad85ca8173ab5d9 > .ele-wrap {border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-left-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);border-top-color: rgba(226, 226, 226, 1);}#ab0bfa6e8aad5c2 a, #ab0bfa6e8aad5c2 {
        font-weight: normal;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#a5c58ac03daed7f a, #a5c58ac03daed7f {
        font-weight: normal;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#a97f9a71fca2dc7 > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1776391309244.png);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#af5b5a930cab872 > .ele-wrap {background-color: rgba(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);}#a4717aeba3a43e7 > .ele-wrap {
        font-weight: bold;
        font-style: normal;
    font-size: 17px;font-family: inherit;color: rgba(0, 0, 0, 1);letter-spacing: 2px;background-color: rgba(255, 255, 255, 1);box-shadow: 0px 0px 0px 0px undefined;}#a1dd7a07e7a95e4 .img-wrap {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#a9298a8b17ae246 a {
        font-weight: bold;
        font-style: normal;
    font-size: 17px;font-family: inherit;color: rgba(0, 0, 0, 1);letter-spacing: 2px;}#a5e6aaedb4a965f , #a5e6aaedb4a965f a{color: rgba(255, 255, 255, 1);}#a5fa8ab942a8a0d .ele-wrap {color: #fff;font-size: 14px;background-color: #0095eb;border-radius: 5px;}#abd66aef2da93a8 > .ele-wrap {background-color: rgba(255, 154, 0, 1);border-radius: 10px;}#abd66aef2da93a8  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);}#a58c2a2b4fa83d4 > .ele-wrap {background-color: rgba(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);}#a422aaa0eba38b0 .img-wrap {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#a53bfa086da69d1 a {
        font-weight: bold;
        font-style: normal;
    font-size: 17px;font-family: inherit;color: rgba(0, 0, 0, 1);letter-spacing: 2px;}#a7310a81ccabc03 , #a7310a81ccabc03 a{color: rgba(255, 255, 255, 1);}#aa593a8bf5a1aaa > .ele-wrap {background-color: rgba(255, 154, 0, 1);border-radius: 10px;}#aa593a8bf5a1aaa  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);}#aa3e1ad60cabdae .ele-wrap {color: #fff;font-size: 14px;background-color: #0095eb;border-radius: 5px;}#af268a20a1a64a1 > .ele-wrap {background-color: rgba(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);}#a6d47a53f1a1c00 .img-wrap {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#adba1a33eeac2e6 a {
        font-weight: bold;
        font-style: normal;
    font-size: 17px;font-family: inherit;color: rgba(0, 0, 0, 1);letter-spacing: 2px;}#a5884adbc2a0c30 .img-wrap {
  border-bottom-right-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  border-top-left-radius: 30px;
}
#a1893a4257abd47 , #a1893a4257abd47 a{color: rgba(255, 255, 255, 1);}#a4aeaaf291a4b3f > .ele-wrap {background-color: rgba(255, 154, 0, 1);border-radius: 10px;}#a4aeaaf291a4b3f  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);}#a0bc4a106cad37b .ele-wrap {color: #fff;font-size: 14px;background-color: #0095eb;border-radius: 5px;}#a5820aa58aa1508 > .ele-wrap {background-color: rgba(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);}#a22cbacdfeafa5b .img-wrap {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#a0101a6609a58d9 a {
        font-weight: bold;
        font-style: normal;
    font-size: 17px;font-family: inherit;color: rgba(0, 0, 0, 1);letter-spacing: 2px;}#a58b3aebc2a1889 .img-wrap {
  border-bottom-right-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  border-top-left-radius: 30px;
}
#a837aaeb5caae1c , #a837aaeb5caae1c a{color: rgba(255, 255, 255, 1);}#aed0da955faf41b > .ele-wrap {background-color: rgba(255, 154, 0, 1);border-radius: 10px;}#aed0da955faf41b  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);}#a0d6daddb2a418f .ele-wrap {color: #fff;font-size: 14px;background-color: #0095eb;border-radius: 5px;}#a2612a90c2ae739 > .ele-wrap {background-color: rgba(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);}#a583ca29b7a7fa4 a {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(74, 74, 74, 1);letter-spacing: 2px;}#a2d15a90b9a992d .ele-wrap {color: #fff;font-size: 12px;background-color: #0095eb;border-radius: 5px;justify-content: center;border-style: solid;}#a8d81a18b0a9454 > .ele-wrap {background-color: rgba(255, 154, 0, 1);border-radius: 10px;}#a8d81a18b0a9454  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);}#a8ad7aab82acad0 > .ele-wrap {background-color: rgba(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);}#a7d66a5c6ea1614 a {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(74, 74, 74, 1);letter-spacing: 2px;}#ad23aa3c3fa6dd1 > .ele-wrap {background-color: rgba(255, 154, 0, 1);border-radius: 10px;}#ad23aa3c3fa6dd1  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);}#a3a81a8d92aee02 .ele-wrap {color: #fff;font-size: 12px;background-color: #0095eb;border-radius: 5px;justify-content: center;border-style: solid;}#a58a2a08d3ae66e > .ele-wrap {background-color: rgba(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);}#a2f46a1cf1a0e48 a {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(74, 74, 74, 1);letter-spacing: 2px;}#abd85a2e06a3010 > .ele-wrap {background-color: rgba(255, 154, 0, 1);border-radius: 10px;}#abd85a2e06a3010  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);}#a45c2ac44eaffb4 .ele-wrap {color: #fff;font-size: 12px;background-color: #0095eb;border-radius: 5px;justify-content: center;border-style: solid;}#aac5dacac5a7f78 > .ele-wrap {background-color: rgba(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);}#a7eeba2db1a766f a {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(74, 74, 74, 1);letter-spacing: 2px;}#a0158a823ba2530 > .ele-wrap {background-color: rgba(255, 154, 0, 1);border-radius: 10px;}#a0158a823ba2530  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);}#a44fda3b83aa512 > .ele-wrap {background-color: rgba(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);}#ad8c3ad7eaad3a8 a {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(74, 74, 74, 1);letter-spacing: 2px;}#a1cc7a26dda9bc8 > .ele-wrap {background-color: rgba(255, 154, 0, 1);border-radius: 10px;}#a1cc7a26dda9bc8  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);}#a9eb2a61d6afa43 > .ele-wrap {background-color: rgba(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);}#afab2adeb1a0c09 a {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(74, 74, 74, 1);letter-spacing: 2px;}#a6a61a7076a0d42 > .ele-wrap {background-color: rgba(255, 154, 0, 1);border-radius: 10px;}#a6a61a7076a0d42  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);}#a2577aa93fa4b83 > .ele-wrap {background-color: rgba(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);}#a2d6daa58da4c6e a {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(74, 74, 74, 1);letter-spacing: 2px;}#a5f6ea060ba6923 > .ele-wrap {background-color: rgba(255, 154, 0, 1);border-radius: 10px;}#a5f6ea060ba6923  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);}#af764a66dbaec47 > .ele-wrap {background-color: rgba(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);}#ada86a8ceda501e a {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(74, 74, 74, 1);letter-spacing: 2px;}#aab55adc98a1e75 > .ele-wrap {background-color: rgba(255, 154, 0, 1);border-radius: 10px;}#aab55adc98a1e75  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);}#acd7ca182aa8831 .ele-wrap {color: #fff;font-size: 12px;background-color: #0095eb;border-radius: 5px;justify-content: center;border-style: solid;}#a21e9a6fdfa1061 > .ele-wrap {background-color: rgba(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);}#a6d07aeb2bac4a8 a {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(74, 74, 74, 1);letter-spacing: 2px;}#a6f1aa12f7a2747 > .ele-wrap {background-color: rgba(255, 154, 0, 1);border-radius: 10px;}#a6f1aa12f7a2747  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);}#ae264a236fae9f8 .ele-wrap {color: #fff;font-size: 12px;background-color: #0095eb;border-radius: 5px;justify-content: center;border-style: solid;}#a69b0a5fa7a7852 > .ele-wrap {background-color: rgba(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);}#a9933a2cb3abeac a {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(74, 74, 74, 1);letter-spacing: 2px;}#a264da4affa6e37 > .ele-wrap {background-color: rgba(255, 154, 0, 1);border-radius: 10px;}#a264da4affa6e37  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);}#a7780a0739a68dd .ele-wrap {color: #fff;font-size: 12px;background-color: #0095eb;border-radius: 5px;justify-content: center;border-style: solid;}#aaa9baa104a2fdd > .ele-wrap {background-color: rgba(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);}#ade55a69eba7804 a {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(74, 74, 74, 1);letter-spacing: 2px;}#a2d93ab5c0afd97 .ele-wrap {color: #fff;font-size: 12px;background-color: #0095eb;border-radius: 5px;justify-content: center;border-style: solid;}#a2e8bad228a3d81 > .ele-wrap {background-color: rgba(255, 154, 0, 1);border-radius: 10px;}#a2e8bad228a3d81  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);}#a26b6ad4bba9714 > .ele-wrap {background-color: rgba(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);}#a557aa6092a60f5 a {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(74, 74, 74, 1);letter-spacing: 2px;}#a6260a7e77ad269 > .ele-wrap {background-color: rgba(255, 154, 0, 1);border-radius: 10px;}#a6260a7e77ad269  > .ele-wrap:hover {background-color: rgba(255, 255, 255, 1);}#adb32a1ba1ac639 .ele-wrap {color: #fff;font-size: 12px;background-color: #0095eb;border-radius: 5px;justify-content: center;border-style: solid;}#a7241a0345a7e1e {
  /* 修复吸顶导航宽度被写死的问题 */
}
#a7241a0345a7e1e .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a7241a0345a7e1e .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a8adfafa5da3055 form {
  width: 100%;
  height: 100%;
}
#a8adfafa5da3055 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#a8adfafa5da3055 .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;
}
#a8adfafa5da3055 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#a8adfafa5da3055 .search-box .search-type.show {
  display: block;
}
#a8adfafa5da3055 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#a8adfafa5da3055 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#a8adfafa5da3055 .search-box .search-type li.active {
  color: #4a4a4a;
}
#a8adfafa5da3055 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#a8adfafa5da3055 .inner-form .input-field {
  height: 100%;
}
#a8adfafa5da3055 .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;
}
#a8adfafa5da3055 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#a8adfafa5da3055 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#a8adfafa5da3055 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#a8adfafa5da3055 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#a8adfafa5da3055 .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;
}
#a8adfafa5da3055 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#a8adfafa5da3055 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#a8adfafa5da3055 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#a8adfafa5da3055 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#a8adfafa5da3055 .btn-search:hover {
  background: #4a4a4a;
}
#a8adfafa5da3055 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#aefaea14b4a1574 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#aefaea14b4a1574 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#aefaea14b4a1574 .ap-icon {
  margin-right: 6px;
}
#aefaea14b4a1574 .indicator {
  margin-left: 4px;
}
#aefaea14b4a1574 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#aefaea14b4a1574 .menu-list li:hover > a,
#aefaea14b4a1574 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#aefaea14b4a1574 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#aefaea14b4a1574 .menu-list ul,
#aefaea14b4a1574 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#aefaea14b4a1574 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#aefaea14b4a1574 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#aefaea14b4a1574 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#aefaea14b4a1574 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#aefaea14b4a1574 .menu-list ul li a:hover {
  background-color: #140e83;
}
#aefaea14b4a1574 .menu-list ul li.active > a {
  background-color: #140e83;
}
#ae145a30afa9c79 > .ele-wrap {border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-left-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);border-top-color: rgba(226, 226, 226, 1);}#a9edea1f74a9033 > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1776391309244.png);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#a41d8a692da8ecf > .ele-wrap {background-color: rgba(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);}#ab90ba816eaf41a a {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(24, 56, 131, 1);}#ae278abf91abbea > .ele-wrap {background-color: rgba(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);}#aa0daa6bb7a1450 a {
        font-weight: bold;
        font-style: normal;
    font-size: 18px;font-family: inherit;color: rgba(24, 56, 131, 1);}#a0e9cada4dad9fd .img-wrap {
  border-bottom-right-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 25px;
  border-top-left-radius: 25px;
}
#ab31ea0ea4ac6ba > .ele-wrap {background-color: rgba(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);}#a97eca5568acb14 a {
        font-weight: bold;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(24, 56, 131, 1);}#a5153a10e2a49e6 > .ele-wrap {background-color: rgba(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);}#ac4dca6ac3ad10c a {
        font-weight: bold;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(24, 56, 131, 1);}#a4c16a0e63a2846 > .ele-wrap {background-color: rgba(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);}#a2beead031a51ae a {
        font-weight: bold;
        font-style: normal;
    font-size: 16px;font-family: inherit;color: rgba(24, 56, 131, 1);}#aecfea8108ad6e9 a, #aecfea8108ad6e9 {
        font-weight: normal;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#afd0ba8d57aef84 a, #afd0ba8d57aef84 {
        font-weight: normal;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#a821babc8aa6bc6 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#a821babc8aa6bc6 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a821babc8aa6bc6 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a0276a8f1aa2486 form {
  width: 100%;
  height: 100%;
}
#a0276a8f1aa2486 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#a0276a8f1aa2486 .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;
}
#a0276a8f1aa2486 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#a0276a8f1aa2486 .search-box .search-type.show {
  display: block;
}
#a0276a8f1aa2486 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#a0276a8f1aa2486 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#a0276a8f1aa2486 .search-box .search-type li.active {
  color: #4a4a4a;
}
#a0276a8f1aa2486 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#a0276a8f1aa2486 .inner-form .input-field {
  height: 100%;
}
#a0276a8f1aa2486 .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;
}
#a0276a8f1aa2486 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#a0276a8f1aa2486 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#a0276a8f1aa2486 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#a0276a8f1aa2486 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#a0276a8f1aa2486 .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;
}
#a0276a8f1aa2486 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#a0276a8f1aa2486 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#a0276a8f1aa2486 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#a0276a8f1aa2486 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#a0276a8f1aa2486 .btn-search:hover {
  background: #4a4a4a;
}
#a0276a8f1aa2486 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#aca91a8a05a391a .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#aca91a8a05a391a .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#aca91a8a05a391a .ap-icon {
  margin-right: 6px;
}
#aca91a8a05a391a .indicator {
  margin-left: 4px;
}
#aca91a8a05a391a .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#aca91a8a05a391a .menu-list li:hover > a,
#aca91a8a05a391a .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#aca91a8a05a391a .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#aca91a8a05a391a .menu-list ul,
#aca91a8a05a391a .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#aca91a8a05a391a .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#aca91a8a05a391a .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#aca91a8a05a391a .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#aca91a8a05a391a .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#aca91a8a05a391a .menu-list ul li a:hover {
  background-color: #140e83;
}
#aca91a8a05a391a .menu-list ul li.active > a {
  background-color: #140e83;
}
#aa5a9a2c94a2d1b > .ele-wrap {border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-left-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);border-top-color: rgba(226, 226, 226, 1);}#afa01a76d8aef02 > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1776391309244.png);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#af4d4aa7aaaa077 > .ele-wrap {background-color: rgba(255, 255, 255, 1);background-position: center center;background-size: cover;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);}#a7a28a4675aeccf a {
        font-weight: bold;
        font-style: normal;
    font-size: 17px;font-family: inherit;color: rgba(24, 56, 131, 1);}#a907cae2f3a624f , #a907cae2f3a624f a{color: rgba(24, 56, 131, 1);}#a7390a06faa15be > .ele-wrap {background-color: rgba(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);}#ab640ac6a8a74d9 a {
        font-weight: bold;
        font-style: normal;
    font-size: 17px;font-family: inherit;color: rgba(24, 56, 131, 1);}#a118da23feaa624 , #a118da23feaa624 a{color: rgba(24, 56, 131, 1);}#a71a9aa6ebae7b8 > .ele-wrap {background-color: rgba(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);}#a4c2caa792a5321 a {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#a8e1ba1dd9a726a > .ele-wrap {background-color: rgba(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);}#aaf36a344fa667f a {
        font-weight: bold;
        font-style: normal;
    font-size: 17px;font-family: inherit;color: rgba(24, 56, 131, 1);}#a6ee1a3afbabb47 , #a6ee1a3afbabb47 a{color: rgba(24, 56, 131, 1);}#a76b0af19ca35d1 > .ele-wrap {background-color: rgba(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);}#aa2b9a3192ab882 a {
        font-weight: bold;
        font-style: normal;
    font-size: 17px;font-family: inherit;color: rgba(24, 56, 131, 1);}#a984cae1fba3760 , #a984cae1fba3760 a{color: rgba(24, 56, 131, 1);}#aabe6a7770a60c1 > .ele-wrap {background-color: rgba(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);}#ac4c6a6450a4c6c a {
        font-weight: bold;
        font-style: normal;
    font-size: 17px;font-family: inherit;color: rgba(24, 56, 131, 1);}#ac623a6453a7b12 , #ac623a6453a7b12 a{color: rgba(24, 56, 131, 1);}#a7953a8d3aa2b2f > .ele-wrap {background-color: rgba(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);}#a379eaeef2ad12a a {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#a4d70a12b9a068e > .ele-wrap {background-color: rgba(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);}#a1cd5a8029aab48 a {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#a92feaa507afc82 > .ele-wrap {background-color: rgba(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);}#acf12aea2fab688 a {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;text-align: center;font-family: inherit;color: rgba(24, 56, 131, 1);}#a7ed3a4936a9d6a > .ele-wrap {background-color: rgba(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);}#a8d29a1284a1858 a {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#ac9c7adc3cae717 > .ele-wrap {background-color: rgba(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);}#ad984ac4a0aa5b5 a {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#a38c1a60e0afb76 > .ele-wrap {background-color: rgba(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);}#a2743a04b6aae65 a {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#a80f5a80c8a1f0c > .ele-wrap {background-color: rgba(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);}#a925aa6f93a592d a {
        font-weight: bold;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#ae69fad2adadcba a, #ae69fad2adadcba {
        font-weight: normal;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#a2329adc37a999c a, #a2329adc37a999c {
        font-weight: normal;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#abe8fa52c9a02aa {
  /* 修复吸顶导航宽度被写死的问题 */
}
#abe8fa52c9a02aa .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#abe8fa52c9a02aa .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a3236a52a2a9d39 form {
  width: 100%;
  height: 100%;
}
#a3236a52a2a9d39 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#a3236a52a2a9d39 .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;
}
#a3236a52a2a9d39 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#a3236a52a2a9d39 .search-box .search-type.show {
  display: block;
}
#a3236a52a2a9d39 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#a3236a52a2a9d39 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#a3236a52a2a9d39 .search-box .search-type li.active {
  color: #4a4a4a;
}
#a3236a52a2a9d39 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#a3236a52a2a9d39 .inner-form .input-field {
  height: 100%;
}
#a3236a52a2a9d39 .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;
}
#a3236a52a2a9d39 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#a3236a52a2a9d39 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#a3236a52a2a9d39 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#a3236a52a2a9d39 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#a3236a52a2a9d39 .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;
}
#a3236a52a2a9d39 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#a3236a52a2a9d39 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#a3236a52a2a9d39 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#a3236a52a2a9d39 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#a3236a52a2a9d39 .btn-search:hover {
  background: #4a4a4a;
}
#a3236a52a2a9d39 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#aae15ac5ffa4e00 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#aae15ac5ffa4e00 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#aae15ac5ffa4e00 .ap-icon {
  margin-right: 6px;
}
#aae15ac5ffa4e00 .indicator {
  margin-left: 4px;
}
#aae15ac5ffa4e00 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#aae15ac5ffa4e00 .menu-list li:hover > a,
#aae15ac5ffa4e00 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#aae15ac5ffa4e00 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#aae15ac5ffa4e00 .menu-list ul,
#aae15ac5ffa4e00 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#aae15ac5ffa4e00 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#aae15ac5ffa4e00 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#aae15ac5ffa4e00 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#aae15ac5ffa4e00 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#aae15ac5ffa4e00 .menu-list ul li a:hover {
  background-color: #140e83;
}
#aae15ac5ffa4e00 .menu-list ul li.active > a {
  background-color: #140e83;
}
#a5800a6872aaae4 > .ele-wrap {border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-left-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);border-top-color: rgba(226, 226, 226, 1);}#afd04adb20a41b0 > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1776391309244.png);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#a978ba838ca5ace .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a978ba838ca5ace .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a978ba838ca5ace .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a978ba838ca5ace .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a978ba838ca5ace .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a978ba838ca5ace .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a978ba838ca5ace .ele-article-list .pic-article .img_wrap .tag {
  display: inline-block;
  padding: 0 .5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: .6rem;
  text-align: center;
  border-radius: 1rem;
  margin: 0 5px 5px 0;
}
#a978ba838ca5ace .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a978ba838ca5ace .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a978ba838ca5ace .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a978ba838ca5ace .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a978ba838ca5ace .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a978ba838ca5ace .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a978ba838ca5ace .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a978ba838ca5ace .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a978ba838ca5ace .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a978ba838ca5ace .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a978ba838ca5ace .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a978ba838ca5ace .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a978ba838ca5ace .ele-article-list .text-article h3 a:hover {
  text-decoration: underline;
  color: #222;
}
/* mobile */
@media (max-width: 640px) {
  .ele-article-list .pic-article {
    padding: 10px 0;
  }
  .ele-article-list .pic-article .img_wrap {
    margin-right: 10px;
  }
  .ele-article-list .pic-article .img_wrap .tag {
    display: none;
  }
  .ele-article-list .pic-article .info {
    font-size: 12px;
  }
  .ele-article-list .pic-article .abstract {
    display: none;
  }
  .ele-article-list .pic-article .info h3 {
    font-size: 14px;
  }
}
#a978ba838ca5ace .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px dashed #ececec;
}
#a978ba838ca5ace .ele-article-list .pic-article .img_wrap {
  width: 10%;
  border-radius: 0px;
  overflow: hidden;
}
#a978ba838ca5ace .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a978ba838ca5ace .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a978ba838ca5ace .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a978ba838ca5ace .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a978ba838ca5ace .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a978ba838ca5ace .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a978ba838ca5ace .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a978ba838ca5ace .ele-article-list .text-article {
  border-bottom: 1px dashed #ececec;
}
#a978ba838ca5ace .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a978ba838ca5ace .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a978ba838ca5ace .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a978ba838ca5ace .ele-article-list .text-article:hover .time {
  color: auto;
}
#acc20a3fd7a807b .a8763ac379a3927 {
  overflow: hidden;
}
#acc20a3fd7a807b .a8763ac379a3927 , #acc20a3fd7a807b .a8763ac379a3927 > * {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;font-family: inherit;color: rgba(74, 74, 74, 1);}#acc20a3fd7a807b .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #acc20a3fd7a807b .uk-position-center-left-out {
    left: -30px;
  }
  #acc20a3fd7a807b .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a65f0aab3fac68d > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1776391309244.png);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#aba36a21a3a71d4 > .ele-wrap {background-color: rgba(0, 0, 0, 0);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a1714a67eeab5b4 .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a1714a67eeab5b4 .img-wrap:hover {
  border-color: #4a90e2;
}
#a91e3adc70a7cd2 , #a91e3adc70a7cd2 a{color: rgba(255, 255, 255, 1);}#a91e3adc70a7cd2:hover, #a91e3adc70a7cd2 a:hover {color: rgba(204, 233, 252, 1);}#a9836a1b55aee2b .img-wrap {
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}
#a3fe6ae94eae037 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#aa541a8fb2a956c .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#ab5caa629aacfc0 .img-wrap {
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}
#ac930ac714a436a , #ac930ac714a436a a{color: rgba(255, 255, 255, 1);}#a0741a31cea00d3 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a8ebda3901ae8a0 .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a26f9aa257ad6c3 , #a26f9aa257ad6c3 a{color: rgba(255, 255, 255, 1);}#a3057a6b52abdb1 .img-wrap {
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
}
#a6429a5937a4d9f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a6cdaa2b55a13d6 .gallery-thumbnails .uk-thumbnav {
  justify-content: center;
}
#a6cdaa2b55a13d6 .gallery-thumbnails .uk-thumbnav > * {
  padding-left: 8px;
}
#a4578aafffae249 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a1e2fab9e5a64d6 .uk-grid {
  margin-left: -15px;
}
#a1e2fab9e5a64d6 .uk-grid > * {
  padding-left: 15px;
}
#a1e2fab9e5a64d6 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a1e2fab9e5a64d6 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a1e2fab9e5a64d6 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a1e2fab9e5a64d6 .article .info {
  padding: 6px 8px;
  position: relative;
}
#a1e2fab9e5a64d6 .article .info p {
  margin: 10px 0 10px;
}
#a1e2fab9e5a64d6 .article svg {
  fill: currentColor;
}
#a1e2fab9e5a64d6 .article .btn_icon {
  position: absolute;
  right: 8px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#a1e2fab9e5a64d6 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#a1e2fab9e5a64d6 .article.list-icon .info {
  padding-left: 25px;
}
#a1e2fab9e5a64d6 .article .datetime {
  position: absolute;
  right: 8px;
  top: 6px;
}
#a1e2fab9e5a64d6 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a1e2fab9e5a64d6 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a1e2fab9e5a64d6 .article:hover .title {
  color: #009adc;
}
#a1e2fab9e5a64d6 .article:hover .datetime {
  color: #009adc;
}
#a1e2fab9e5a64d6 .article:hover .category {
  color: #b6b6b6;
}
#a1e2fab9e5a64d6 .article:hover .abstract {
  color: #b6b6b6;
}
#a1e2fab9e5a64d6 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a1e2fab9e5a64d6 .article:hover .list_icon {
  color: #009adc;
}
#a1882a848ea774b a, #a1882a848ea774b {
        font-weight: normal;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#a4b20ace22a8027 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#a4b20ace22a8027 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4b20ace22a8027 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a7e84ad9c6a3010 form {
  width: 100%;
  height: 100%;
}
#a7e84ad9c6a3010 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#a7e84ad9c6a3010 .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;
}
#a7e84ad9c6a3010 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#a7e84ad9c6a3010 .search-box .search-type.show {
  display: block;
}
#a7e84ad9c6a3010 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#a7e84ad9c6a3010 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#a7e84ad9c6a3010 .search-box .search-type li.active {
  color: #4a4a4a;
}
#a7e84ad9c6a3010 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#a7e84ad9c6a3010 .inner-form .input-field {
  height: 100%;
}
#a7e84ad9c6a3010 .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;
}
#a7e84ad9c6a3010 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#a7e84ad9c6a3010 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#a7e84ad9c6a3010 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#a7e84ad9c6a3010 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#a7e84ad9c6a3010 .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;
}
#a7e84ad9c6a3010 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#a7e84ad9c6a3010 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#a7e84ad9c6a3010 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#a7e84ad9c6a3010 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#a7e84ad9c6a3010 .btn-search:hover {
  background: #4a4a4a;
}
#a7e84ad9c6a3010 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a543aa9815a4815 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a543aa9815a4815 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a543aa9815a4815 .ap-icon {
  margin-right: 6px;
}
#a543aa9815a4815 .indicator {
  margin-left: 4px;
}
#a543aa9815a4815 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a543aa9815a4815 .menu-list li:hover > a,
#a543aa9815a4815 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a543aa9815a4815 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a543aa9815a4815 .menu-list ul,
#a543aa9815a4815 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a543aa9815a4815 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a543aa9815a4815 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a543aa9815a4815 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a543aa9815a4815 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a543aa9815a4815 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a543aa9815a4815 .menu-list ul li.active > a {
  background-color: #140e83;
}
#ac667a8af6a7956 > .ele-wrap {border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-left-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);border-top-color: rgba(226, 226, 226, 1);}#aef88ab1f0aca38 > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1776391309244.png);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#a03c3a5c6ead532 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a03c3a5c6ead532 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a03c3a5c6ead532 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a03c3a5c6ead532 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a03c3a5c6ead532 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a03c3a5c6ead532 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a03c3a5c6ead532 .ele-article-list .pic-article .img_wrap .tag {
  display: inline-block;
  padding: 0 .5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: .6rem;
  text-align: center;
  border-radius: 1rem;
  margin: 0 5px 5px 0;
}
#a03c3a5c6ead532 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a03c3a5c6ead532 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a03c3a5c6ead532 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a03c3a5c6ead532 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a03c3a5c6ead532 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a03c3a5c6ead532 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a03c3a5c6ead532 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a03c3a5c6ead532 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a03c3a5c6ead532 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a03c3a5c6ead532 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a03c3a5c6ead532 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a03c3a5c6ead532 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a03c3a5c6ead532 .ele-article-list .text-article h3 a:hover {
  text-decoration: underline;
  color: #222;
}
/* mobile */
@media (max-width: 640px) {
  .ele-article-list .pic-article {
    padding: 10px 0;
  }
  .ele-article-list .pic-article .img_wrap {
    margin-right: 10px;
  }
  .ele-article-list .pic-article .img_wrap .tag {
    display: none;
  }
  .ele-article-list .pic-article .info {
    font-size: 12px;
  }
  .ele-article-list .pic-article .abstract {
    display: none;
  }
  .ele-article-list .pic-article .info h3 {
    font-size: 14px;
  }
}
#a03c3a5c6ead532 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px dashed #ececec;
}
#a03c3a5c6ead532 .ele-article-list .pic-article .img_wrap {
  width: 10%;
  border-radius: 0px;
  overflow: hidden;
}
#a03c3a5c6ead532 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a03c3a5c6ead532 .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a03c3a5c6ead532 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a03c3a5c6ead532 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a03c3a5c6ead532 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a03c3a5c6ead532 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a03c3a5c6ead532 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a03c3a5c6ead532 .ele-article-list .text-article {
  border-bottom: 1px dashed #ececec;
}
#a03c3a5c6ead532 .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a03c3a5c6ead532 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a03c3a5c6ead532 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a03c3a5c6ead532 .ele-article-list .text-article:hover .time {
  color: auto;
}
#ae7c3ac6d6a7f57 .ab35fa0499a70bf {
  overflow: hidden;
}
#ae7c3ac6d6a7f57 .ab35fa0499a70bf , #ae7c3ac6d6a7f57 .ab35fa0499a70bf > * {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;font-family: inherit;color: rgba(74, 74, 74, 1);}#ae7c3ac6d6a7f57 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #ae7c3ac6d6a7f57 .uk-position-center-left-out {
    left: -30px;
  }
  #ae7c3ac6d6a7f57 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ae34da666da11d8 > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1776391309244.png);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#a63d5a8aa7a6d06 > .ele-wrap {background-color: rgba(0, 0, 0, 0);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a392fa10a1a6f7e .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a392fa10a1a6f7e .img-wrap:hover {
  border-color: #4a90e2;
}
#a3d20a037aa0c4f , #a3d20a037aa0c4f a{color: rgba(255, 255, 255, 1);}#a3d20a037aa0c4f:hover, #a3d20a037aa0c4f a:hover {color: rgba(204, 233, 252, 1);}#a014da9e0aaa095 .img-wrap {
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}
#a688bab2c7a7310 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a0027acb1ca8b8f .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#ab790a38aea4455 .img-wrap {
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}
#a54a7ac987a56de , #a54a7ac987a56de a{color: rgba(255, 255, 255, 1);}#a833da5864a0783 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a79c1ab940a519e .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#ac7aca8beca9dfd , #ac7aca8beca9dfd a{color: rgba(255, 255, 255, 1);}#a40d1a0149a6cdd .img-wrap {
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
}
#a4425a1a51a520f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ac41ba308eafc5b .gallery-thumbnails .uk-thumbnav {
  justify-content: center;
}
#ac41ba308eafc5b .gallery-thumbnails .uk-thumbnav > * {
  padding-left: 8px;
}
#aa4e6a891faf66c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#acdc3ab975a6f2d .uk-grid {
  margin-left: -15px;
}
#acdc3ab975a6f2d .uk-grid > * {
  padding-left: 15px;
}
#acdc3ab975a6f2d .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#acdc3ab975a6f2d .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#acdc3ab975a6f2d .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#acdc3ab975a6f2d .article .info {
  padding: 6px 8px;
  position: relative;
}
#acdc3ab975a6f2d .article .info p {
  margin: 10px 0 10px;
}
#acdc3ab975a6f2d .article svg {
  fill: currentColor;
}
#acdc3ab975a6f2d .article .btn_icon {
  position: absolute;
  right: 8px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#acdc3ab975a6f2d .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#acdc3ab975a6f2d .article.list-icon .info {
  padding-left: 25px;
}
#acdc3ab975a6f2d .article .datetime {
  position: absolute;
  right: 8px;
  top: 6px;
}
#acdc3ab975a6f2d .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#acdc3ab975a6f2d .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#acdc3ab975a6f2d .article:hover .title {
  color: #009adc;
}
#acdc3ab975a6f2d .article:hover .datetime {
  color: #009adc;
}
#acdc3ab975a6f2d .article:hover .category {
  color: #b6b6b6;
}
#acdc3ab975a6f2d .article:hover .abstract {
  color: #b6b6b6;
}
#acdc3ab975a6f2d .article:hover .btn_icon {
  color: #b6b6b6;
}
#acdc3ab975a6f2d .article:hover .list_icon {
  color: #009adc;
}
#a5af8a2e04a00fc a, #a5af8a2e04a00fc {
        font-weight: normal;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#aef7ea6d71a81d2 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#aef7ea6d71a81d2 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aef7ea6d71a81d2 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a1962af9e1a744f form {
  width: 100%;
  height: 100%;
}
#a1962af9e1a744f .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#a1962af9e1a744f .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;
}
#a1962af9e1a744f .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#a1962af9e1a744f .search-box .search-type.show {
  display: block;
}
#a1962af9e1a744f .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#a1962af9e1a744f .search-box .search-type li:hover {
  color: #4a4a4a;
}
#a1962af9e1a744f .search-box .search-type li.active {
  color: #4a4a4a;
}
#a1962af9e1a744f .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#a1962af9e1a744f .inner-form .input-field {
  height: 100%;
}
#a1962af9e1a744f .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;
}
#a1962af9e1a744f .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#a1962af9e1a744f .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#a1962af9e1a744f .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#a1962af9e1a744f .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#a1962af9e1a744f .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;
}
#a1962af9e1a744f .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#a1962af9e1a744f .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#a1962af9e1a744f .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#a1962af9e1a744f .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#a1962af9e1a744f .btn-search:hover {
  background: #4a4a4a;
}
#a1962af9e1a744f .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a3bc9ad11daee43 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a3bc9ad11daee43 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a3bc9ad11daee43 .ap-icon {
  margin-right: 6px;
}
#a3bc9ad11daee43 .indicator {
  margin-left: 4px;
}
#a3bc9ad11daee43 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a3bc9ad11daee43 .menu-list li:hover > a,
#a3bc9ad11daee43 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a3bc9ad11daee43 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a3bc9ad11daee43 .menu-list ul,
#a3bc9ad11daee43 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a3bc9ad11daee43 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a3bc9ad11daee43 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a3bc9ad11daee43 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a3bc9ad11daee43 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a3bc9ad11daee43 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a3bc9ad11daee43 .menu-list ul li.active > a {
  background-color: #140e83;
}
#a6d60a9247a5dd5 > .ele-wrap {border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-left-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);border-top-color: rgba(226, 226, 226, 1);}#a9d54a72e5ae016 > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1776391309244.png);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#a0dfda08e8a2c99 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a0dfda08e8a2c99 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a0dfda08e8a2c99 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a0dfda08e8a2c99 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a0dfda08e8a2c99 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a0dfda08e8a2c99 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a0dfda08e8a2c99 .ele-article-list .pic-article .img_wrap .tag {
  display: inline-block;
  padding: 0 .5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: .6rem;
  text-align: center;
  border-radius: 1rem;
  margin: 0 5px 5px 0;
}
#a0dfda08e8a2c99 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a0dfda08e8a2c99 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a0dfda08e8a2c99 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a0dfda08e8a2c99 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a0dfda08e8a2c99 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a0dfda08e8a2c99 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a0dfda08e8a2c99 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a0dfda08e8a2c99 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a0dfda08e8a2c99 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a0dfda08e8a2c99 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a0dfda08e8a2c99 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a0dfda08e8a2c99 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a0dfda08e8a2c99 .ele-article-list .text-article h3 a:hover {
  text-decoration: underline;
  color: #222;
}
/* mobile */
@media (max-width: 640px) {
  .ele-article-list .pic-article {
    padding: 10px 0;
  }
  .ele-article-list .pic-article .img_wrap {
    margin-right: 10px;
  }
  .ele-article-list .pic-article .img_wrap .tag {
    display: none;
  }
  .ele-article-list .pic-article .info {
    font-size: 12px;
  }
  .ele-article-list .pic-article .abstract {
    display: none;
  }
  .ele-article-list .pic-article .info h3 {
    font-size: 14px;
  }
}
#a0dfda08e8a2c99 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px dashed #ececec;
}
#a0dfda08e8a2c99 .ele-article-list .pic-article .img_wrap {
  width: 10%;
  border-radius: 0px;
  overflow: hidden;
}
#a0dfda08e8a2c99 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a0dfda08e8a2c99 .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a0dfda08e8a2c99 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a0dfda08e8a2c99 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a0dfda08e8a2c99 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a0dfda08e8a2c99 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a0dfda08e8a2c99 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a0dfda08e8a2c99 .ele-article-list .text-article {
  border-bottom: 1px dashed #ececec;
}
#a0dfda08e8a2c99 .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a0dfda08e8a2c99 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a0dfda08e8a2c99 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a0dfda08e8a2c99 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a7762a4bd5a44a2 .ab787acfcaaee9d {
  overflow: hidden;
}
#a7762a4bd5a44a2 .ab787acfcaaee9d , #a7762a4bd5a44a2 .ab787acfcaaee9d > * {
        font-weight: normal;
        font-style: normal;
    font-size: 14px;font-family: inherit;color: rgba(74, 74, 74, 1);}#a7762a4bd5a44a2 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a7762a4bd5a44a2 .uk-position-center-left-out {
    left: -30px;
  }
  #a7762a4bd5a44a2 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a0e9da9335a7fa8 > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1776391309244.png);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#ad426a3264a4560 > .ele-wrap {background-color: rgba(0, 0, 0, 0);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ace3aaeadba8f33 .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#ace3aaeadba8f33 .img-wrap:hover {
  border-color: #4a90e2;
}
#ad0a8ab387a558b , #ad0a8ab387a558b a{color: rgba(255, 255, 255, 1);}#ad0a8ab387a558b:hover, #ad0a8ab387a558b a:hover {color: rgba(204, 233, 252, 1);}#a45aaa6546a2d19 .img-wrap {
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}
#a9052a2f7ca7a6e > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#af425ae591a7b3f .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a06c5ab37ba784f .img-wrap {
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}
#ad792a09d5a8153 , #ad792a09d5a8153 a{color: rgba(255, 255, 255, 1);}#a6b8aa6c84a07dd > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a187eac2bbacbd8 .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#afadca61a9a2127 , #afadca61a9a2127 a{color: rgba(255, 255, 255, 1);}#a6f55a55d9a62a5 .img-wrap {
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
}
#a1bcda4305afb36 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a2875abdc8aa239 .gallery-thumbnails .uk-thumbnav {
  justify-content: center;
}
#a2875abdc8aa239 .gallery-thumbnails .uk-thumbnav > * {
  padding-left: 8px;
}
#aa3dea72e4a359d > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#aff3baf52aa536f .uk-grid {
  margin-left: -15px;
}
#aff3baf52aa536f .uk-grid > * {
  padding-left: 15px;
}
#aff3baf52aa536f .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#aff3baf52aa536f .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#aff3baf52aa536f .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#aff3baf52aa536f .article .info {
  padding: 6px 8px;
  position: relative;
}
#aff3baf52aa536f .article .info p {
  margin: 10px 0 10px;
}
#aff3baf52aa536f .article svg {
  fill: currentColor;
}
#aff3baf52aa536f .article .btn_icon {
  position: absolute;
  right: 8px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#aff3baf52aa536f .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#aff3baf52aa536f .article.list-icon .info {
  padding-left: 25px;
}
#aff3baf52aa536f .article .datetime {
  position: absolute;
  right: 8px;
  top: 6px;
}
#aff3baf52aa536f .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#aff3baf52aa536f .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#aff3baf52aa536f .article:hover .title {
  color: #009adc;
}
#aff3baf52aa536f .article:hover .datetime {
  color: #009adc;
}
#aff3baf52aa536f .article:hover .category {
  color: #b6b6b6;
}
#aff3baf52aa536f .article:hover .abstract {
  color: #b6b6b6;
}
#aff3baf52aa536f .article:hover .btn_icon {
  color: #b6b6b6;
}
#aff3baf52aa536f .article:hover .list_icon {
  color: #009adc;
}
#a27c9a5841a10f4 a, #a27c9a5841a10f4 {
        font-weight: normal;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#a0407a28bba7d73 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#a0407a28bba7d73 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a0407a28bba7d73 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a2f03a2efda2ce3 form {
  width: 100%;
  height: 100%;
}
#a2f03a2efda2ce3 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#a2f03a2efda2ce3 .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;
}
#a2f03a2efda2ce3 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#a2f03a2efda2ce3 .search-box .search-type.show {
  display: block;
}
#a2f03a2efda2ce3 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#a2f03a2efda2ce3 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#a2f03a2efda2ce3 .search-box .search-type li.active {
  color: #4a4a4a;
}
#a2f03a2efda2ce3 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#a2f03a2efda2ce3 .inner-form .input-field {
  height: 100%;
}
#a2f03a2efda2ce3 .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;
}
#a2f03a2efda2ce3 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#a2f03a2efda2ce3 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#a2f03a2efda2ce3 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#a2f03a2efda2ce3 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#a2f03a2efda2ce3 .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;
}
#a2f03a2efda2ce3 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#a2f03a2efda2ce3 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#a2f03a2efda2ce3 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#a2f03a2efda2ce3 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#a2f03a2efda2ce3 .btn-search:hover {
  background: #4a4a4a;
}
#a2f03a2efda2ce3 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#aeb71a4085a60b5 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#aeb71a4085a60b5 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#aeb71a4085a60b5 .ap-icon {
  margin-right: 6px;
}
#aeb71a4085a60b5 .indicator {
  margin-left: 4px;
}
#aeb71a4085a60b5 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#aeb71a4085a60b5 .menu-list li:hover > a,
#aeb71a4085a60b5 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#aeb71a4085a60b5 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#aeb71a4085a60b5 .menu-list ul,
#aeb71a4085a60b5 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#aeb71a4085a60b5 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#aeb71a4085a60b5 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#aeb71a4085a60b5 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#aeb71a4085a60b5 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#aeb71a4085a60b5 .menu-list ul li a:hover {
  background-color: #140e83;
}
#aeb71a4085a60b5 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af196a6beaae819 > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1776391309244.png);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#ae1d5ac21badd7b , #ae1d5ac21badd7b a{color: rgba(14, 60, 208, 1);}#a7723a07e2a8f04 , #a7723a07e2a8f04 a{color: rgba(14, 60, 208, 1);}#ac486a8081ad3df , #ac486a8081ad3df a{color: rgba(14, 60, 208, 1);}#a4b9ba1f2aa1263 , #a4b9ba1f2aa1263 a{color: rgba(14, 60, 208, 1);}#a1ec9a3532a5931 , #a1ec9a3532a5931 a{color: rgba(14, 60, 208, 1);}#ac517a265fa3300 a {background-color: rgba(44, 44, 44, 1);
        font-weight: bold;
        font-style: normal;
    font-size: 20px;text-align: center;font-family: inherit;}#ac517a265fa3300 a:hover {
                background-image: linear-gradient(90deg,
                rgba(211, 20, 20, 1),
                rgba(137, 118, 233, 1));
            }#aef28a8d13ae4b9 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(44, 44, 44, 1);border-right-style: dashed;border-left-color: rgba(44, 44, 44, 1);border-bottom-color: rgba(44, 44, 44, 1);border-top-color: rgba(44, 44, 44, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#a9025a7010a7c6b .img-wrap {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#a7bd3add22acc8c a {background-color: rgba(10, 190, 175, 1);
        font-weight: bold;
        font-style: normal;
    font-size: 20px;text-align: center;font-family: inherit;}#a7bd3add22acc8c a:hover {
                background-image: linear-gradient(90deg,
                rgba(211, 20, 20, 1),
                rgba(137, 118, 233, 1));
            }#abd29a7952abf25 a {background-color: rgba(255, 140, 35, 1);
        font-weight: bold;
        font-style: normal;
    font-size: 20px;text-align: center;font-family: inherit;}#abd29a7952abf25 a:hover {
                background-image: linear-gradient(90deg,
                rgba(211, 20, 20, 1),
                rgba(137, 118, 233, 1));
            }#aaa47ae3b5a057d a {background-color: rgba(65, 117, 5, 1);
        font-weight: bold;
        font-style: normal;
    font-size: 20px;text-align: center;font-family: inherit;}#aaa47ae3b5a057d a:hover {
                background-image: linear-gradient(90deg,
                rgba(211, 20, 20, 1),
                rgba(137, 118, 233, 1));
            }#ac212a7e5ca584d a {background-color: rgba(230, 65, 85, 1);
        font-weight: bold;
        font-style: normal;
    font-size: 20px;text-align: center;font-family: inherit;}#ac212a7e5ca584d a:hover {
                background-image: linear-gradient(90deg,
                rgba(211, 20, 20, 1),
                rgba(137, 118, 233, 1));
            }#ac6baad7aaa8402 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(44, 44, 44, 1);border-right-style: dashed;border-left-color: rgba(44, 44, 44, 1);border-bottom-color: rgba(44, 44, 44, 1);border-top-color: rgba(44, 44, 44, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#a4d25acf95a85a3 .img-wrap {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#a6990ad0c6a267c > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(44, 44, 44, 1);border-right-style: dashed;border-left-color: rgba(44, 44, 44, 1);border-bottom-color: rgba(44, 44, 44, 1);border-top-color: rgba(44, 44, 44, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#aa131a54f9a4ef8 .img-wrap {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#a0179a9c34a1eb5 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(44, 44, 44, 1);border-right-style: dashed;border-left-color: rgba(44, 44, 44, 1);border-bottom-color: rgba(44, 44, 44, 1);border-top-color: rgba(44, 44, 44, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#a8adea784da2c7f .img-wrap {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#a8595a9f03ae122 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(44, 44, 44, 1);border-right-style: dashed;border-left-color: rgba(44, 44, 44, 1);border-bottom-color: rgba(44, 44, 44, 1);border-top-color: rgba(44, 44, 44, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#ad34baaf7caee3a .img-wrap {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#a6c84a06f4a60d3 > .ele-wrap {border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-left-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);border-top-color: rgba(226, 226, 226, 1);}#a640aad028a7763 a, #a640aad028a7763 {
        font-weight: normal;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#ac24eab291ab6a7 a, #ac24eab291ab6a7 {
        font-weight: normal;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#a4eccadf2eac71f {
  /* 修复吸顶导航宽度被写死的问题 */
}
#a4eccadf2eac71f .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a4eccadf2eac71f .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a11dea1330a54b7 > .ele-wrap {border-left-width: 1px;border-right-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: none;border-top-style: none;border-left-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);}#afcc3a5ae4a3e6c .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #afcc3a5ae4a3e6c .uk-position-center-left-out {
    left: -30px;
  }
  #afcc3a5ae4a3e6c .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#a7692a2023a6a8e > .ele-wrap {border-bottom-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa910abb2da9a0a > .ele-wrap {background-color: rgba(176, 209, 247, 1);background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1652338178605.jpeg);background-size: auto;background-repeat: no-repeat;background-position: center center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ade2aa10e4a572c .ele-wrap {color: #444444;font-size: 20px;border-radius: 5px;justify-content: center;border-style: dotted;border-width: 2px;border-color: rgba(221, 221, 221, 0.8666666666666667);font-weight: 700;}#ade2aa10e4a572c .ele-wrap:hover {background-color: rgba(0, 162, 232, 1);color: #ffffff;border-color: rgba(0, 162, 232, 1);}#a85d5acddaac217 .ele-wrap {color: #444444;font-size: 20px;border-radius: 5px;justify-content: center;border-style: dotted;border-width: 2px;border-color: rgba(221, 221, 221, 0.8666666666666667);font-weight: 700;}#a85d5acddaac217 .ele-wrap:hover {background-color: rgba(0, 162, 232, 1);color: #ffffff;border-color: rgba(0, 162, 232, 1);}#ae4fca9df6aad65 .ele-wrap {color: #444444;font-size: 20px;border-radius: 5px;justify-content: center;border-style: dotted;border-width: 2px;border-color: rgba(221, 221, 221, 0.8666666666666667);font-weight: 700;}#ae4fca9df6aad65 .ele-wrap:hover {background-color: rgba(0, 162, 232, 1);color: #ffffff;border-color: rgba(0, 162, 232, 1);}#a9890a1fccaac9a .ele-wrap {color: #444444;font-size: 20px;border-radius: 5px;justify-content: center;border-style: dotted;border-width: 2px;border-color: rgba(221, 221, 221, 0.8666666666666667);font-weight: 700;}#a9890a1fccaac9a .ele-wrap:hover {background-color: rgba(0, 162, 232, 1);color: #ffffff;border-color: rgba(0, 162, 232, 1);}#a899ea4e3fafd22 .ele-wrap {color: #444444;font-size: 20px;border-radius: 5px;justify-content: center;border-style: dotted;border-width: 2px;border-color: rgba(221, 221, 221, 0.8666666666666667);font-weight: 700;}#a899ea4e3fafd22 .ele-wrap:hover {background-color: rgba(0, 162, 232, 1);color: #ffffff;border-color: rgba(0, 162, 232, 1);}#a0af1a50a5aa856 > .ele-wrap {border-bottom-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a79c8a987ea9909 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a79c8a987ea9909 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a79c8a987ea9909 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a79c8a987ea9909 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a79c8a987ea9909 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a79c8a987ea9909 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a79c8a987ea9909 .ele-article-list .pic-article .img_wrap .tag {
  display: inline-block;
  padding: 0 .5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: .6rem;
  text-align: center;
  border-radius: 1rem;
  margin: 0 5px 5px 0;
}
#a79c8a987ea9909 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a79c8a987ea9909 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a79c8a987ea9909 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a79c8a987ea9909 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a79c8a987ea9909 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a79c8a987ea9909 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a79c8a987ea9909 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a79c8a987ea9909 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a79c8a987ea9909 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a79c8a987ea9909 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a79c8a987ea9909 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a79c8a987ea9909 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a79c8a987ea9909 .ele-article-list .text-article h3 a:hover {
  text-decoration: underline;
  color: #222;
}
/* mobile */
@media (max-width: 640px) {
  .ele-article-list .pic-article {
    padding: 10px 0;
  }
  .ele-article-list .pic-article .img_wrap {
    margin-right: 10px;
  }
  .ele-article-list .pic-article .img_wrap .tag {
    display: none;
  }
  .ele-article-list .pic-article .info {
    font-size: 12px;
  }
  .ele-article-list .pic-article .abstract {
    display: none;
  }
  .ele-article-list .pic-article .info h3 {
    font-size: 14px;
  }
}
#a79c8a987ea9909 .ele-article-list .pic-article {
  border-bottom: 1px dotted #e2e2e2;
}
#a79c8a987ea9909 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a79c8a987ea9909 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a79c8a987ea9909 .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a79c8a987ea9909 .ele-article-list .pic-article:hover {
  background-color: rgba(0, 0, 0, 0);
  border-bottom-color: #f6f6f6;
}
#a79c8a987ea9909 .ele-article-list .pic-article:hover .info h3 a {
  color: #009adc;
}
#a79c8a987ea9909 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a79c8a987ea9909 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a79c8a987ea9909 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a79c8a987ea9909 .ele-article-list .text-article {
  border-bottom: 1px dotted #e2e2e2;
  padding-top: 10px;
  padding-bottom: 10px;
}
#a79c8a987ea9909 .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a79c8a987ea9909 .ele-article-list .text-article:hover {
  background-color: rgba(0, 0, 0, 0);
  border-bottom-color: #f6f6f6;
}
#a79c8a987ea9909 .ele-article-list .text-article:hover .info h3 a {
  color: #009adc;
}
#a79c8a987ea9909 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a14c5ae654adf30 .dynamic-list-item {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #e2e2e2;
}
#a14c5ae654adf30 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a14c5ae654adf30 .uk-position-center-left-out {
    left: -30px;
  }
  #a14c5ae654adf30 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#afd1aa98b8a1e65 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a044fa6dafa1818 .uk-grid {
  margin-left: -15px;
}
#a044fa6dafa1818 .uk-grid > * {
  padding-left: 15px;
}
#a044fa6dafa1818 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a044fa6dafa1818 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a044fa6dafa1818 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a044fa6dafa1818 .article .info {
  padding: 8px 8px;
  position: relative;
}
#a044fa6dafa1818 .article .info p {
  margin: 10px 0 10px;
}
#a044fa6dafa1818 .article svg {
  fill: currentColor;
}
#a044fa6dafa1818 .article .btn_icon {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#a044fa6dafa1818 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#a044fa6dafa1818 .article.list-icon .info {
  padding-left: 25px;
}
#a044fa6dafa1818 .article .datetime {
  position: absolute;
  right: 8px;
  top: 8px;
}
#a044fa6dafa1818 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a044fa6dafa1818 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a044fa6dafa1818 .article:hover .title {
  color: #009adc;
}
#a044fa6dafa1818 .article:hover .datetime {
  color: #009adc;
}
#a044fa6dafa1818 .article:hover .category {
  color: #b6b6b6;
}
#a044fa6dafa1818 .article:hover .abstract {
  color: #b6b6b6;
}
#a044fa6dafa1818 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a044fa6dafa1818 .article:hover .list_icon {
  color: #009adc;
}
#ae596a6639aa66c > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a4773a9ee9a0bc1 .uk-grid {
  margin-left: -15px;
}
#a4773a9ee9a0bc1 .uk-grid > * {
  padding-left: 15px;
}
#a4773a9ee9a0bc1 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a4773a9ee9a0bc1 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a4773a9ee9a0bc1 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a4773a9ee9a0bc1 .article .info {
  padding: 8px 8px;
  position: relative;
}
#a4773a9ee9a0bc1 .article .info p {
  margin: 10px 0 10px;
}
#a4773a9ee9a0bc1 .article svg {
  fill: currentColor;
}
#a4773a9ee9a0bc1 .article .btn_icon {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 20px;
  color: #b4b4b4;
}
#a4773a9ee9a0bc1 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 8px;
  color: #b4b4b4;
}
#a4773a9ee9a0bc1 .article.list-icon .info {
  padding-left: 25px;
}
#a4773a9ee9a0bc1 .article .datetime {
  position: absolute;
  right: 8px;
  top: 8px;
}
#a4773a9ee9a0bc1 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a4773a9ee9a0bc1 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a4773a9ee9a0bc1 .article:hover .title {
  color: #009adc;
}
#a4773a9ee9a0bc1 .article:hover .datetime {
  color: #009adc;
}
#a4773a9ee9a0bc1 .article:hover .category {
  color: #b6b6b6;
}
#a4773a9ee9a0bc1 .article:hover .abstract {
  color: #b6b6b6;
}
#a4773a9ee9a0bc1 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a4773a9ee9a0bc1 .article:hover .list_icon {
  color: #009adc;
}
#ae3a8a16e8ac240 > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1652341437314.png);background-size: auto;background-repeat: no-repeat;background-position: center right;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#aa830a68c4ac958 .ele-wrap {border-width: 0px;border-style: none;background-color: transparent;border-radius: 25px;font-size: 14px;justify-content: flex-end;}#aa830a68c4ac958 .ele-wrap:hover {background-color: #fff;color: #ffffff;background-color: rgba(0, 0, 0, 0);}#a6e26a59b2a4882 > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1652341437314.png);background-size: auto;background-repeat: no-repeat;background-position: center right;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a03cca5dcfae8eb .ele-wrap {border-width: 0px;border-style: none;background-color: transparent;border-radius: 25px;font-size: 14px;justify-content: flex-end;}#a03cca5dcfae8eb .ele-wrap:hover {background-color: #fff;color: #ffffff;background-color: rgba(0, 0, 0, 0);}#a0a4da552fa8ee2 > .ele-wrap {border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a94b8a77f1af12a > .ele-wrap {background-color: rgba(245, 247, 250, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-style: none;border-right-style: none;border-left-style: none;border-top-style: none;}#a94b8a77f1af12a  > .ele-wrap:hover {border-top-width: 0px;border-top-style: none;border-bottom-color: rgba(1, 100, 255, 1);border-right-width: 0px;border-left-width: 0px;border-bottom-width: 3px;border-right-style: none;border-left-style: none;border-bottom-style: solid;}#a0ecfa25dead48d > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1653372403234.jpeg);background-position: center center;background-size: cover;background-repeat: no-repeat;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#abba6a1290ad57d > .ele-wrap {background-color: rgba(245, 247, 250, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-style: none;border-right-style: none;border-left-style: none;border-top-style: none;}#abba6a1290ad57d  > .ele-wrap:hover {border-top-color: rgba(19, 97, 225, 1);border-top-width: 0px;border-top-style: none;border-bottom-color: rgba(1, 100, 255, 1);border-right-width: 0px;border-left-width: 0px;border-bottom-width: 3px;border-right-style: none;border-left-style: none;border-bottom-style: solid;}#a58dfae1eba6668 > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1653132132423.jpeg);background-position: center center;background-size: contain;background-repeat: no-repeat;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#a907ba3090a8568 > .ele-wrap {background-color: rgba(245, 247, 250, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-style: none;border-right-style: none;border-left-style: none;border-top-style: none;}#a907ba3090a8568  > .ele-wrap:hover {border-top-width: 0px;border-top-style: none;border-bottom-color: rgba(1, 100, 255, 1);border-right-width: 0px;border-left-width: 0px;border-bottom-width: 3px;border-right-style: none;border-left-style: none;border-bottom-style: solid;}#ac494a0ee8a399e > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1653093406845.jpeg);background-position: center center;background-size: contain;background-repeat: no-repeat;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#ac3d0a13b0adf08 > .ele-wrap {background-color: rgba(245, 247, 250, 1);border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-bottom-style: none;border-right-style: none;border-left-style: none;border-top-style: none;}#ac3d0a13b0adf08  > .ele-wrap:hover {border-top-color: rgba(19, 97, 225, 1);border-top-width: 0px;border-top-style: none;border-bottom-color: rgba(1, 100, 255, 1);border-right-width: 0px;border-left-width: 0px;border-bottom-width: 3px;border-right-style: none;border-left-style: none;border-bottom-style: solid;}#a34c1aa0fda69d3 > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1653132387817.jpeg);background-position: center center;background-size: cover;background-repeat: no-repeat;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;}#abab5a1f8ea3e17 .uk-grid {
  margin-left: -15px;
}
#abab5a1f8ea3e17 .uk-grid > * {
  padding-left: 15px;
}
#abab5a1f8ea3e17 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#abab5a1f8ea3e17 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#abab5a1f8ea3e17 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#abab5a1f8ea3e17 .article .info {
  padding: 20px 10px;
  position: relative;
}
#abab5a1f8ea3e17 .article .info p {
  margin: 10px 0 10px;
}
#abab5a1f8ea3e17 .article svg {
  fill: currentColor;
}
#abab5a1f8ea3e17 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#abab5a1f8ea3e17 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#abab5a1f8ea3e17 .article.list-icon .info {
  padding-left: 25px;
}
#abab5a1f8ea3e17 .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#abab5a1f8ea3e17 .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
}
#abab5a1f8ea3e17 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#abab5a1f8ea3e17 .article:hover .title {
  color: #0164ff;
}
#abab5a1f8ea3e17 .article:hover .datetime {
  color: #b6b6b6;
}
#abab5a1f8ea3e17 .article:hover .category {
  color: #b6b6b6;
}
#abab5a1f8ea3e17 .article:hover .abstract {
  color: #0164ff;
}
#abab5a1f8ea3e17 .article:hover .btn_icon {
  color: #b6b6b6;
}
#abab5a1f8ea3e17 .article:hover .list_icon {
  color: #0164ff;
}
#a0664a69e1ad561 > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1652341437314.png);background-size: auto;background-repeat: no-repeat;background-position: center right;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a3b3fa2c53a432c .ele-wrap {border-width: 0px;border-style: none;background-color: transparent;border-radius: 25px;font-size: 14px;justify-content: flex-end;}#a3b3fa2c53a432c .ele-wrap:hover {background-color: #fff;color: #009adc;background-color: rgba(0, 0, 0, 0);}#a94f2a012eac686 .uk-grid {
  margin-left: -15px;
}
#a94f2a012eac686 .uk-grid > * {
  padding-left: 15px;
}
#a94f2a012eac686 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a94f2a012eac686 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a94f2a012eac686 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a94f2a012eac686 .article .info {
  padding: 18px 10px;
  position: relative;
}
#a94f2a012eac686 .article .info p {
  margin: 10px 0 10px;
}
#a94f2a012eac686 .article svg {
  fill: currentColor;
}
#a94f2a012eac686 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 18px;
  width: 20px;
  color: #b4b4b4;
}
#a94f2a012eac686 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 18px;
  color: #b4b4b4;
}
#a94f2a012eac686 .article.list-icon .info {
  padding-left: 25px;
}
#a94f2a012eac686 .article .datetime {
  position: absolute;
  right: 10px;
  top: 18px;
}
#a94f2a012eac686 .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
}
#a94f2a012eac686 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a94f2a012eac686 .article:hover .title {
  color: #0164ff;
}
#a94f2a012eac686 .article:hover .datetime {
  color: #b6b6b6;
}
#a94f2a012eac686 .article:hover .category {
  color: #b6b6b6;
}
#a94f2a012eac686 .article:hover .abstract {
  color: #0164ff;
}
#a94f2a012eac686 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a94f2a012eac686 .article:hover .list_icon {
  color: #0164ff;
}
#a0d24aa84aa4039 > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1652341437314.png);background-size: auto;background-repeat: no-repeat;background-position: center right;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a2880a1a6da313b .ele-wrap {border-width: 0px;border-style: none;background-color: transparent;border-radius: 25px;font-size: 14px;justify-content: flex-end;}#a2880a1a6da313b .ele-wrap:hover {background-color: #fff;color: #009adc;background-color: rgba(0, 0, 0, 0);}#a593ba532eaf10d .uk-grid {
  margin-left: -15px;
}
#a593ba532eaf10d .uk-grid > * {
  padding-left: 15px;
}
#a593ba532eaf10d .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a593ba532eaf10d .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a593ba532eaf10d .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a593ba532eaf10d .article .info {
  padding: 18px 10px;
  position: relative;
}
#a593ba532eaf10d .article .info p {
  margin: 10px 0 10px;
}
#a593ba532eaf10d .article svg {
  fill: currentColor;
}
#a593ba532eaf10d .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 18px;
  width: 20px;
  color: #b4b4b4;
}
#a593ba532eaf10d .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 18px;
  color: #b4b4b4;
}
#a593ba532eaf10d .article.list-icon .info {
  padding-left: 25px;
}
#a593ba532eaf10d .article .datetime {
  position: absolute;
  right: 10px;
  top: 18px;
}
#a593ba532eaf10d .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
}
#a593ba532eaf10d .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a593ba532eaf10d .article:hover .title {
  color: #0164ff;
}
#a593ba532eaf10d .article:hover .datetime {
  color: #b6b6b6;
}
#a593ba532eaf10d .article:hover .category {
  color: #b6b6b6;
}
#a593ba532eaf10d .article:hover .abstract {
  color: #0164ff;
}
#a593ba532eaf10d .article:hover .btn_icon {
  color: #b6b6b6;
}
#a593ba532eaf10d .article:hover .list_icon {
  color: #0164ff;
}
#a3567a7531a99bc > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1652341437314.png);background-size: auto;background-repeat: no-repeat;background-position: center right;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a18dea0aa7a9ff4 .ele-wrap {border-width: 0px;border-style: none;background-color: transparent;border-radius: 25px;font-size: 14px;justify-content: flex-end;}#a18dea0aa7a9ff4 .ele-wrap:hover {background-color: #fff;color: #009adc;background-color: rgba(0, 0, 0, 0);}#ae0a1ae49ead8a1 .uk-grid {
  margin-left: -15px;
}
#ae0a1ae49ead8a1 .uk-grid > * {
  padding-left: 15px;
}
#ae0a1ae49ead8a1 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#ae0a1ae49ead8a1 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#ae0a1ae49ead8a1 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#ae0a1ae49ead8a1 .article .info {
  padding: 18px 10px;
  position: relative;
}
#ae0a1ae49ead8a1 .article .info p {
  margin: 10px 0 10px;
}
#ae0a1ae49ead8a1 .article svg {
  fill: currentColor;
}
#ae0a1ae49ead8a1 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 18px;
  width: 20px;
  color: #b4b4b4;
}
#ae0a1ae49ead8a1 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 18px;
  color: #b4b4b4;
}
#ae0a1ae49ead8a1 .article.list-icon .info {
  padding-left: 25px;
}
#ae0a1ae49ead8a1 .article .datetime {
  position: absolute;
  right: 10px;
  top: 18px;
}
#ae0a1ae49ead8a1 .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
}
#ae0a1ae49ead8a1 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#ae0a1ae49ead8a1 .article:hover .title {
  color: #0164ff;
}
#ae0a1ae49ead8a1 .article:hover .datetime {
  color: #b6b6b6;
}
#ae0a1ae49ead8a1 .article:hover .category {
  color: #b6b6b6;
}
#ae0a1ae49ead8a1 .article:hover .abstract {
  color: #0164ff;
}
#ae0a1ae49ead8a1 .article:hover .btn_icon {
  color: #b6b6b6;
}
#ae0a1ae49ead8a1 .article:hover .list_icon {
  color: #0164ff;
}
#abb24a3320a4a9d > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1652341437314.png);background-size: auto;background-repeat: no-repeat;background-position: center right;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ab0f9a5b05a86ba .ele-wrap {border-width: 0px;border-style: none;background-color: transparent;border-radius: 25px;font-size: 14px;justify-content: flex-end;}#ab0f9a5b05a86ba .ele-wrap:hover {background-color: #fff;color: #009adc;background-color: rgba(0, 0, 0, 0);}#a248da5c80a9ce6 .uk-grid {
  margin-left: -15px;
}
#a248da5c80a9ce6 .uk-grid > * {
  padding-left: 15px;
}
#a248da5c80a9ce6 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a248da5c80a9ce6 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a248da5c80a9ce6 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a248da5c80a9ce6 .article .info {
  padding: 18px 10px;
  position: relative;
}
#a248da5c80a9ce6 .article .info p {
  margin: 10px 0 10px;
}
#a248da5c80a9ce6 .article svg {
  fill: currentColor;
}
#a248da5c80a9ce6 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 18px;
  width: 20px;
  color: #b4b4b4;
}
#a248da5c80a9ce6 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 18px;
  color: #b4b4b4;
}
#a248da5c80a9ce6 .article.list-icon .info {
  padding-left: 25px;
}
#a248da5c80a9ce6 .article .datetime {
  position: absolute;
  right: 10px;
  top: 18px;
}
#a248da5c80a9ce6 .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
}
#a248da5c80a9ce6 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a248da5c80a9ce6 .article:hover .title {
  color: #0164ff;
}
#a248da5c80a9ce6 .article:hover .datetime {
  color: #b6b6b6;
}
#a248da5c80a9ce6 .article:hover .category {
  color: #b6b6b6;
}
#a248da5c80a9ce6 .article:hover .abstract {
  color: #0164ff;
}
#a248da5c80a9ce6 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a248da5c80a9ce6 .article:hover .list_icon {
  color: #0164ff;
}
#ae76fa9fb5a39bd > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1652341437314.png);background-size: auto;background-repeat: no-repeat;background-position: center right;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0b06a370fa3b56 .ele-wrap {border-width: 0px;border-style: none;background-color: transparent;border-radius: 25px;font-size: 14px;justify-content: flex-end;}#a0b06a370fa3b56 .ele-wrap:hover {background-color: #fff;color: #009adc;background-color: rgba(0, 0, 0, 0);}#a75f7aaeaba70bc .uk-grid {
  margin-left: -15px;
}
#a75f7aaeaba70bc .uk-grid > * {
  padding-left: 15px;
}
#a75f7aaeaba70bc .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a75f7aaeaba70bc .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a75f7aaeaba70bc .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a75f7aaeaba70bc .article .info {
  padding: 20px 10px;
  position: relative;
}
#a75f7aaeaba70bc .article .info p {
  margin: 10px 0 10px;
}
#a75f7aaeaba70bc .article svg {
  fill: currentColor;
}
#a75f7aaeaba70bc .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#a75f7aaeaba70bc .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#a75f7aaeaba70bc .article.list-icon .info {
  padding-left: 25px;
}
#a75f7aaeaba70bc .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#a75f7aaeaba70bc .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
}
#a75f7aaeaba70bc .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a75f7aaeaba70bc .article:hover .title {
  color: #0164ff;
}
#a75f7aaeaba70bc .article:hover .datetime {
  color: #b6b6b6;
}
#a75f7aaeaba70bc .article:hover .category {
  color: #b6b6b6;
}
#a75f7aaeaba70bc .article:hover .abstract {
  color: #0164ff;
}
#a75f7aaeaba70bc .article:hover .btn_icon {
  color: #b6b6b6;
}
#a75f7aaeaba70bc .article:hover .list_icon {
  color: #0164ff;
}
#a966ea9322a4082 > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1652341437314.png);background-size: auto;background-repeat: no-repeat;background-position: center right;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac045ad2a6a3b9c .ele-wrap {border-width: 0px;border-style: none;background-color: transparent;border-radius: 25px;font-size: 14px;justify-content: flex-end;}#ac045ad2a6a3b9c .ele-wrap:hover {background-color: #fff;color: #009adc;background-color: rgba(0, 0, 0, 0);}#a5701a5195a9010 .uk-grid {
  margin-left: -15px;
}
#a5701a5195a9010 .uk-grid > * {
  padding-left: 15px;
}
#a5701a5195a9010 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a5701a5195a9010 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a5701a5195a9010 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a5701a5195a9010 .article .info {
  padding: 20px 10px;
  position: relative;
}
#a5701a5195a9010 .article .info p {
  margin: 10px 0 10px;
}
#a5701a5195a9010 .article svg {
  fill: currentColor;
}
#a5701a5195a9010 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#a5701a5195a9010 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#a5701a5195a9010 .article.list-icon .info {
  padding-left: 25px;
}
#a5701a5195a9010 .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#a5701a5195a9010 .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
}
#a5701a5195a9010 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a5701a5195a9010 .article:hover .title {
  color: #0164ff;
}
#a5701a5195a9010 .article:hover .datetime {
  color: #b6b6b6;
}
#a5701a5195a9010 .article:hover .category {
  color: #b6b6b6;
}
#a5701a5195a9010 .article:hover .abstract {
  color: #0164ff;
}
#a5701a5195a9010 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a5701a5195a9010 .article:hover .list_icon {
  color: #0164ff;
}
#afa91ad9e6ad6f5 > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1652341437314.png);background-size: auto;background-repeat: no-repeat;background-position: center right;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a0f68a1f82aba99 .ele-wrap {border-width: 0px;border-style: none;background-color: transparent;border-radius: 25px;font-size: 14px;justify-content: flex-end;}#a0f68a1f82aba99 .ele-wrap:hover {background-color: #fff;color: #009adc;background-color: rgba(0, 0, 0, 0);}#a88f5ab679af6b5 .uk-grid {
  margin-left: -15px;
}
#a88f5ab679af6b5 .uk-grid > * {
  padding-left: 15px;
}
#a88f5ab679af6b5 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a88f5ab679af6b5 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a88f5ab679af6b5 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a88f5ab679af6b5 .article .info {
  padding: 20px 10px;
  position: relative;
}
#a88f5ab679af6b5 .article .info p {
  margin: 10px 0 10px;
}
#a88f5ab679af6b5 .article svg {
  fill: currentColor;
}
#a88f5ab679af6b5 .article .btn_icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  width: 20px;
  color: #b4b4b4;
}
#a88f5ab679af6b5 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 20px;
  color: #b4b4b4;
}
#a88f5ab679af6b5 .article.list-icon .info {
  padding-left: 25px;
}
#a88f5ab679af6b5 .article .datetime {
  position: absolute;
  right: 10px;
  top: 20px;
}
#a88f5ab679af6b5 .article .title {
  font-weight: bold;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
  color: #4a4a4a;
}
#a88f5ab679af6b5 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a88f5ab679af6b5 .article:hover .title {
  color: #0164ff;
}
#a88f5ab679af6b5 .article:hover .datetime {
  color: #b6b6b6;
}
#a88f5ab679af6b5 .article:hover .category {
  color: #b6b6b6;
}
#a88f5ab679af6b5 .article:hover .abstract {
  color: #0164ff;
}
#a88f5ab679af6b5 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a88f5ab679af6b5 .article:hover .list_icon {
  color: #0164ff;
}
#ac9eaac69da2d60 > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1652341437314.png);background-size: auto;background-repeat: no-repeat;background-position: center right;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a4e9ea3d7da55e5 .ele-wrap {border-width: 0px;border-style: none;background-color: transparent;border-radius: 25px;font-size: 14px;justify-content: flex-end;}#a4e9ea3d7da55e5 .ele-wrap:hover {background-color: #fff;color: #009adc;background-color: rgba(0, 0, 0, 0);}#a3d8eac58eab43c {
  overflow: hidden;
  pointer-events: none;
  border-top-width: 0;
  border-top-style: none;
}
#a3d8eac58eab43c > .tab-tabs .tab-nav-prev {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 60px;
  background: #fff;
  text-align: center;
  font-size: 0;
  left: 0;
}
#a3d8eac58eab43c > .tab-tabs .tab-nav-prev span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(https://aipage-resource-gz.cdn.bcebos.com/sys/img/tab-arrow.svg);
  background-position: 96.77% 25%;
  background-size: initial;
}
#a3d8eac58eab43c > .tab-tabs .tab-nav-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a3d8eac58eab43c > .tab-tabs .tab-nav-next {
  display: none;
  position: absolute;
  top: 0;
  width: 59px;
  height: 60px;
  background: #fff;
  text-align: center;
  font-size: 0;
  right: 0;
}
#a3d8eac58eab43c > .tab-tabs .tab-nav-next span {
  display: inline-block;
  vertical-align: middle;
  width: 9px;
  height: 14px;
  background-repeat: no-repeat;
  background-image: url(https://aipage-resource-gz.cdn.bcebos.com/sys/img/tab-arrow.svg);
  background-position: 61.29% 25%;
  background-size: initial;
}
#a3d8eac58eab43c > .tab-tabs .tab-nav-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
#a3d8eac58eab43c > .tab-wrap > div > .tab-nav,
#a3d8eac58eab43c > .tab-nav,
#a3d8eac58eab43c > .tab-tabs > .tab-wrap > div > .tab-nav,
#a3d8eac58eab43c > .tab-tabs > .tab-nav {
  text-align: center;
  font-size: 0;
  border-top-width: 0;
  border-top-style: none;
  border-left-color: #0164ff;
  border-right-width: 0;
  border-left-width: 5px;
  border-bottom-width: 0;
  border-right-style: none;
  border-left-style: solid;
  border-bottom-style: none;
}
#a3d8eac58eab43c > .tab-wrap > div > .tab-nav-horizontal,
#a3d8eac58eab43c > .tab-nav-horizontal,
#a3d8eac58eab43c > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal,
#a3d8eac58eab43c > .tab-tabs > .tab-nav-horizontal {
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
#a3d8eac58eab43c > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a3d8eac58eab43c > .tab-nav-horizontal::-webkit-scrollbar,
#a3d8eac58eab43c > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal::-webkit-scrollbar,
#a3d8eac58eab43c > .tab-tabs > .tab-nav-horizontal::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
#a3d8eac58eab43c > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a3d8eac58eab43c > .tab-nav-horizontal.tagScroll,
#a3d8eac58eab43c > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll,
#a3d8eac58eab43c > .tab-tabs > .tab-nav-horizontal.tagScroll {
  white-space: nowrap;
  height: 60px;
  overflow-x: auto;
}
#a3d8eac58eab43c > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a3d8eac58eab43c > .tab-nav-horizontal.tagScroll li a,
#a3d8eac58eab43c > .tab-tabs > .tab-wrap > div > .tab-nav-horizontal.tagScroll li a,
#a3d8eac58eab43c > .tab-tabs > .tab-nav-horizontal.tagScroll li a {
  margin-top: 0;
}
#a3d8eac58eab43c > .tab-wrap > div > .tab-nav a,
#a3d8eac58eab43c > .tab-nav a,
#a3d8eac58eab43c > .tab-tabs > .tab-wrap > div > .tab-nav a,
#a3d8eac58eab43c > .tab-tabs > .tab-nav a {
  padding: 0 50px;
}
#a3d8eac58eab43c > .tab-wrap > div > .tab-nav li a,
#a3d8eac58eab43c > .tab-nav li a,
#a3d8eac58eab43c > .tab-tabs > .tab-wrap > div > .tab-nav li a,
#a3d8eac58eab43c > .tab-tabs > .tab-nav li a {
  display: block;
  line-height: 59px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 60px;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: center;
  font-family: inherit;
  color: #4a4a4a;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 50px;
}
#a3d8eac58eab43c > .tab-wrap > div > .tab-nav li a svg,
#a3d8eac58eab43c > .tab-nav li a svg,
#a3d8eac58eab43c > .tab-tabs > .tab-wrap > div > .tab-nav li a svg,
#a3d8eac58eab43c > .tab-tabs > .tab-nav li a svg {
  fill: currentColor;
  height: 1em;
}
#a3d8eac58eab43c > .tab-wrap > div > .tab-nav li a .ap_icon,
#a3d8eac58eab43c > .tab-nav li a .ap_icon,
#a3d8eac58eab43c > .tab-tabs > .tab-wrap > div > .tab-nav li a .ap_icon,
#a3d8eac58eab43c > .tab-tabs > .tab-nav li a .ap_icon {
  height: 1em;
  margin-right: 4px;
  display: inline-block;
}
#a3d8eac58eab43c > .tab-wrap > div > .tab-nav li a:hover,
#a3d8eac58eab43c > .tab-nav li a:hover,
#a3d8eac58eab43c > .tab-tabs > .tab-wrap > div > .tab-nav li a:hover,
#a3d8eac58eab43c > .tab-tabs > .tab-nav li a:hover {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #0164ff;
}
#a3d8eac58eab43c > .tab-wrap > div > .tab-nav li.uk-active a,
#a3d8eac58eab43c > .tab-nav li.uk-active a,
#a3d8eac58eab43c > .tab-tabs > .tab-wrap > div > .tab-nav li.uk-active a,
#a3d8eac58eab43c > .tab-tabs > .tab-nav li.uk-active a {
  background-color: rgba(0, 0, 0, 0);
  background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1652345937682.png);
  font-weight: bold;
  font-style: normal;
  font-family: inherit;
  color: #0164ff;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e2e2e2;
  border-bottom-color: #e2e2e2;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-left-width: 0;
  border-left-style: none;
}
#a3d8eac58eab43c .layout-left li,
#a3d8eac58eab43c .layout-center li,
#a3d8eac58eab43c .layout-right li {
  display: inline-block;
  padding: 0;
  text-align: center;
  height: 100%;
}
#a3d8eac58eab43c .layout-left li a,
#a3d8eac58eab43c .layout-center li a,
#a3d8eac58eab43c .layout-right li a {
  height: 100%;
}
#a3d8eac58eab43c > .tab-tabs .layout-left {
  text-align: left;
}
#a3d8eac58eab43c > .tab-tabs .layout-center {
  text-align: center;
}
#a3d8eac58eab43c > .tab-tabs .layout-right {
  text-align: right;
}
#a3d8eac58eab43c .tab-contents {
  height: 100%;
  height: calc(100% - 60px);
}
#a3d8eac58eab43c .tab-content-wrap {
  background-color: rgba(249, 245, 245, 0);
}
#a3d8eac58eab43c .tab-contents,
#a3d8eac58eab43c .tab-contents-wrap {
  pointer-events: none;
}
#a3d8eac58eab43c .tab-content,
#a3d8eac58eab43c .tab-content-wrap {
  height: 100%;
  width: 100%;
}
#a3d8eac58eab43c .tab-wrap {
  height: 100%;
  pointer-events: none;
}
#a3d8eac58eab43c .tab-wrap .tab-contents {
  height: 100%;
}
#a3d8eac58eab43c .tab-wrap > div {
  height: 100%;
  overflow-y: auto;
}
#a3d8eac58eab43c .tab-wrap.child-reverse > :first-child {
  order: 1;
}
#a3d8eac58eab43c .tab-wrap.child-reverse > :last-child {
  order: -1;
}
#a00d3ab504acbe0 > .ele-wrap {background-color: rgba(0, 0, 0, 0.2);background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1653132884106.jpeg);background-size: cover;background-repeat: no-repeat;background-position: center center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a75e2a3cd2af826 > .ele-wrap {
                background-image: linear-gradient(180deg,
                rgba(0, 0, 0, 0),
                rgba(1, 100, 255, 0.5));
            border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a75e2a3cd2af826  > .ele-wrap:hover {
                background-image: linear-gradient(180deg,
                transparent,
                rgba(1, 100, 255, 1));
            }#ae958a21d0a3f99 .ele-wrap {border-color: rgba(1, 100, 255, 1);color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(1, 100, 255, 1);border-radius: 5px;justify-content: center;border-style: solid;}#ae958a21d0a3f99 .ele-wrap:hover {background-color: #0483cc;}#a0f2ca11c2a56c5 > .ele-wrap {background-color: rgba(0, 0, 0, 0.2);background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1653096990446.jpeg);background-size: cover;background-repeat: no-repeat;background-position: center center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#afc77a52d8a1c25 > .ele-wrap {
                background-image: linear-gradient(180deg,
                rgba(0, 0, 0, 0),
                rgba(1, 100, 255, 0.5));
            border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#afc77a52d8a1c25  > .ele-wrap:hover {
                background-image: linear-gradient(180deg,
                transparent,
                rgba(1, 100, 255, 1));
            }#a5b21a0735ab0df .ele-wrap {border-color: rgba(1, 100, 255, 1);color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(1, 100, 255, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a5b21a0735ab0df .ele-wrap:hover {background-color: #0483cc;}#af57eac1a5a4550 > .ele-wrap {background-color: rgba(0, 0, 0, 0.2);background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1652347641830.jpeg);background-size: cover;background-repeat: no-repeat;background-position: center center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abbf4aaf6ca492b > .ele-wrap {
                background-image: linear-gradient(180deg,
                rgba(0, 0, 0, 0),
                rgba(1, 100, 255, 0.5));
            border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abbf4aaf6ca492b  > .ele-wrap:hover {
                background-image: linear-gradient(180deg,
                transparent,
                rgba(1, 100, 255, 1));
            }#a1df1a5560a5743 .ele-wrap {border-color: rgba(1, 100, 255, 1);color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(1, 100, 255, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a1df1a5560a5743 .ele-wrap:hover {background-color: #0483cc;}#a2f73a1a1ca7146 > .ele-wrap {background-color: rgba(0, 0, 0, 0.2);background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1653132823588.jpeg);background-size: cover;background-repeat: no-repeat;background-position: center center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a28f7a6d5ba6814 > .ele-wrap {
                background-image: linear-gradient(180deg,
                rgba(0, 0, 0, 0),
                rgba(1, 100, 255, 0.5));
            border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a28f7a6d5ba6814  > .ele-wrap:hover {
                background-image: linear-gradient(180deg,
                transparent,
                rgba(1, 100, 255, 1));
            }#a6db1a01d8a50c4 .ele-wrap {border-color: rgba(1, 100, 255, 1);color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(1, 100, 255, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a6db1a01d8a50c4 .ele-wrap:hover {background-color: #0483cc;}#a7320ac850a7ae3 > .ele-wrap {background-color: rgba(0, 0, 0, 0.2);background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1653132819306.jpeg);background-size: cover;background-repeat: no-repeat;background-position: center center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a00b3a15b7a47d9 > .ele-wrap {
                background-image: linear-gradient(180deg,
                rgba(0, 0, 0, 0),
                rgba(1, 100, 255, 0.5));
            border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#a00b3a15b7a47d9  > .ele-wrap:hover {
                background-image: linear-gradient(180deg,
                transparent,
                rgba(1, 100, 255, 1));
            }#a7424a12d0aab65 .ele-wrap {border-color: rgba(1, 100, 255, 1);color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(1, 100, 255, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a7424a12d0aab65 .ele-wrap:hover {background-color: #0483cc;}#a71edaa6e9a6faa > .ele-wrap {background-color: rgba(0, 0, 0, 0.2);background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1653373001918.jpeg);background-size: cover;background-repeat: no-repeat;background-position: center center;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ab12da9fafa9a24 > .ele-wrap {
                background-image: linear-gradient(180deg,
                rgba(0, 0, 0, 0),
                rgba(1, 100, 255, 0.5));
            border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ab12da9fafa9a24  > .ele-wrap:hover {
                background-image: linear-gradient(180deg,
                transparent,
                rgba(1, 100, 255, 1));
            }#a8699a6b36a9859 .ele-wrap {border-color: rgba(1, 100, 255, 1);color: #fff;font-size: 16px;font-weight: 500;background-color: rgba(1, 100, 255, 1);border-radius: 5px;justify-content: center;border-style: solid;}#a8699a6b36a9859 .ele-wrap:hover {background-color: #0483cc;}#adf60ac5c5a1f2e {background-color: rgba(0,0,0,0.7);}#adf60ac5c5a1f2e > .lightbox-content {border-top-left-radius: 75px;border-bottom-right-radius: 75px;border-top-right-radius: 75px;border-bottom-left-radius: 75px;}#a7e82ad5c3a5a1d {
  /* 修复吸顶导航宽度被写死的问题 */
}
#a7e82ad5c3a5a1d .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a7e82ad5c3a5a1d .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a3d37a7a22a009f form {
  width: 100%;
  height: 100%;
}
#a3d37a7a22a009f .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#a3d37a7a22a009f .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;
}
#a3d37a7a22a009f .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#a3d37a7a22a009f .search-box .search-type.show {
  display: block;
}
#a3d37a7a22a009f .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#a3d37a7a22a009f .search-box .search-type li:hover {
  color: #4a4a4a;
}
#a3d37a7a22a009f .search-box .search-type li.active {
  color: #4a4a4a;
}
#a3d37a7a22a009f .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#a3d37a7a22a009f .inner-form .input-field {
  height: 100%;
}
#a3d37a7a22a009f .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;
}
#a3d37a7a22a009f .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#a3d37a7a22a009f .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#a3d37a7a22a009f .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#a3d37a7a22a009f .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#a3d37a7a22a009f .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;
}
#a3d37a7a22a009f .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#a3d37a7a22a009f .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#a3d37a7a22a009f .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#a3d37a7a22a009f .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#a3d37a7a22a009f .btn-search:hover {
  background: #4a4a4a;
}
#a3d37a7a22a009f .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a4a13ab481a5a60 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a4a13ab481a5a60 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a4a13ab481a5a60 .ap-icon {
  margin-right: 6px;
}
#a4a13ab481a5a60 .indicator {
  margin-left: 4px;
}
#a4a13ab481a5a60 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a4a13ab481a5a60 .menu-list li:hover > a,
#a4a13ab481a5a60 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.5);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a4a13ab481a5a60 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a4a13ab481a5a60 .menu-list ul,
#a4a13ab481a5a60 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a4a13ab481a5a60 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a4a13ab481a5a60 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a4a13ab481a5a60 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a4a13ab481a5a60 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#ab809a473cabb6d > .ele-wrap {border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-left-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);border-top-color: rgba(226, 226, 226, 1);}#ad927af652ac1cc > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1776391309244.png);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#ae9f6a2c5ba1284 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#ae9f6a2c5ba1284 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#ae9f6a2c5ba1284 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#ae9f6a2c5ba1284 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#ae9f6a2c5ba1284 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#ae9f6a2c5ba1284 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#ae9f6a2c5ba1284 .ele-article-list .pic-article .img_wrap .tag {
  display: inline-block;
  padding: 0 .5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: .6rem;
  text-align: center;
  border-radius: 1rem;
  margin: 0 5px 5px 0;
}
#ae9f6a2c5ba1284 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#ae9f6a2c5ba1284 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#ae9f6a2c5ba1284 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#ae9f6a2c5ba1284 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#ae9f6a2c5ba1284 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#ae9f6a2c5ba1284 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#ae9f6a2c5ba1284 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#ae9f6a2c5ba1284 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#ae9f6a2c5ba1284 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#ae9f6a2c5ba1284 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#ae9f6a2c5ba1284 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#ae9f6a2c5ba1284 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#ae9f6a2c5ba1284 .ele-article-list .text-article h3 a:hover {
  text-decoration: underline;
  color: #222;
}
/* mobile */
@media (max-width: 640px) {
  .ele-article-list .pic-article {
    padding: 10px 0;
  }
  .ele-article-list .pic-article .img_wrap {
    margin-right: 10px;
  }
  .ele-article-list .pic-article .img_wrap .tag {
    display: none;
  }
  .ele-article-list .pic-article .info {
    font-size: 12px;
  }
  .ele-article-list .pic-article .abstract {
    display: none;
  }
  .ele-article-list .pic-article .info h3 {
    font-size: 14px;
  }
}
#ae9f6a2c5ba1284 .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px dashed #ececec;
}
#ae9f6a2c5ba1284 .ele-article-list .pic-article .img_wrap {
  width: 10%;
  border-radius: 0px;
  overflow: hidden;
}
#ae9f6a2c5ba1284 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#ae9f6a2c5ba1284 .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#ae9f6a2c5ba1284 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#ae9f6a2c5ba1284 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#ae9f6a2c5ba1284 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#ae9f6a2c5ba1284 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#ae9f6a2c5ba1284 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#ae9f6a2c5ba1284 .ele-article-list .text-article {
  border-bottom: 1px dashed #ececec;
}
#ae9f6a2c5ba1284 .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#ae9f6a2c5ba1284 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#ae9f6a2c5ba1284 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#ae9f6a2c5ba1284 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a35afa74f4a3cc1 .dynamic-list-item:hover {
  background-color: auto;
}
/* mobile */
@media (max-width: 640px) {
  #a35afa74f4a3cc1 .uk-position-center-left-out {
    left: -30px;
  }
  #a35afa74f4a3cc1 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ac1fdaa34da3caa a, #ac1fdaa34da3caa {
        font-weight: normal;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#ab22ea555ba596c > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1776391309244.png);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#a5c18a1913a944a > .ele-wrap {background-color: rgba(0, 0, 0, 0);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ab897afc94a9c5c .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#ab897afc94a9c5c .img-wrap:hover {
  border-color: #4a90e2;
}
#ac7cbad162adcc6 , #ac7cbad162adcc6 a{color: rgba(255, 255, 255, 1);}#ac7cbad162adcc6:hover, #ac7cbad162adcc6 a:hover {color: rgba(204, 233, 252, 1);}#a797da5575a29ea .img-wrap {
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}
#abd36aeb42a915b > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a0f59a0407aefca .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a7648aeb1caa8d8 .img-wrap {
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}
#a1430ac187ae90e , #a1430ac187ae90e a{color: rgba(255, 255, 255, 1);}#a3ab0a29d0a70d2 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a3dd7ac114a1739 .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a9960a30a5ab794 , #a9960a30a5ab794 a{color: rgba(255, 255, 255, 1);}#af62ea8fdda9dce .img-wrap {
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
}
#a33eba9a89ab4da > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a23dfacf02a4036 .gallery-thumbnails .uk-thumbnav {
  justify-content: center;
}
#a23dfacf02a4036 .gallery-thumbnails .uk-thumbnav > * {
  padding-left: 8px;
}
#ada97a6ddda858f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a3de4a0b86aea25 .uk-grid {
  margin-left: -15px;
}
#a3de4a0b86aea25 .uk-grid > * {
  padding-left: 15px;
}
#a3de4a0b86aea25 .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a3de4a0b86aea25 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a3de4a0b86aea25 .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a3de4a0b86aea25 .article .info {
  padding: 6px 8px;
  position: relative;
}
#a3de4a0b86aea25 .article .info p {
  margin: 10px 0 10px;
}
#a3de4a0b86aea25 .article svg {
  fill: currentColor;
}
#a3de4a0b86aea25 .article .btn_icon {
  position: absolute;
  right: 8px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#a3de4a0b86aea25 .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#a3de4a0b86aea25 .article.list-icon .info {
  padding-left: 25px;
}
#a3de4a0b86aea25 .article .datetime {
  position: absolute;
  right: 8px;
  top: 6px;
}
#a3de4a0b86aea25 .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a3de4a0b86aea25 .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a3de4a0b86aea25 .article:hover .title {
  color: #009adc;
}
#a3de4a0b86aea25 .article:hover .datetime {
  color: #009adc;
}
#a3de4a0b86aea25 .article:hover .category {
  color: #b6b6b6;
}
#a3de4a0b86aea25 .article:hover .abstract {
  color: #b6b6b6;
}
#a3de4a0b86aea25 .article:hover .btn_icon {
  color: #b6b6b6;
}
#a3de4a0b86aea25 .article:hover .list_icon {
  color: #009adc;
}
#ac080a7690ad683 a, #ac080a7690ad683 {
        font-weight: normal;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#a095fae06aab2e6 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#a095fae06aab2e6 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a095fae06aab2e6 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a9788a2aceacde6 form {
  width: 100%;
  height: 100%;
}
#a9788a2aceacde6 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#a9788a2aceacde6 .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;
}
#a9788a2aceacde6 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#a9788a2aceacde6 .search-box .search-type.show {
  display: block;
}
#a9788a2aceacde6 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#a9788a2aceacde6 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#a9788a2aceacde6 .search-box .search-type li.active {
  color: #4a4a4a;
}
#a9788a2aceacde6 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#a9788a2aceacde6 .inner-form .input-field {
  height: 100%;
}
#a9788a2aceacde6 .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;
}
#a9788a2aceacde6 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#a9788a2aceacde6 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#a9788a2aceacde6 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#a9788a2aceacde6 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#a9788a2aceacde6 .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;
}
#a9788a2aceacde6 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#a9788a2aceacde6 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#a9788a2aceacde6 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#a9788a2aceacde6 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#a9788a2aceacde6 .btn-search:hover {
  background: #4a4a4a;
}
#a9788a2aceacde6 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a5c67ae4daa889c .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a5c67ae4daa889c .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a5c67ae4daa889c .ap-icon {
  margin-right: 6px;
}
#a5c67ae4daa889c .indicator {
  margin-left: 4px;
}
#a5c67ae4daa889c .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a5c67ae4daa889c .menu-list li:hover > a,
#a5c67ae4daa889c .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.5);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a5c67ae4daa889c .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a5c67ae4daa889c .menu-list ul,
#a5c67ae4daa889c .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #333;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a5c67ae4daa889c .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a5c67ae4daa889c .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a5c67ae4daa889c .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a5c67ae4daa889c .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a04fda1628ae1fd > .ele-wrap {border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-left-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);border-top-color: rgba(226, 226, 226, 1);}#ad1d2a5421aacbe > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1776391309244.png);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#a2c46afce0ad99f .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a2c46afce0ad99f .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a2c46afce0ad99f .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a2c46afce0ad99f .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a2c46afce0ad99f .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a2c46afce0ad99f .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a2c46afce0ad99f .ele-article-list .pic-article .img_wrap .tag {
  display: inline-block;
  padding: 0 .5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: .6rem;
  text-align: center;
  border-radius: 1rem;
  margin: 0 5px 5px 0;
}
#a2c46afce0ad99f .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a2c46afce0ad99f .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a2c46afce0ad99f .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a2c46afce0ad99f .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a2c46afce0ad99f .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a2c46afce0ad99f .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a2c46afce0ad99f .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a2c46afce0ad99f .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a2c46afce0ad99f .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a2c46afce0ad99f .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a2c46afce0ad99f .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a2c46afce0ad99f .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a2c46afce0ad99f .ele-article-list .text-article h3 a:hover {
  text-decoration: underline;
  color: #222;
}
/* mobile */
@media (max-width: 640px) {
  .ele-article-list .pic-article {
    padding: 10px 0;
  }
  .ele-article-list .pic-article .img_wrap {
    margin-right: 10px;
  }
  .ele-article-list .pic-article .img_wrap .tag {
    display: none;
  }
  .ele-article-list .pic-article .info {
    font-size: 12px;
  }
  .ele-article-list .pic-article .abstract {
    display: none;
  }
  .ele-article-list .pic-article .info h3 {
    font-size: 14px;
  }
}
#a2c46afce0ad99f .ele-article-list .pic-article {
  padding: 15px 0px;
  border-bottom: 1px dashed #ececec;
}
#a2c46afce0ad99f .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a2c46afce0ad99f .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a2c46afce0ad99f .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
}
#a2c46afce0ad99f .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a2c46afce0ad99f .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a2c46afce0ad99f .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a2c46afce0ad99f .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a2c46afce0ad99f .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a2c46afce0ad99f .ele-article-list .text-article {
  border-bottom: 1px dashed #ececec;
}
#a2c46afce0ad99f .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  font-family: inherit;
}
#a2c46afce0ad99f .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a2c46afce0ad99f .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a2c46afce0ad99f .ele-article-list .text-article:hover .time {
  color: auto;
}
#a4931af3c1af29f a, #a4931af3c1af29f {
        font-weight: normal;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#aaf2aa6282a313a > .ele-wrap {background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1776391309244.png);border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#ac1b9adb2eab77f > .ele-wrap {background-color: rgba(0, 0, 0, 0);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a4815ac161ae645 .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a4815ac161ae645 .img-wrap:hover {
  border-color: #4a90e2;
}
#ac2c4a0e35ab453 , #ac2c4a0e35ab453 a{color: rgba(255, 255, 255, 1);}#ac2c4a0e35ab453:hover, #ac2c4a0e35ab453 a:hover {color: rgba(204, 233, 252, 1);}#a9ecaad4a6a20c2 .img-wrap {
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}
#a24d7a987ea8782 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#ae84ca4388ae5ae .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#ae821a1e5ba54ef .img-wrap {
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}
#a0ec7a8a6da6cfe , #a0ec7a8a6da6cfe a{color: rgba(255, 255, 255, 1);}#aae51acab5a1385 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#af2eca0003a1733 .img-wrap {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#af3e3a2508afa77 , #af3e3a2508afa77 a{color: rgba(255, 255, 255, 1);}#a0fb2a9286aad4c .img-wrap {
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
}
#a4ad8a27a4ac510 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a5b71abfb1add66 .gallery-thumbnails .uk-thumbnav {
  justify-content: center;
}
#a5b71abfb1add66 .gallery-thumbnails .uk-thumbnav > * {
  padding-left: 8px;
}
#a161baf847a18c9 > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;border-top-left-radius: 10px;border-top-right-radius: 10px;box-shadow: 0px 0px 14px 2px rgba(0, 0, 0, 0.08);}#a6c17a6a61a110e .uk-grid {
  margin-left: -15px;
}
#a6c17a6a61a110e .uk-grid > * {
  padding-left: 15px;
}
#a6c17a6a61a110e .uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a6c17a6a61a110e .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a6c17a6a61a110e .article {
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  padding-right: 60px;
  margin-bottom: 0px;
  border-bottom-style: solid;
}
#a6c17a6a61a110e .article .info {
  padding: 6px 8px;
  position: relative;
}
#a6c17a6a61a110e .article .info p {
  margin: 10px 0 10px;
}
#a6c17a6a61a110e .article svg {
  fill: currentColor;
}
#a6c17a6a61a110e .article .btn_icon {
  position: absolute;
  right: 8px;
  bottom: 6px;
  width: 20px;
  color: #b4b4b4;
}
#a6c17a6a61a110e .article .list_icon {
  position: absolute;
  width: 12px;
  left: 6px;
  top: 6px;
  color: #b4b4b4;
}
#a6c17a6a61a110e .article.list-icon .info {
  padding-left: 25px;
}
#a6c17a6a61a110e .article .datetime {
  position: absolute;
  right: 8px;
  top: 6px;
}
#a6c17a6a61a110e .article .title {
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  font-family: inherit;
}
#a6c17a6a61a110e .article:hover {
  background-color: #fff;
  border-top: 1px solid auto;
}
#a6c17a6a61a110e .article:hover .title {
  color: #009adc;
}
#a6c17a6a61a110e .article:hover .datetime {
  color: #009adc;
}
#a6c17a6a61a110e .article:hover .category {
  color: #b6b6b6;
}
#a6c17a6a61a110e .article:hover .abstract {
  color: #b6b6b6;
}
#a6c17a6a61a110e .article:hover .btn_icon {
  color: #b6b6b6;
}
#a6c17a6a61a110e .article:hover .list_icon {
  color: #009adc;
}
#a6ea0abb20abc7e a, #a6ea0abb20abc7e {
        font-weight: normal;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#a82edae7d0a874b {
  /* 修复吸顶导航宽度被写死的问题 */
}
#a82edae7d0a874b .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#a82edae7d0a874b .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a004fa9f90a49f7 .form-agree {
  display: flex;
  align-items: center;
}
#a004fa9f90a49f7 .uk-form .form-submit-btn {
  width: 120px;
}
#a004fa9f90a49f7 .submit-wrap {
  text-align: center;
}
#a004fa9f90a49f7 .submit-wrap button {
  background-color: #0164ff;
}
#a004fa9f90a49f7 .submit-wrap button {
  font-size: 14px;
}
#a004fa9f90a49f7 .submit-wrap button {
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
#a004fa9f90a49f7 .uk-form.form-theme-1 {
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
#a004fa9f90a49f7 form {
  background-color: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 15px;
  padding-right: 20px;
}
#a004fa9f90a49f7 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a004fa9f90a49f7 .form-item {
  border: none;
  border-bottom: 1px solid #d9d9d9;
}
#a004fa9f90a49f7 .form-item .uk-input,
#a004fa9f90a49f7 .form-item .uk-select,
#a004fa9f90a49f7 .form-item .uk-textarea {
  border: none !important;
}
#a004fa9f90a49f7 .form-item {
  margin-top: nullpx !important;
  margin-bottom: nullpx !important;
}
#a004fa9f90a49f7 .form-item .uk-input,
#a004fa9f90a49f7 .form-item .uk-select,
#a004fa9f90a49f7 .form-item .uk-textarea {
  width: autopx;
  height: 50px;
  line-height: 50px;
  background-color: #fcfcfc;
}
#a004fa9f90a49f7 .form-item .auto-height {
  height: auto;
}
#a004fa9f90a49f7 .form-item .send-code {
  bottom: 5px;
}
#a004fa9f90a49f7 .form-item .uk-textarea {
  height: 100px;
  line-height: 1.5;
}
#a004fa9f90a49f7 .uk-form-label,
#a004fa9f90a49f7 .form-agree,
#a004fa9f90a49f7 .uk-h3,
#a004fa9f90a49f7 p {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a004fa9f90a49f7 .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border-bottom: 1px solid #e5e5e5;
}
#a004fa9f90a49f7 .form-item > label {
  flex: none;
}
#a004fa9f90a49f7 .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#a004fa9f90a49f7 .form-item .uk-input,
#a004fa9f90a49f7 .form-item .uk-select,
#a004fa9f90a49f7 .form-item .uk-textarea,
#a004fa9f90a49f7 .form-item .address-select,
#a004fa9f90a49f7 .form-item .uk-grid {
  border: none;
  flex: 1;
}
#a004fa9f90a49f7 .form-item .address-select .uk-select {
  padding-left: 4px;
}
#ace2aae7c2a5249 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#ace2aae7c2a5249 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ace2aae7c2a5249 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a72e7a928aaaaa8 .form-agree {
  display: flex;
  align-items: center;
}
#a72e7a928aaaaa8 .uk-form .form-submit-btn {
  width: 120px;
}
#a72e7a928aaaaa8 .submit-wrap {
  text-align: center;
}
#a72e7a928aaaaa8 .submit-wrap button {
  background-color: #0164ff;
}
#a72e7a928aaaaa8 .submit-wrap button {
  font-size: 14px;
}
#a72e7a928aaaaa8 .submit-wrap button {
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
#a72e7a928aaaaa8 .uk-form.form-theme-1 {
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
#a72e7a928aaaaa8 form {
  background-color: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 15px;
  padding-right: 20px;
}
#a72e7a928aaaaa8 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a72e7a928aaaaa8 .form-item {
  border: none;
  border-bottom: 1px solid #d9d9d9;
}
#a72e7a928aaaaa8 .form-item .uk-input,
#a72e7a928aaaaa8 .form-item .uk-select,
#a72e7a928aaaaa8 .form-item .uk-textarea {
  border: none !important;
}
#a72e7a928aaaaa8 .form-item {
  margin-top: nullpx !important;
  margin-bottom: nullpx !important;
}
#a72e7a928aaaaa8 .form-item .uk-input,
#a72e7a928aaaaa8 .form-item .uk-select,
#a72e7a928aaaaa8 .form-item .uk-textarea {
  width: autopx;
  height: 50px;
  line-height: 50px;
  background-color: #fcfcfc;
}
#a72e7a928aaaaa8 .form-item .auto-height {
  height: auto;
}
#a72e7a928aaaaa8 .form-item .send-code {
  bottom: 5px;
}
#a72e7a928aaaaa8 .form-item .uk-textarea {
  height: 100px;
  line-height: 1.5;
}
#a72e7a928aaaaa8 .uk-form-label,
#a72e7a928aaaaa8 .form-agree,
#a72e7a928aaaaa8 .uk-h3,
#a72e7a928aaaaa8 p {
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#a72e7a928aaaaa8 .form-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border-bottom: 1px solid #e5e5e5;
}
#a72e7a928aaaaa8 .form-item > label {
  flex: none;
}
#a72e7a928aaaaa8 .form-item .form-item-file .add-image {
  margin-left: 90px;
}
#a72e7a928aaaaa8 .form-item .uk-input,
#a72e7a928aaaaa8 .form-item .uk-select,
#a72e7a928aaaaa8 .form-item .uk-textarea,
#a72e7a928aaaaa8 .form-item .address-select,
#a72e7a928aaaaa8 .form-item .uk-grid {
  border: none;
  flex: 1;
}
#a72e7a928aaaaa8 .form-item .address-select .uk-select {
  padding-left: 4px;
}
#ae3b9a0c87ad913 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#ae3b9a0c87ad913 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ae3b9a0c87ad913 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a13aca906eab606 > .ele-wrap {background-color: rgba(244, 252, 254, 1);background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1652490173864.jpeg);background-position: top left;background-size: auto;background-repeat: no-repeat;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#ac87ca3447a834b .jquery-accordion-menu {
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
}
#ac87ca3447a834b .jquery-accordion-menu .jquery-accordion-menu-header {
  width: 100%;
  height: 50px;
  padding-left: 14px;
  font-size: 16px;
  line-height: 50px;
  font-weight: 600;
  color: #4a4a4a;
}
#ac87ca3447a834b .jquery-accordion-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#ac87ca3447a834b .jquery-accordion-menu ul li {
  width: 100%;
  display: block;
  position: relative;
}
#ac87ca3447a834b .jquery-accordion-menu ul li a {
  color: #4a4a4a;
  display: block;
  width: 100%;
  padding: 14px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -o-transition: color .2s linear,background .2s linear;
  -moz-transition: color .2s linear,background .2s linear;
  -webkit-transition: color .2s linear,background .2s linear;
  transition: color .2s linear,background .2s linear;
}
#ac87ca3447a834b .menu-list-expand .submenu-indicator {
  display: none;
}
#ac87ca3447a834b .jquery-accordion-menu > ul > li > a:hover {
  color: #fff;
  background: #e3e6e7;
  border-bottom-color: #d8dcde;
  background-color: #e3e6e7;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#ac87ca3447a834b .jquery-accordion-menu > ul > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  background-color: #e3e6e7;
}
#ac87ca3447a834b .jquery-accordion-menu ul li > a {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #e3e6e7;
}
#ac87ca3447a834b .jquery-accordion-menu > ul > li.active > a {
  color: #4a4a4a;
  background: #e3e6e7;
}
#ac87ca3447a834b .jquery-accordion-menu ul li a img,
#ac87ca3447a834b .jquery-accordion-menu ul li a svg {
  width: 14px;
  margin-right: 8px;
  margin-top: 4px;
  float: left;
  fill: currentColor;
  text-align: left;
}
#ac87ca3447a834b .jquery-accordion-menu .submenu-indicator {
  cursor: pointer;
  float: right;
  right: 14px;
  position: absolute;
  line-height: 19px;
  font-size: 20px;
  -o-transition: transform .3s linear;
  -moz-transition: transform .3s linear;
  -webkit-transition: transform .3s linear;
  -ms-transition: transform .3s linear;
}
#ac87ca3447a834b .jquery-accordion-menu ul ul.submenu .submenu-indicator {
  line-height: 16px;
}
#ac87ca3447a834b .jquery-accordion-menu .submenu-indicator-minus > .submenu-indicator {
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#ac87ca3447a834b .jquery-accordion-menu ul ul.submenu,
#ac87ca3447a834b .jquery-accordion-menu ul ul.submenu li ul.submenu {
  width: 100%;
  display: none;
  position: static;
}
#ac87ca3447a834b .jquery-accordion-menu.menu-list-expand ul ul.submenu,
#ac87ca3447a834b .jquery-accordion-menu.menu-list-expand ul ul.submenu li ul.submenu {
  display: block;
}
#ac87ca3447a834b .jquery-accordion-menu ul ul.submenu.show,
#ac87ca3447a834b .jquery-accordion-menu ul ul.submenu li ul.submenu.show {
  display: block;
}
#ac87ca3447a834b .jquery-accordion-menu ul ul.submenu li {
  clear: both;
  width: 100%;
}
#ac87ca3447a834b .jquery-accordion-menu ul ul.submenu li a {
  border-left: 3px solid transparent;
  width: 100%;
  display: block;
  font-size: 14px;
  background: #383838;
  border-top: none;
  position: relative;
  border-left: solid 2px transparent;
  -o-transition: border .2s linear;
  -moz-transition: border .2s linear;
  -webkit-transition: border .2s linear;
  transition: border .2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#ac87ca3447a834b .jquery-accordion-menu ul ul.submenu.show > li > a {
  background: rgba(0, 0, 0, 0);
}
#ac87ca3447a834b .jquery-accordion-menu ul ul.submenu li > a:hover {
  border-left-color: rgba(0, 0, 0, 0);
}
#ac87ca3447a834b .jquery-accordion-menu ul ul.submenu > li > a {
  padding-left: 30px;
}
#ac87ca3447a834b .jquery-accordion-menu ul ul.submenu > li > ul.submenu > li > a {
  padding-left: 45px;
}
#ac87ca3447a834b .jquery-accordion-menu ul ul.submenu > li > ul.submenu > li > ul.submenu > li > a {
  padding-left: 60px;
}
#ac87ca3447a834b .jquery-accordion-menu ul ul.submenu li.active > a {
  color: #f0f0f0;
  background: #383838;
}
#ac87ca3447a834b .jquery-accordion-menu > ul > li > a {
  padding-top: 14px;
  padding-bottom: 14px;
}
#ac87ca3447a834b .jquery-accordion-menu ul.submenu li a {
  padding-top: 14px;
  padding-bottom: 14px;
}
#a4428a0f95a89e5 > .ele-wrap {border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-left-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);border-top-color: rgba(226, 226, 226, 1);}#a64bea5b5aac734 > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#ace2aae7c2a5249 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#ace2aae7c2a5249 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ace2aae7c2a5249 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a30dda6568a24db > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-style: solid;border-left-style: solid;border-bottom-style: solid;border-top-style: solid;border-top-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-left-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);}#a26a3a06fda9cf8 .ap-category-filter ul li.active {
  border-color: #0164ff;
  color: #0164ff;
}
#a26a3a06fda9cf8 .ele-article-list.uk-grid > .uk-grid-margin {
  margin-top: 0px;
}
#a26a3a06fda9cf8 .ele-article-list .pic-article {
  padding: 15px 0;
  border-bottom: 1px solid #ececec;
}
#a26a3a06fda9cf8 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
}
#a26a3a06fda9cf8 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
}
#a26a3a06fda9cf8 .ele-article-list .pic-article .img_wrap .tags {
  position: absolute;
  top: .4rem;
  left: .4rem;
  z-index: 11;
}
#a26a3a06fda9cf8 .ele-article-list .pic-article .img_wrap .tag {
  display: inline-block;
  padding: 0 .5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-size: .6rem;
  text-align: center;
  border-radius: 1rem;
  margin: 0 5px 5px 0;
}
#a26a3a06fda9cf8 .ele-article-list .pic-article .img_wrap .img {
  width: 100%;
  height: 0;
  background-position: center center;
  transition: all .3s ease;
}
#a26a3a06fda9cf8 .ele-article-list .pic-article .img_wrap:hover .img {
  transform: scale(1.05);
}
#a26a3a06fda9cf8 .ele-article-list .pic-article .info {
  position: relative;
  color: #828a92;
  flex: 1;
  font-size: 13px;
  overflow: hidden;
  min-height: 50px;
}
#a26a3a06fda9cf8 .ele-article-list .pic-article .info h3 {
  margin: 0 0 6px;
  font-size: 18px;
}
#a26a3a06fda9cf8 .ele-article-list .pic-article .info h3 a {
  color: #3d464d;
  font-weight: 500;
}
#a26a3a06fda9cf8 .ele-article-list .pic-article .info h3 a:hover {
  color: #222;
}
#a26a3a06fda9cf8 .ele-article-list .pic-article .info .info-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 1;
}
#a26a3a06fda9cf8 .ele-article-list .text-article {
  padding: 0 0 15px 20px;
  font-size: 12px;
  position: relative;
}
#a26a3a06fda9cf8 .ele-article-list .text-article.no-icon {
  padding-left: 0;
}
#a26a3a06fda9cf8 .ele-article-list .text-article .list-icon {
  width: 12px;
  height: auto;
  position: absolute;
  left: 0;
  top: 6px;
}
#a26a3a06fda9cf8 .ele-article-list .text-article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
}
#a26a3a06fda9cf8 .ele-article-list .text-article h3 a {
  color: #3d464d;
  transition: all .2s ease;
}
#a26a3a06fda9cf8 .ele-article-list .text-article h3 a:hover {
  text-decoration: underline;
  color: #222;
}
/* mobile */
@media (max-width: 640px) {
  .ele-article-list .pic-article {
    padding: 10px 0;
  }
  .ele-article-list .pic-article .img_wrap {
    margin-right: 10px;
  }
  .ele-article-list .pic-article .img_wrap .tag {
    display: none;
  }
  .ele-article-list .pic-article .info {
    font-size: 12px;
  }
  .ele-article-list .pic-article .abstract {
    display: none;
  }
  .ele-article-list .pic-article .info h3 {
    font-size: 14px;
  }
}
#a26a3a06fda9cf8 .ele-article-list .pic-article {
  border-bottom: 1px solid #ececec;
}
#a26a3a06fda9cf8 .ele-article-list .pic-article .img_wrap {
  width: 35%;
  border-radius: 0px;
  overflow: hidden;
}
#a26a3a06fda9cf8 .ele-article-list .pic-article .info .abstract {
  min-height: 40px;
}
#a26a3a06fda9cf8 .ele-article-list .pic-article .info h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a26a3a06fda9cf8 .ele-article-list .pic-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a26a3a06fda9cf8 .ele-article-list .pic-article:hover .info h3 a {
  color: #444;
}
#a26a3a06fda9cf8 .ele-article-list .pic-article:hover .category {
  color: auto;
}
#a26a3a06fda9cf8 .ele-article-list .pic-article:hover .abstract {
  color: auto;
}
#a26a3a06fda9cf8 .ele-article-list .pic-article:hover .time {
  color: auto;
}
#a26a3a06fda9cf8 .ele-article-list .text-article {
  border-bottom: 1px solid #ececec;
  padding-top: 5px;
  padding-bottom: 5px;
}
#a26a3a06fda9cf8 .ele-article-list .text-article h3 a {
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
}
#a26a3a06fda9cf8 .ele-article-list .text-article:hover {
  background-color: #f6f6f6;
  border-bottom-color: #f6f6f6;
}
#a26a3a06fda9cf8 .ele-article-list .text-article:hover .info h3 a {
  color: #444;
}
#a26a3a06fda9cf8 .ele-article-list .text-article:hover .time {
  color: auto;
}
#a99c0a60aba5d1a > .ele-wrap {background-color: rgba(244, 252, 254, 1);background-image: url(https://aipage-resource-gz.cdn.bcebos.com/upload/ac9f6a3bdea3c48/1652490173864.jpeg);background-position: top left;background-size: auto;background-repeat: no-repeat;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;}#abfa1a8ddca89b3 .jquery-accordion-menu {
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
  color: #4a4a4a;
}
#abfa1a8ddca89b3 .jquery-accordion-menu .jquery-accordion-menu-header {
  width: 100%;
  height: 50px;
  padding-left: 14px;
  font-size: 16px;
  line-height: 50px;
  font-weight: 600;
  color: #4a4a4a;
}
#abfa1a8ddca89b3 .jquery-accordion-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#abfa1a8ddca89b3 .jquery-accordion-menu ul li {
  width: 100%;
  display: block;
  position: relative;
}
#abfa1a8ddca89b3 .jquery-accordion-menu ul li a {
  color: #4a4a4a;
  display: block;
  width: 100%;
  padding: 14px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -o-transition: color .2s linear,background .2s linear;
  -moz-transition: color .2s linear,background .2s linear;
  -webkit-transition: color .2s linear,background .2s linear;
  transition: color .2s linear,background .2s linear;
}
#abfa1a8ddca89b3 .menu-list-expand .submenu-indicator {
  display: none;
}
#abfa1a8ddca89b3 .jquery-accordion-menu > ul > li > a:hover {
  color: #fff;
  background: #e3e6e7;
  border-bottom-color: #d8dcde;
  background-color: #e3e6e7;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#abfa1a8ddca89b3 .jquery-accordion-menu > ul > li.active > a {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
  background-color: #e3e6e7;
}
#abfa1a8ddca89b3 .jquery-accordion-menu ul li > a {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #e3e6e7;
}
#abfa1a8ddca89b3 .jquery-accordion-menu > ul > li.active > a {
  color: #4a4a4a;
  background: #e3e6e7;
}
#abfa1a8ddca89b3 .jquery-accordion-menu ul li a img,
#abfa1a8ddca89b3 .jquery-accordion-menu ul li a svg {
  width: 14px;
  margin-right: 8px;
  margin-top: 4px;
  float: left;
  fill: currentColor;
  text-align: left;
}
#abfa1a8ddca89b3 .jquery-accordion-menu .submenu-indicator {
  cursor: pointer;
  float: right;
  right: 14px;
  position: absolute;
  line-height: 19px;
  font-size: 20px;
  -o-transition: transform .3s linear;
  -moz-transition: transform .3s linear;
  -webkit-transition: transform .3s linear;
  -ms-transition: transform .3s linear;
}
#abfa1a8ddca89b3 .jquery-accordion-menu ul ul.submenu .submenu-indicator {
  line-height: 16px;
}
#abfa1a8ddca89b3 .jquery-accordion-menu .submenu-indicator-minus > .submenu-indicator {
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#abfa1a8ddca89b3 .jquery-accordion-menu ul ul.submenu,
#abfa1a8ddca89b3 .jquery-accordion-menu ul ul.submenu li ul.submenu {
  width: 100%;
  display: none;
  position: static;
}
#abfa1a8ddca89b3 .jquery-accordion-menu.menu-list-expand ul ul.submenu,
#abfa1a8ddca89b3 .jquery-accordion-menu.menu-list-expand ul ul.submenu li ul.submenu {
  display: block;
}
#abfa1a8ddca89b3 .jquery-accordion-menu ul ul.submenu.show,
#abfa1a8ddca89b3 .jquery-accordion-menu ul ul.submenu li ul.submenu.show {
  display: block;
}
#abfa1a8ddca89b3 .jquery-accordion-menu ul ul.submenu li {
  clear: both;
  width: 100%;
}
#abfa1a8ddca89b3 .jquery-accordion-menu ul ul.submenu li a {
  border-left: 3px solid transparent;
  width: 100%;
  display: block;
  font-size: 14px;
  background: #383838;
  border-top: none;
  position: relative;
  border-left: solid 2px transparent;
  -o-transition: border .2s linear;
  -moz-transition: border .2s linear;
  -webkit-transition: border .2s linear;
  transition: border .2s linear;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  font-family: inherit;
}
#abfa1a8ddca89b3 .jquery-accordion-menu ul ul.submenu.show > li > a {
  background: rgba(0, 0, 0, 0);
}
#abfa1a8ddca89b3 .jquery-accordion-menu ul ul.submenu li > a:hover {
  border-left-color: rgba(0, 0, 0, 0);
  background-color: #e3e6e7;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#abfa1a8ddca89b3 .jquery-accordion-menu ul ul.submenu > li > a {
  padding-left: 30px;
}
#abfa1a8ddca89b3 .jquery-accordion-menu ul ul.submenu > li > ul.submenu > li > a {
  padding-left: 45px;
}
#abfa1a8ddca89b3 .jquery-accordion-menu ul ul.submenu > li > ul.submenu > li > ul.submenu > li > a {
  padding-left: 60px;
}
#abfa1a8ddca89b3 .jquery-accordion-menu ul ul.submenu li.active > a {
  color: #4a4a4a;
  background: #e3e6e7;
}
#abfa1a8ddca89b3 .jquery-accordion-menu > ul > li > a {
  padding-top: 14px;
  padding-bottom: 14px;
}
#abfa1a8ddca89b3 .jquery-accordion-menu ul.submenu li a {
  padding-top: 14px;
  padding-bottom: 14px;
}
#a24ebae1e9a3258 > .ele-wrap {border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;border-right-style: none;border-left-style: none;border-bottom-style: none;border-top-style: none;border-left-color: rgba(226, 226, 226, 1);border-right-color: rgba(226, 226, 226, 1);border-bottom-color: rgba(226, 226, 226, 1);border-top-color: rgba(226, 226, 226, 1);}#a50c1a60e2a22dc > .ele-wrap {border-left-width: 1px;border-bottom-width: 1px;border-right-width: 1px;border-top-width: 1px;border-right-color: rgba(204, 204, 204, 1);border-right-style: dashed;border-left-color: rgba(204, 204, 204, 1);border-bottom-color: rgba(204, 204, 204, 1);border-top-color: rgba(204, 204, 204, 1);border-left-style: dashed;border-bottom-style: dashed;border-top-style: dashed;}#a79a6a4b0fab45f .uk-position-bottom {
  background-color: #ffffff;
}
#a79a6a4b0fab45f .gallery-thumbnails .uk-thumbnav {
  justify-content: center;
}
#a79a6a4b0fab45f .gallery-thumbnails .uk-thumbnav > * {
  padding-left: 8px;
}
#ace2aae7c2a5249 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#ace2aae7c2a5249 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ace2aae7c2a5249 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a8793aa8f8a4d8f > .ele-wrap {background-color: rgba(255, 255, 255, 1);border-bottom-left-radius: 5px;border-bottom-right-radius: 5px;border-top-left-radius: 5px;border-top-right-radius: 5px;border-left-width: 0px;border-bottom-width: 0px;border-right-width: 0px;border-top-width: 0px;box-shadow: 0px 3px 8px 0px rgba(231, 231, 231, 1);}#a262eafafaa8e37 .search-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#a262eafafaa8e37 .search-wrap .search-inner {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}
#a262eafafaa8e37 .search-wrap .search-inner .input-field {
  height: 100%;
}
#a262eafafaa8e37 .search-wrap .search-inner .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
}
#a262eafafaa8e37 .search-wrap .search-inner .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#a262eafafaa8e37 .search-wrap .search-inner .input-field input::placeholder {
  color: #9b9b9b;
}
#a262eafafaa8e37 .search-wrap .search-inner .input-field.first-wrap {
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  border-top-width: 1px;
  border-top-color: #d9d9d9;
  border-top-style: solid;
  border-right-color: #d9d9d9;
  border-left-color: #d9d9d9;
  border-bottom-color: #d9d9d9;
  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-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
#a262eafafaa8e37 .search-wrap .search-inner .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#a262eafafaa8e37 .search-wrap .search-inner .input-field.first-wrap svg {
  display: inline-block;
  margin: 0 15px;
  width: 20px;
  height: 20px;
}
#a262eafafaa8e37 .search-wrap .search-inner .input-field.second-wrap {
  height: 100%;
}
#a262eafafaa8e37 .search-wrap .search-inner .btn-search {
  height: 100%;
  width: 120px;
  white-space: nowrap;
  background-color: #108CEE;
  font-weight: 400;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  overflow: hidden;
  box-sizing: border-box;
  width: 140px;
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #ffffff;
  border-top-width: 1px;
  border-top-color: #d9d9d9;
  border-top-style: none;
  border-bottom-width: 1px;
  border-bottom-color: #d9d9d9;
  border-bottom-style: none;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
#a262eafafaa8e37 .search-wrap .search-inner .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a262eafafaa8e37 form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#a262eafafaa8e37 .form-item .uk-input,
#a262eafafaa8e37 .form-item .uk-select,
#a262eafafaa8e37 .form-item .uk-textarea {
  width: autopx;
}
#a262eafafaa8e37 .form-item .auto-height {
  height: auto;
}
#a262eafafaa8e37 .ap-dynamic-list {
  margin-top: 16px;
}
#a262eafafaa8e37 .dynamic-list-item {
  border-bottom-width: 1px;
  border-bottom-style: dashed;
  border-bottom-color: #e0d4d4;
}
#a262eafafaa8e37 .dynamic-list-item:hover {
  background-color: auto;
}
#a262eafafaa8e37 form {
  width: 100%;
  height: 100%;
}
#a262eafafaa8e37 .dynamic-empty-tips {
  text-align: center;
  line-height: 100px;
}
#a262eafafaa8e37 .ap-loading {
  display: flex;
  justify-content: center;
}
@-webkit-keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
  }
}
@keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
  }
}
#a262eafafaa8e37 .ap-loading .spinner {
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
  margin-top: 30px;
}
#a262eafafaa8e37 .ap-loading .spinner > div {
  background-color: #108cee;
  height: 100%;
  margin-right: 3px;
  width: 6px;
  display: inline-block;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
#a262eafafaa8e37 .ap-loading .spinner .rect2 {
  animation-delay: -1.1s;
}
#a262eafafaa8e37 .ap-loading .spinner .rect3 {
  animation-delay: -1s;
}
#a262eafafaa8e37 .ap-loading .spinner .rect4 {
  animation-delay: -0.9s;
}
#a262eafafaa8e37 .ap-loading .spinner .rect5 {
  animation-delay: -0.8s;
}
/* mobile */
@media (max-width: 640px) {
  #a262eafafaa8e37 .uk-position-center-left-out {
    left: -30px;
  }
  #a262eafafaa8e37 .uk-position-center-right-out {
    left: auto;
    right: -30px;
  }
}
#ace2aae7c2a5249 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#ace2aae7c2a5249 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ace2aae7c2a5249 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#afe92a3ff6a111d .form-agree {
  display: flex;
  align-items: center;
}
#afe92a3ff6a111d .uk-form .form-submit-btn {
  width: 340px;
}
#afe92a3ff6a111d .uk-form .form-submit-btn {
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}
#afe92a3ff6a111d .submit-wrap {
  text-align: center;
}
#afe92a3ff6a111d .submit-wrap button {
  background-color: #f32c56;
}
#afe92a3ff6a111d .submit-wrap button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  border-top-width: 1px;
}
#afe92a3ff6a111d form.form-theme-10 .form-item .send-code {
  bottom: auto;
  top: 50%;
  margin-top: -20px;
}
#afe92a3ff6a111d .form-item {
  margin-top: 8px !important;
  margin-bottom: 15px !important;
}
#afe92a3ff6a111d .form-item .uk-input,
#afe92a3ff6a111d .form-item .uk-select,
#afe92a3ff6a111d .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;
  margin-top: 8px;
}
#afe92a3ff6a111d .form-item .auto-height {
  height: auto;
}
#afe92a3ff6a111d .form-item div > label {
  font-weight: normal;
  font-style: normal;
  font-family: inherit;
  color: #4a4a4a;
}
#afe92a3ff6a111d .form-item .send-code {
  bottom: 0px;
}
#afe92a3ff6a111d .form-item .uk-textarea {
  height: 80px;
  line-height: 1.5;
}
#afe92a3ff6a111d .uk-form-label,
#afe92a3ff6a111d .form-agree,
#afe92a3ff6a111d .uk-h3,
#afe92a3ff6a111d p {
  font-weight: normal;
  font-style: normal;
  text-align: center;
  font-family: inherit;
  color: #777777;
}
#aca25a9239a9b4b {
  /* 修复吸顶导航宽度被写死的问题 */
}
#aca25a9239a9b4b .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#aca25a9239a9b4b .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a4604af131aa595 {
  min-height: 90vh;
  /* mobile */
}
#a4604af131aa595 .search-highlight {
  background: yellow;
}
#a4604af131aa595 .el-item {
  padding: 0;
  border-bottom: 1px solid #ececec;
}
#a4604af131aa595 .el-title {
  margin-bottom: 20px;
}
#a4604af131aa595 .el-item:hover .el-title {
  color: #00a2e8;
}
#a4604af131aa595 .img-wrap {
  overflow: hidden;
  display: block;
  border-radius: 4px;
}
#a4604af131aa595 .img-wrap img {
  transition: all .3s ease;
  border-radius: 4px;
}
#a4604af131aa595 .el-item:hover .img-wrap img {
  transform: scale(1.1);
}
#a4604af131aa595 .el-title a {
  font-size: 20px;
  color: #333;
  line-height: 36px;
}
#a4604af131aa595 .el-meta {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin: 6px 0;
}
#a4604af131aa595 .el-content {
  font-size: 14px;
  color: #777;
}
@media (max-width: 640px) {
  #a4604af131aa595 .el-title {
    margin-bottom: 0;
  }
  #a4604af131aa595 .el-title a {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }
  #a4604af131aa595 .category {
    font-size: 12px;
  }
  #a4604af131aa595 .el-content {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 6px 0 0px;
  }
}
#acf52af9b1a5346 form {
  width: 100%;
  height: 100%;
}
#acf52af9b1a5346 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#acf52af9b1a5346 .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;
}
#acf52af9b1a5346 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#acf52af9b1a5346 .search-box .search-type.show {
  display: block;
}
#acf52af9b1a5346 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#acf52af9b1a5346 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#acf52af9b1a5346 .search-box .search-type li.active {
  color: #4a4a4a;
}
#acf52af9b1a5346 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#acf52af9b1a5346 .inner-form .input-field {
  height: 100%;
}
#acf52af9b1a5346 .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;
}
#acf52af9b1a5346 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#acf52af9b1a5346 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#acf52af9b1a5346 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#acf52af9b1a5346 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#acf52af9b1a5346 .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;
}
#acf52af9b1a5346 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#acf52af9b1a5346 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#acf52af9b1a5346 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#acf52af9b1a5346 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#acf52af9b1a5346 .btn-search:hover {
  background: #4a4a4a;
}
#acf52af9b1a5346 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#a51e5a6688ae509 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a51e5a6688ae509 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a51e5a6688ae509 .ap-icon {
  margin-right: 6px;
}
#a51e5a6688ae509 .indicator {
  margin-left: 4px;
}
#a51e5a6688ae509 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a51e5a6688ae509 .menu-list li:hover > a,
#a51e5a6688ae509 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a51e5a6688ae509 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a51e5a6688ae509 .menu-list ul,
#a51e5a6688ae509 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a51e5a6688ae509 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a51e5a6688ae509 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a51e5a6688ae509 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a51e5a6688ae509 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a51e5a6688ae509 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a51e5a6688ae509 .menu-list ul li.active > a {
  background-color: #140e83;
}
#ab017a3436a4035 a, #ab017a3436a4035 {
        font-weight: normal;
        font-style: normal;
    font-size: 15px;font-family: inherit;color: rgba(24, 56, 131, 1);}#ace2aae7c2a5249 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#ace2aae7c2a5249 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ace2aae7c2a5249 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a946aa1759a6925 {
  /* 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------------------------*/
}
#a946aa1759a6925 * {
  font-family: 'PT Sans Caption', sans-serif, 'arial', 'Times New Roman';
}
#a946aa1759a6925 .error .clip .shadow {
  height: 180px;
  /*Contrall*/
}
#a946aa1759a6925 .error .clip:nth-of-type(2) .shadow {
  width: 130px;
  /*Contrall play with javascript*/
}
#a946aa1759a6925 .error .clip:nth-of-type(1) .shadow,
#a946aa1759a6925 .error .clip:nth-of-type(3) .shadow {
  width: 250px;
  /*Contrall*/
}
#a946aa1759a6925 .error .digit {
  width: 150px;
  /*Contrall*/
  height: 150px;
  /*Contrall*/
  line-height: 150px;
  /*Contrall*/
  font-size: 120px;
  font-weight: bold;
}
#a946aa1759a6925 .error h2 {
  font-size: 32px;
}
#a946aa1759a6925 .error .msg {
  top: -190px;
  left: 30%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 32px;
}
#a946aa1759a6925 .error span.triangle {
  top: 70%;
  right: 0%;
  border-left: 20px solid #535353;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
#a946aa1759a6925 .error .container-error-404 {
  margin-top: 10%;
  position: relative;
  height: 250px;
  padding-top: 40px;
  text-align: center;
}
#a946aa1759a6925 .error .container-error-404 .clip {
  display: inline-block;
  transform: skew(-45deg);
}
#a946aa1759a6925 .error .clip .shadow {
  overflow: hidden;
}
#a946aa1759a6925 .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);
}
#a946aa1759a6925 .error .clip:nth-of-type(3) .shadow:after,
#a946aa1759a6925 .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%;
}
#a946aa1759a6925 .error .clip:nth-of-type(3) .shadow:after {
  left: -8px;
}
#a946aa1759a6925 .error .digit {
  position: relative;
  top: 8%;
  color: white;
  background: #07B3F9;
  border-radius: 50%;
  display: inline-block;
  transform: skew(45deg);
}
#a946aa1759a6925 .error .clip:nth-of-type(2) .digit {
  left: -10%;
}
#a946aa1759a6925 .error .clip:nth-of-type(1) .digit {
  right: -20%;
}
#a946aa1759a6925 .error .clip:nth-of-type(3) .digit {
  left: -20%;
}
#a946aa1759a6925 .error h2 {
  color: #A2A2A2;
  font-weight: bold;
  padding-bottom: 20px;
}
#a946aa1759a6925 .error .msg {
  position: relative;
  z-index: 9999;
  display: block;
  background: #535353;
  color: #A2A2A2;
  border-radius: 50%;
  font-style: italic;
}
#a946aa1759a6925 .error .triangle {
  position: absolute;
  z-index: 999;
  transform: rotate(45deg);
  content: "";
  width: 0;
  height: 0;
}
@media (max-width: 767px) {
  #a946aa1759a6925 {
    /* Error Page */
    /* Error Page */
  }
  #a946aa1759a6925 .error .clip .shadow {
    height: 100px;
    /*Contrall*/
  }
  #a946aa1759a6925 .error .clip:nth-of-type(2) .shadow {
    width: 80px;
    /*Contrall play with javascript*/
  }
  #a946aa1759a6925 .error .clip:nth-of-type(1) .shadow,
  #a946aa1759a6925 .error .clip:nth-of-type(3) .shadow {
    width: 100px;
    /*Contrall*/
  }
  #a946aa1759a6925 .error .digit {
    width: 80px;
    /*Contrall*/
    height: 80px;
    /*Contrall*/
    line-height: 80px;
    /*Contrall*/
    font-size: 52px;
  }
  #a946aa1759a6925 .error h2 {
    font-size: 24px;
  }
  #a946aa1759a6925 .error .msg {
    top: -110px;
    left: 15%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
  #a946aa1759a6925 .error span.triangle {
    top: 70%;
    right: -3%;
    border-left: 10px solid #535353;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
  #a946aa1759a6925 .error .container-error-404 {
    height: 150px;
  }
}
#a946aa1759a6925 .overlay {
  position: relative;
  z-index: 20;
}
#a946aa1759a6925 .ground-color {
  background: white;
}
#a946aa1759a6925 .item-bg-color {
  background: #EAEAEA;
}
#a946aa1759a6925 .padding-top {
  padding-top: 10px;
}
#a946aa1759a6925 .padding-bottom {
  padding-bottom: 10px;
}
#a946aa1759a6925 .padding-vertical {
  padding-top: 10px;
  padding-bottom: 10px;
}
#a946aa1759a6925 .padding-horizontal {
  padding-left: 10px;
  padding-right: 10px;
}
#a946aa1759a6925 .padding-all {
  padding: 10px;
}
#a946aa1759a6925 .no-padding-left {
  padding-left: 0px;
}
#a946aa1759a6925 .no-padding-right {
  padding-right: 0px;
}
#a946aa1759a6925 .no-vertical-padding {
  padding-top: 0px;
  padding-bottom: 0px;
}
#a946aa1759a6925 .no-horizontal-padding {
  padding-left: 0px;
  padding-right: 0px;
}
#a946aa1759a6925 .no-padding {
  padding: 0px;
}
#a946aa1759a6925 .margin-top {
  margin-top: 10px;
}
#a946aa1759a6925 .margin-bottom {
  margin-bottom: 10px;
}
#a946aa1759a6925 .margin-right {
  margin-right: 10px;
}
#a946aa1759a6925 .margin-left {
  margin-left: 10px;
}
#a946aa1759a6925 .margin-horizontal {
  margin-left: 10px;
  margin-right: 10px;
}
#a946aa1759a6925 .margin-vertical {
  margin-top: 10px;
  margin-bottom: 10px;
}
#a946aa1759a6925 .margin-all {
  margin: 10px;
}
#a946aa1759a6925 .no-margin {
  margin: 0px;
}
#a946aa1759a6925 .no-vertical-margin {
  margin-top: 0px;
  margin-bottom: 0px;
}
#a946aa1759a6925 .no-horizontal-margin {
  margin-left: 0px;
  margin-right: 0px;
}
#a946aa1759a6925 .inside-col-shrink {
  margin: 0px 20px;
}
#a946aa1759a6925 hr {
  margin: 0px;
  padding: 0px;
  border-top: 1px dashed #999;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#ace2aae7c2a5249 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#ace2aae7c2a5249 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ace2aae7c2a5249 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a589da2ee3ad33a .login-main {
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(12, 1, 4, 0.05);
}
#a589da2ee3ad33a .switch_item {
  margin-right: 10px;
}
#a589da2ee3ad33a a.switch_item:hover {
  text-decoration: underline;
}
#a589da2ee3ad33a .slider {
  width: 420px;
  height: 600px;
}
#a589da2ee3ad33a .uk-slideshow-items {
  height: 100%;
}
#a589da2ee3ad33a .uk-slideshow-items a {
  width: 100%;
  height: 100%;
  display: block;
}
#a589da2ee3ad33a .login-wrap {
  width: 100%;
  height: 100%;
}
#a589da2ee3ad33a .uk-dotnav > * > * {
  background: #fff;
  border-color: #fff;
  opacity: .5;
}
#a589da2ee3ad33a .uk-dotnav > .uk-active > * {
  border-color: #0076fe;
  background: #0076fe;
}
#a589da2ee3ad33a .phone-login-box {
  margin: 40px auto 40px;
}
#a589da2ee3ad33a .login-header {
  margin-bottom: 24px;
}
#a589da2ee3ad33a .login-header h4 {
  font-size: 22px;
  font-weight: bolder;
  line-height: 1;
  padding-left: 20px;
  border-left: 4px solid #0076fe;
}
#a589da2ee3ad33a .input-item {
  width: 330px;
  height: 45px;
  background-color: #f0f2f7;
  border-radius: 22px;
  border: solid 1px #e3e8f0;
  position: relative;
  overflow: hidden;
}
#a589da2ee3ad33a .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;
}
#a589da2ee3ad33a .forget_password {
  cursor: pointer;
}
#a589da2ee3ad33a .forget_password:hover {
  color: #0164ff;
}
#a589da2ee3ad33a .input-item input.error,
#a589da2ee3ad33a .input-item input.error::placeholder {
  color: #fc4343;
}
#a589da2ee3ad33a .input-item input::placeholder {
  color: #999;
}
#a589da2ee3ad33a .input-item .icon {
  position: absolute;
  left: 10px;
  top: 12px;
  fill: #ccc;
  width: 20px;
}
#a589da2ee3ad33a .form-item {
  margin: 24px 0;
}
#a589da2ee3ad33a .verifycode-input .input-item {
  width: 200px;
  float: left;
}
#a589da2ee3ad33a .send-code {
  float: left;
  margin-left: 20px;
}
#a589da2ee3ad33a .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;
}
#a589da2ee3ad33a .submit {
  width: 330px;
  height: 45px;
  background-color: #0076fe;
  border-radius: 22px;
  font-size: 18px;
  line-height: 45px;
  color: #fff;
  cursor: pointer;
}
#a589da2ee3ad33a .error {
  color: #fc4343;
  font-size: 12px;
  padding-left: 10px;
  display: block;
  max-width: 300px;
}
#a589da2ee3ad33a .login_btn_wrap {
  text-align: center;
}
#a589da2ee3ad33a .login_btn_wrap .submit {
  display: block;
  margin-bottom: 10px;
}
#a589da2ee3ad33a .input-item .pwd-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -10px;
  font-size: 16px;
  color: #999;
  cursor: pointer;
}
#a589da2ee3ad33a .input-item .pwd-toggle:hover {
  color: currentColor;
}
#af63ba327da631a .login-main {
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(12, 1, 4, 0.05);
}
#af63ba327da631a .switch_item {
  margin-right: 10px;
}
#af63ba327da631a a.switch_item:hover {
  text-decoration: underline;
}
#af63ba327da631a .slider {
  width: 420px;
  height: 600px;
}
#af63ba327da631a .uk-slideshow-items {
  height: 100%;
}
#af63ba327da631a .uk-slideshow-items a {
  width: 100%;
  height: 100%;
  display: block;
}
#af63ba327da631a .login-wrap {
  width: 100%;
  height: 100%;
}
#af63ba327da631a .uk-dotnav > * > * {
  background: #fff;
  border-color: #fff;
  opacity: .5;
}
#af63ba327da631a .uk-dotnav > .uk-active > * {
  border-color: #0076fe;
  background: #0076fe;
}
#af63ba327da631a .phone-login-box {
  margin: 40px auto 40px;
}
#af63ba327da631a .login-header {
  margin-bottom: 24px;
}
#af63ba327da631a .login-header h4 {
  font-size: 22px;
  font-weight: bolder;
  line-height: 1;
  padding-left: 20px;
  border-left: 4px solid #0076fe;
}
#af63ba327da631a .input-item {
  width: 330px;
  height: 45px;
  background-color: #f0f2f7;
  border-radius: 22px;
  border: solid 1px #e3e8f0;
  position: relative;
  overflow: hidden;
}
#af63ba327da631a .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;
}
#af63ba327da631a .forget_password {
  cursor: pointer;
}
#af63ba327da631a .forget_password:hover {
  color: #0164ff;
}
#af63ba327da631a .input-item input.error,
#af63ba327da631a .input-item input.error::placeholder {
  color: #fc4343;
}
#af63ba327da631a .input-item input::placeholder {
  color: #999;
}
#af63ba327da631a .input-item .icon {
  position: absolute;
  left: 10px;
  top: 12px;
  fill: #ccc;
  width: 20px;
}
#af63ba327da631a .form-item {
  margin: 24px 0;
}
#af63ba327da631a .verifycode-input .input-item {
  width: 200px;
  float: left;
}
#af63ba327da631a .send-code {
  float: left;
  margin-left: 20px;
}
#af63ba327da631a .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;
}
#af63ba327da631a .submit {
  width: 330px;
  height: 45px;
  background-color: #0076fe;
  border-radius: 22px;
  font-size: 18px;
  line-height: 45px;
  color: #fff;
  cursor: pointer;
}
#af63ba327da631a .error {
  color: #fc4343;
  font-size: 12px;
  padding-left: 10px;
  display: block;
  max-width: 300px;
}
#af63ba327da631a .login_btn_wrap {
  text-align: center;
}
#af63ba327da631a .login_btn_wrap .submit {
  display: block;
  margin-bottom: 10px;
}
#af63ba327da631a .input-item .pwd-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -10px;
  font-size: 16px;
  color: #999;
  cursor: pointer;
}
#af63ba327da631a .input-item .pwd-toggle:hover {
  color: currentColor;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#ace2aae7c2a5249 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#ace2aae7c2a5249 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ace2aae7c2a5249 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a8a80a0da9ab846 .sidebar {
  width: 150px;
  max-width: 150px;
  height: 100%;
}
#a8a80a0da9ab846 .nav-items {
  background: #fafafa;
  min-height: 200px;
}
#a8a80a0da9ab846 .phone-info {
  background: #fafafa;
  margin-top: 10px;
  font-size: 12px;
  padding: 22px 4px 20px 16px;
  line-height: 1.5;
  color: #666;
}
#a8a80a0da9ab846 .phone-info .phone {
  line-height: 1.5;
  color: #333;
  font-size: 18px;
  font-family: Arial;
}
#a8a80a0da9ab846 .nav-type {
  line-height: 37px;
  padding-left: 20px;
  cursor: pointer;
}
#a8a80a0da9ab846 .nav-type.active {
  color: #FFF;
  cursor: default;
  background: #ff658c;
}
#a8a80a0da9ab846 .content {
  padding-bottom: 60px;
  color: #666;
  border: 1px solid #f0f0f0;
  min-height: 400px;
}
#a8a80a0da9ab846 .nav-list {
  padding: 0 20px;
}
#a8a80a0da9ab846 .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;
}
#a8a80a0da9ab846 .nav-list .nav-item.active {
  background-color: #ff5c89;
  color: #fff;
  cursor: default;
}
#a8a80a0da9ab846 .order-item {
  margin-top: 10px;
  background: #fff;
  padding: 0 20px;
}
#a8a80a0da9ab846 .order-item:hover {
  background: #f7f7f7;
}
#a8a80a0da9ab846 .del-order {
  cursor: pointer;
}
#a8a80a0da9ab846 .order-item .order-title {
  line-height: 40px;
  color: #666;
  font-size: 13px;
  border-bottom: 1px solid #f7f7f7;
}
#a8a80a0da9ab846 .goods-item {
  padding: 10px 0;
  border-bottom: 1px solid #ececec;
  cursor: pointer;
}
#a8a80a0da9ab846 .order-goods-list .goods-item:last-child {
  border-bottom: none;
}
#a8a80a0da9ab846 .goods-item img {
  width: 100px;
  height: 100px;
  background: #f4f4f4;
}
#a8a80a0da9ab846 .goods-item .goods-info {
  padding: 0 15px;
}
#a8a80a0da9ab846 .appoint-time span {
  color: #e4393c;
  background-color: #f9eeee;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 2px;
  line-height: 1;
}
#a8a80a0da9ab846 .appoint-time {
  margin-bottom: 4px;
}
#a8a80a0da9ab846 .appoint-name {
  color: #333;
  font-size: 14px;
}
#a8a80a0da9ab846 .appoint-info {
  padding: 0 15px;
  font-size: 12px;
  color: #888;
}
#a8a80a0da9ab846 .goods-item .goods-name {
  color: #333;
}
#a8a80a0da9ab846 .goods-item .sku-name {
  color: #999;
  font-size: 12px;
}
#a8a80a0da9ab846 .order-total-info {
  padding-bottom: 10px;
  color: #999;
  font-size: 12px;
}
#a8a80a0da9ab846 .order-total-info .total-price {
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  font-size: 14px;
}
#a8a80a0da9ab846 .load-more {
  font-size: 12px;
  padding-bottom: 15px;
  color: #999;
}
#a8a80a0da9ab846 .order-btns {
  padding: 10px 0;
  border-top: 1px solid #f7f7f7;
}
#a8a80a0da9ab846 .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;
}
#a8a80a0da9ab846 .order-btns .btn-warn {
  color: #fff;
  background: #eb3c3c;
  border-color: #eb3c3c;
  cursor: pointer;
}
#a8a80a0da9ab846 .appoint-info .title {
  font-weight: bold;
  color: #333;
}
#a8a80a0da9ab846 .coupon-item {
  margin: 10px 30px;
  display: inline-flex;
  width: 42%;
}
#a8a80a0da9ab846 .setting-form {
  padding: 30px 20px;
}
#a8a80a0da9ab846 .setting-item {
  margin-bottom: 20px;
  font-size: 13px;
  color: #666;
  line-height: 18px;
}
#a8a80a0da9ab846 .setting-item .label {
  display: inline-block;
  margin-right: 6px;
  text-align: right;
  min-width: 120px;
}
#a8a80a0da9ab846 .setting-item .input-text {
  border: 1px solid #ccc;
  line-height: 28px;
  padding: 0 10px;
  min-width: 200px;
  font-size: 13px;
}
#a8a80a0da9ab846 .setting-form .setting-btns {
  margin-left: 130px;
}
#a8a80a0da9ab846 .setting-form .uk-button {
  height: 30px;
  line-height: 30px;
  margin-right: 8px;
}
#a8a80a0da9ab846 .setting-wrap {
  position: relative;
}
#a8a80a0da9ab846 .user-info {
  border: 1px solid #ccc;
  width: 300px;
  position: absolute;
  right: 80px;
  top: 30px;
  color: #666;
  padding: 10px;
  font-size: 13px;
  background: #f9f9f9;
}
#a8a80a0da9ab846 .user-info .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
  margin-right: 10px;
}
#a8a80a0da9ab846 .user-info .levels {
  color: #888;
  font-size: 12px;
}
#a8a80a0da9ab846 .address-wrap {
  padding: 30px 20px;
}
#a8a80a0da9ab846 .addr-header {
  font-size: 18px;
  color: #333;
  margin: 0;
}
#a8a80a0da9ab846 .addr-detail {
  border-bottom: 1px solid #ececec;
  margin-bottom: 10px;
}
#a8a80a0da9ab846 .addr-list {
  min-height: 200px;
}
#a8a80a0da9ab846 .addr-detail .addr-item-name,
#a8a80a0da9ab846 .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;
}
#a8a80a0da9ab846 .addr-detail .addr-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
#a8a80a0da9ab846 .addr-detail .addr-item-name {
  color: #e93b3d;
  border-color: #e93b3d;
}
#a8a80a0da9ab846 .addr-detail {
  padding: 12px 0;
  flex: 1;
}
#a8a80a0da9ab846 .op-btns a {
  font-size: 12px;
  color: #e93b3d;
  margin-left: 6px;
}
#a8a80a0da9ab846 .add-addr {
  height: 32px;
  line-height: 30px;
}
#a8a80a0da9ab846 .publish-item .status {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 50px;
  background: url(https://aipage-resource-gz.cdn.bcebos.com/sys/img/icons/info-pass.png) center center no-repeat;
  background-size: contain;
}
#a8a80a0da9ab846 .publish-item {
  cursor: default;
  min-height: 120px;
}
#a8a80a0da9ab846 .publish-item .status-0 {
  background-image: url(https://aipage-resource-gz.cdn.bcebos.com/sys/img/icons/info-unread.png);
}
#a8a80a0da9ab846 .publish-item .status-1 {
  background-image: url(https://aipage-resource-gz.cdn.bcebos.com/sys/img/icons/info-fail.png);
}
#a8a80a0da9ab846 .publish-item .btns a {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 2px;
  color: #fff;
  background: #0164ff;
}
#a8a80a0da9ab846 .publish-item .btns .del-info {
  background: #ccc;
  color: #999;
}
#a88eea72e7a653f .sidebar {
  width: 150px;
  max-width: 150px;
  height: 100%;
}
#a88eea72e7a653f .nav-items {
  background: #fafafa;
  min-height: 200px;
}
#a88eea72e7a653f .phone-info {
  background: #fafafa;
  margin-top: 10px;
  font-size: 12px;
  padding: 22px 4px 20px 16px;
  line-height: 1.5;
  color: #666;
}
#a88eea72e7a653f .phone-info .phone {
  line-height: 1.5;
  color: #333;
  font-size: 18px;
  font-family: Arial;
}
#a88eea72e7a653f .nav-type {
  line-height: 37px;
  padding-left: 20px;
  cursor: pointer;
}
#a88eea72e7a653f .nav-type.active {
  color: #FFF;
  cursor: default;
  background: #ff658c;
}
#a88eea72e7a653f .content {
  padding-bottom: 60px;
  color: #666;
  border: 1px solid #f0f0f0;
  min-height: 400px;
}
#a88eea72e7a653f .nav-list {
  padding: 0 20px;
}
#a88eea72e7a653f .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;
}
#a88eea72e7a653f .nav-list .nav-item.active {
  background-color: #ff5c89;
  color: #fff;
  cursor: default;
}
#a88eea72e7a653f .order-item {
  margin-top: 10px;
  background: #fff;
  padding: 0 20px;
}
#a88eea72e7a653f .order-item:hover {
  background: #f7f7f7;
}
#a88eea72e7a653f .del-order {
  cursor: pointer;
}
#a88eea72e7a653f .order-item .order-title {
  line-height: 40px;
  color: #666;
  font-size: 13px;
  border-bottom: 1px solid #f7f7f7;
}
#a88eea72e7a653f .goods-item {
  padding: 10px 0;
  border-bottom: 1px solid #ececec;
  cursor: pointer;
}
#a88eea72e7a653f .order-goods-list .goods-item:last-child {
  border-bottom: none;
}
#a88eea72e7a653f .goods-item img {
  width: 100px;
  height: 100px;
  background: #f4f4f4;
}
#a88eea72e7a653f .goods-item .goods-info {
  padding: 0 15px;
}
#a88eea72e7a653f .appoint-time span {
  color: #e4393c;
  background-color: #f9eeee;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 2px;
  line-height: 1;
}
#a88eea72e7a653f .appoint-time {
  margin-bottom: 4px;
}
#a88eea72e7a653f .appoint-name {
  color: #333;
  font-size: 14px;
}
#a88eea72e7a653f .appoint-info {
  padding: 0 15px;
  font-size: 12px;
  color: #888;
}
#a88eea72e7a653f .goods-item .goods-name {
  color: #333;
}
#a88eea72e7a653f .goods-item .sku-name {
  color: #999;
  font-size: 12px;
}
#a88eea72e7a653f .order-total-info {
  padding-bottom: 10px;
  color: #999;
  font-size: 12px;
}
#a88eea72e7a653f .order-total-info .total-price {
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  font-size: 14px;
}
#a88eea72e7a653f .load-more {
  font-size: 12px;
  padding-bottom: 15px;
  color: #999;
}
#a88eea72e7a653f .order-btns {
  padding: 10px 0;
  border-top: 1px solid #f7f7f7;
}
#a88eea72e7a653f .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;
}
#a88eea72e7a653f .order-btns .btn-warn {
  color: #fff;
  background: #eb3c3c;
  border-color: #eb3c3c;
  cursor: pointer;
}
#a88eea72e7a653f .appoint-info .title {
  font-weight: bold;
  color: #333;
}
#a88eea72e7a653f .coupon-item {
  margin: 10px 30px;
  display: inline-flex;
  width: 42%;
}
#a88eea72e7a653f .setting-form {
  padding: 30px 20px;
}
#a88eea72e7a653f .setting-item {
  margin-bottom: 20px;
  font-size: 13px;
  color: #666;
  line-height: 18px;
}
#a88eea72e7a653f .setting-item .label {
  display: inline-block;
  margin-right: 6px;
  text-align: right;
  min-width: 120px;
}
#a88eea72e7a653f .setting-item .input-text {
  border: 1px solid #ccc;
  line-height: 28px;
  padding: 0 10px;
  min-width: 200px;
  font-size: 13px;
}
#a88eea72e7a653f .setting-form .setting-btns {
  margin-left: 130px;
}
#a88eea72e7a653f .setting-form .uk-button {
  height: 30px;
  line-height: 30px;
  margin-right: 8px;
}
#a88eea72e7a653f .setting-wrap {
  position: relative;
}
#a88eea72e7a653f .user-info {
  border: 1px solid #ccc;
  width: 300px;
  position: absolute;
  right: 80px;
  top: 30px;
  color: #666;
  padding: 10px;
  font-size: 13px;
  background: #f9f9f9;
}
#a88eea72e7a653f .user-info .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
  margin-right: 10px;
}
#a88eea72e7a653f .user-info .levels {
  color: #888;
  font-size: 12px;
}
#a88eea72e7a653f .address-wrap {
  padding: 30px 20px;
}
#a88eea72e7a653f .addr-header {
  font-size: 18px;
  color: #333;
  margin: 0;
}
#a88eea72e7a653f .addr-detail {
  border-bottom: 1px solid #ececec;
  margin-bottom: 10px;
}
#a88eea72e7a653f .addr-list {
  min-height: 200px;
}
#a88eea72e7a653f .addr-detail .addr-item-name,
#a88eea72e7a653f .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;
}
#a88eea72e7a653f .addr-detail .addr-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
#a88eea72e7a653f .addr-detail .addr-item-name {
  color: #e93b3d;
  border-color: #e93b3d;
}
#a88eea72e7a653f .addr-detail {
  padding: 12px 0;
  flex: 1;
}
#a88eea72e7a653f .op-btns a {
  font-size: 12px;
  color: #e93b3d;
  margin-left: 6px;
}
#a88eea72e7a653f .add-addr {
  height: 32px;
  line-height: 30px;
}
#a88eea72e7a653f .publish-item .status {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 50px;
  background: url(https://aipage-resource-gz.cdn.bcebos.com/sys/img/icons/info-pass.png) center center no-repeat;
  background-size: contain;
}
#a88eea72e7a653f .publish-item {
  cursor: default;
  min-height: 120px;
}
#a88eea72e7a653f .publish-item .status-0 {
  background-image: url(https://aipage-resource-gz.cdn.bcebos.com/sys/img/icons/info-unread.png);
}
#a88eea72e7a653f .publish-item .status-1 {
  background-image: url(https://aipage-resource-gz.cdn.bcebos.com/sys/img/icons/info-fail.png);
}
#a88eea72e7a653f .publish-item .btns a {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 2px;
  color: #fff;
  background: #0164ff;
}
#a88eea72e7a653f .publish-item .btns .del-info {
  background: #ccc;
  color: #999;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#ace2aae7c2a5249 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#ace2aae7c2a5249 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ace2aae7c2a5249 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#adfc5a7486aa2d3 .search-highlight {
  background: yellow;
}
#adfc5a7486aa2d3 .category-list {
  background: #fff;
  padding: 20px 40px;
}
#adfc5a7486aa2d3 .goods-sort {
  padding: 10px 0;
}
#adfc5a7486aa2d3 .goods {
  padding-bottom: 20px;
}
#adfc5a7486aa2d3 .goods-sort .category {
  border-bottom: 1px dashed #dedede;
  position: relative;
}
#adfc5a7486aa2d3 .goods-sort .category .name {
  font-size: 14px;
  color: #999;
  position: absolute;
  left: 0;
  top: 0;
}
#adfc5a7486aa2d3 .goods-sort .category-items {
  overflow: hidden;
  margin-bottom: 4px;
  margin-left: 65px;
}
#adfc5a7486aa2d3 .goods-sort .category-item {
  float: left;
  color: #333;
  margin-right: 30px;
  margin-bottom: 10px;
  font-size: 14px;
}
#adfc5a7486aa2d3 .goods-sort .sort-default.active,
#adfc5a7486aa2d3 .goods-sort .category-item.active {
  color: red;
}
#adfc5a7486aa2d3 .sorts {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  line-height: 1;
  border-bottom: 1px solid #dedede;
}
#adfc5a7486aa2d3 .sorts .name {
  font-size: 14px;
  color: #999;
  margin-right: 28px;
}
#adfc5a7486aa2d3 .sorts .sort {
  display: inline-block;
  margin-right: 30px;
  font-size: 14px;
  color: #333;
}
#adfc5a7486aa2d3 .sorts .sort.active span {
  color: #e4393c;
}
#adfc5a7486aa2d3 .sorts .fa {
  color: #999;
}
#adfc5a7486aa2d3 .sorts .fa.active {
  color: #e4393c;
}
#adfc5a7486aa2d3 .sorts .sort-icon {
  display: inline-block;
  margin-left: 6px;
}
#adfc5a7486aa2d3 .sorts .sort-icon i {
  display: block;
  font-size: 12px;
  line-height: 1;
  height: 2px;
}
#adfc5a7486aa2d3 .uk-container {
  min-height: 200px;
}
#adfc5a7486aa2d3 .not-found {
  line-height: 200px;
}
#adfc5a7486aa2d3 .goods .item {
  color: #333;
  font-weight: 400;
}
#adfc5a7486aa2d3 .img-alter {
  display: none;
}
#adfc5a7486aa2d3 .goods .item:hover .img-main {
  display: none;
}
#adfc5a7486aa2d3 .goods .item:hover .img-alter {
  display: block;
}
#adfc5a7486aa2d3 .goods .item .title {
  padding: 0 10px;
  margin-bottom: 4px;
  line-height: 20px;
  font-weight: bolder;
  transition: all .1s ease;
}
#adfc5a7486aa2d3 .goods .item .title:hover {
  color: #d4282d;
}
#adfc5a7486aa2d3 .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;
}
#adfc5a7486aa2d3 .goods .item hr {
  width: 60%;
  display: block;
  height: 1px;
  padding: 0;
  margin: 6px auto 14px;
  border: 0;
  border-top: 1px solid #e8e8e8;
}
#adfc5a7486aa2d3 .goods .item .subTitle {
  padding: 0 10px;
  line-height: 18px;
  color: #999;
}
#adfc5a7486aa2d3 .goods .origin-price {
  display: inline-block;
  margin-left: 6px;
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}
#adfc5a7486aa2d3 .goods .member-price {
  font-size: 12px;
  color: #d4282d;
  font-weight: 500;
  line-height: 18px;
  margin-left: 10px;
}
#adfc5a7486aa2d3 .uk-card .uk-card-media {
  background: #fff;
}
#adfc5a7486aa2d3 .uk-card:hover {
  background-color: #f4f0e9;
}
#adfc5a7486aa2d3 .sort-time.active .fa {
  color: #e4393c;
}
#adfc5a7486aa2d3 * + .uk-grid-margin-small,
#adfc5a7486aa2d3 .uk-grid + .uk-grid-small,
#adfc5a7486aa2d3 .uk-grid-small > .uk-grid-margin {
  margin-top: 50px;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#ace2aae7c2a5249 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#ace2aae7c2a5249 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ace2aae7c2a5249 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#ab05fa0547a789d .coupon-item:after,
#ab05fa0547a789d .coupon-item:before {
  background: #0d70dd;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#ace2aae7c2a5249 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#ace2aae7c2a5249 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ace2aae7c2a5249 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a59f9a7ad6a9e94 {
  min-height: 90vh;
  /* mobile */
}
#a59f9a7ad6a9e94 .search-highlight {
  background: yellow;
}
#a59f9a7ad6a9e94 .el-item {
  padding: 0;
  border-bottom: 1px solid #ececec;
}
#a59f9a7ad6a9e94 .el-title {
  margin-bottom: 20px;
}
#a59f9a7ad6a9e94 .el-item:hover .el-title {
  color: #00a2e8;
}
#a59f9a7ad6a9e94 .img-wrap {
  overflow: hidden;
  display: block;
  border-radius: 4px;
}
#a59f9a7ad6a9e94 .img-wrap img {
  transition: all .3s ease;
  border-radius: 4px;
}
#a59f9a7ad6a9e94 .el-item:hover .img-wrap img {
  transform: scale(1.1);
}
#a59f9a7ad6a9e94 .el-title a {
  font-size: 20px;
  color: #333;
  line-height: 36px;
}
#a59f9a7ad6a9e94 .el-meta {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin: 6px 0;
}
#a59f9a7ad6a9e94 .el-content {
  font-size: 14px;
  color: #777;
}
@media (max-width: 640px) {
  #a59f9a7ad6a9e94 .el-title {
    margin-bottom: 0;
  }
  #a59f9a7ad6a9e94 .el-title a {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }
  #a59f9a7ad6a9e94 .category {
    font-size: 12px;
  }
  #a59f9a7ad6a9e94 .el-content {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 6px 0 0px;
  }
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#ace2aae7c2a5249 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#ace2aae7c2a5249 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ace2aae7c2a5249 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a8b93a4ebda761a .uk-checkbox:not(:checked) {
  background: #fff;
}
#a8b93a4ebda761a .cart-wrap .column {
  float: left;
  text-align: center;
}
#a8b93a4ebda761a .cart-head,
#a8b93a4ebda761a .cart-footer,
#a8b93a4ebda761a .cart-item {
  margin-bottom: 10px;
  padding: 12px 0;
  border: 1px solid #f0f0f0;
  background-color: #fff;
}
#a8b93a4ebda761a .cart-head {
  background-color: #efefef;
}
#a8b93a4ebda761a .cart-head,
#a8b93a4ebda761a .cart-footer {
  margin: 20px 0;
  padding: 12px;
}
#a8b93a4ebda761a .cart-footer {
  display: none;
}
#a8b93a4ebda761a .cart-head .c-checkbox {
  width: 150px;
}
#a8b93a4ebda761a .c-info {
  width: 410px;
}
#a8b93a4ebda761a .c-price {
  width: 180px;
}
#a8b93a4ebda761a .c-count {
  width: 170px;
}
#a8b93a4ebda761a .c-sum {
  width: 170px;
}
#a8b93a4ebda761a .cart-item {
  padding: 20px 12px;
}
#a8b93a4ebda761a .selected {
  background-color: #fdf5e9;
}
#a8b93a4ebda761a .cart-item .c-info {
  width: 500px;
}
#a8b93a4ebda761a .cart-item .c-checkbox {
  width: 60px;
}
#a8b93a4ebda761a .cart-item .pic {
  float: left;
  width: 100px;
  height: 100px;
  border: 1px solid #f0f0f0;
  background: #fafafa;
}
#a8b93a4ebda761a .cart-item .c-info .info {
  padding-left: 120px;
  min-height: 100px;
  width: 500px;
  padding-top: 10px;
  line-height: 1;
}
#a8b93a4ebda761a .cart-item .c-info .title {
  font-size: 14px;
  display: block;
  color: #333;
  text-align: left;
  margin-bottom: 6px;
}
#a8b93a4ebda761a .cart-item .c-info span {
  font-size: 12px;
  color: #999;
}
#a8b93a4ebda761a .cart-item .price {
  text-align: center;
  font-family: "Heiti SC", "Lucida Grande", "Hiragino Sans GB", "Hiragino Sans GB W3", verdana;
}
#a8b93a4ebda761a .cart-item .price-total {
  color: #d4282d;
  font-weight: bolder;
}
#a8b93a4ebda761a .cart-item .present-price {
  font-size: 14px;
  color: #333;
}
#a8b93a4ebda761a .cart-item .origin-price {
  color: #999;
  font-size: 12px;
  display: inline-block;
  margin-left: 6px;
  text-decoration: line-through;
}
#a8b93a4ebda761a .cart-item .column {
  padding-top: 12px;
}
#a8b93a4ebda761a .cart-item .c-info {
  padding-top: 0;
}
#a8b93a4ebda761a .cart-item .del {
  color: #555;
}
#a8b93a4ebda761a .select-num {
  display: inline-block;
  border: 1px solid #ddd;
  overflow: hidden;
  line-height: 30px;
}
#a8b93a4ebda761a .select-num .btn {
  position: relative;
  width: 30px;
  height: 30px;
  line-height: 28px;
  background: #fff;
  text-align: center;
  color: #888;
  cursor: pointer;
}
#a8b93a4ebda761a .select-num .btn.disable {
  cursor: not-allowed;
  color: #ececec;
}
#a8b93a4ebda761a .select-num i {
  line-height: 30px;
}
#a8b93a4ebda761a .select-num .less {
  float: left;
  border-right: 1px solid #ddd;
}
#a8b93a4ebda761a .select-num .more {
  float: right;
  border-left: 1px solid #ddd;
}
#a8b93a4ebda761a .select-num input {
  border: none;
  text-align: center;
  font-size: 12px;
  color: #333;
  width: 60px;
  height: 28px;
}
#a8b93a4ebda761a .price-info {
  color: #999;
  float: right;
  margin-left: 20px;
}
#a8b93a4ebda761a .price-info .discount {
  font-size: 12px;
}
#a8b93a4ebda761a .price-info .price-num {
  font-size: 16px;
  color: #E2231A;
  font-weight: 700;
}
#a8b93a4ebda761a .column-left {
  line-height: 36px;
}
#a8b93a4ebda761a .column-left a {
  color: #888;
  display: inline-block;
  margin-left: 10px;
}
#a8b93a4ebda761a .column-left a:hover {
  color: #E2231A;
}
#a8b93a4ebda761a .column-right {
  padding-right: 130px;
}
#a8b93a4ebda761a .column-right .selected-num {
  color: #999;
  font-size: 13px;
  line-height: 26px;
}
#a8b93a4ebda761a .column-right .selected-num span {
  color: #E2231A;
  font-weight: bolder;
  display: inline-block;
  margin: 0 2px;
}
#a8b93a4ebda761a .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;
}
#a8b93a4ebda761a .cart-icon {
  width: 200px;
  fill: #ccc;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#ace2aae7c2a5249 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#ace2aae7c2a5249 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ace2aae7c2a5249 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a68a4a756aa7681 .checkout-title {
  font-size: 16px;
  color: #666;
  line-height: 42px;
}
#a68a4a756aa7681 .checkout-wrap {
  background-color: #fff;
  padding: 0 20px;
  border: 1px solid #f0f0f0;
  color: #666;
}
#a68a4a756aa7681 .add-addr {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 12px;
}
#a68a4a756aa7681 .checkout-wrap h3 {
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  color: #333;
  font-weight: bold;
  margin: 0;
}
#a68a4a756aa7681 .addr-list {
  height: 45px;
  overflow: hidden;
}
#a68a4a756aa7681 .addr-list.expand {
  height: auto;
}
#a68a4a756aa7681 .addr-item {
  list-style: none;
  height: 30px;
  margin: 6px 0 20px;
  display: block;
  position: relative;
}
#a68a4a756aa7681 .addr-item:hover {
  background-color: #fff3f3;
}
#a68a4a756aa7681 .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;
}
#a68a4a756aa7681 .addr-item.selected .addr-item-name {
  border: 2px solid #FF0036;
}
#a68a4a756aa7681 .addr-default {
  margin: 5px 10px;
  background-color: #999;
  color: #fff;
  padding: 0 4px;
  line-height: 20px;
  display: inline-block;
}
#a68a4a756aa7681 .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;
}
#a68a4a756aa7681 .addr-item .addr-detail {
  line-height: 30px;
  font-size: 12px;
}
#a68a4a756aa7681 .addr-item .op-btns {
  position: absolute;
  right: 0;
  top: 6px;
  font-size: 12px;
}
#a68a4a756aa7681 .addr-item .op-btns a {
  color: #005ea7;
  display: inline-block;
  margin-right: 12px;
}
#a68a4a756aa7681 .addr-item .op-btns a:hover {
  color: #FF0036;
}
#a68a4a756aa7681 .addr-switch {
  line-height: 24px;
  cursor: pointer;
  font-size: 12px;
  margin-bottom: 15px;
}
#a68a4a756aa7681 .addr-switch b {
  display: inline-block;
  vertical-align: middle;
  height: 10px;
  line-height: 10px;
  width: 9px;
  margin-left: 5px;
  background: url(https://aipage-resource-gz.cdn.bcebos.com/sys/img/toggle-arrow.png) no-repeat 0 0;
}
#a68a4a756aa7681 .addr-switch.expand b {
  background-position: 0 -10px;
}
#a68a4a756aa7681 table {
  border: 1px solid #ececec;
  margin: 0 0 30px;
  color: #333;
}
#a68a4a756aa7681 table thead {
  color: #999;
  background-color: #f5f5f5;
}
#a68a4a756aa7681 table td {
  text-align: center;
}
#a68a4a756aa7681 table thead td {
  border-top: none;
}
#a68a4a756aa7681 table .goods-pic {
  width: 100px;
  height: 100px;
  margin-right: 12px;
  float: left;
}
#a68a4a756aa7681 table .goods-info a {
  color: #333;
  font-weight: bolder;
}
#a68a4a756aa7681 table .goods-info span {
  font-size: 12px;
  color: #999;
}
#a68a4a756aa7681 .origin-price {
  color: #999;
  text-decoration: line-through;
}
#a68a4a756aa7681 table .price {
  font-family: "Heiti SC", "Lucida Grande", "Hiragino Sans GB", "Hiragino Sans GB W3", verdana;
}
#a68a4a756aa7681 .checkout-summary {
  margin: 20px 4px 10px;
}
#a68a4a756aa7681 .summary-item {
  font-size: 12px;
  line-height: 24px;
  color: #666;
}
#a68a4a756aa7681 .summary-item > em {
  width: 140px;
  display: inline-block;
  color: #333;
  font-size: 12px;
  font-family: verdana;
  font-style: normal;
}
#a68a4a756aa7681 .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;
}
#a68a4a756aa7681 .order-confirm .total-price {
  display: inline-block;
  color: #e4393c;
  font-family: Verdana;
  font-weight: 700;
  font-size: 18px;
  min-width: 122px;
}
#a68a4a756aa7681 .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;
}
#a68a4a756aa7681 .order-submit-btn:hover {
  background-color: #EF494D;
}
#a68a4a756aa7681 .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;
}
#a68a4a756aa7681 .coupon-select.disable {
  color: #555;
  border-color: #333;
  cursor: not-allowed;
}
#a68a4a756aa7681 .select-num {
  display: inline-block;
  border: 1px solid #ddd;
  overflow: hidden;
  line-height: 30px;
}
#a68a4a756aa7681 .select-num .btn {
  position: relative;
  width: 30px;
  height: 30px;
  line-height: 28px;
  background: #fff;
  text-align: center;
  color: #888;
  cursor: pointer;
}
#a68a4a756aa7681 .select-num .btn.disable {
  cursor: not-allowed;
  color: #ececec;
}
#a68a4a756aa7681 .select-num i {
  line-height: 30px;
}
#a68a4a756aa7681 .select-num .less {
  float: left;
  border-right: 1px solid #ddd;
}
#a68a4a756aa7681 .select-num .more {
  float: right;
  border-left: 1px solid #ddd;
}
#a68a4a756aa7681 .select-num input {
  border: none;
  text-align: center;
  font-size: 12px;
  color: #333;
  width: 60px;
  height: 28px;
}
#a68a4a756aa7681 .toggle-point {
  position: absolute;
  right: 0;
  top: 24px;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#ace2aae7c2a5249 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#ace2aae7c2a5249 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ace2aae7c2a5249 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a525fa67c9a5512 .title {
  font-size: 18px;
  color: #000;
  line-height: 2;
}
#a525fa67c9a5512 .order-id {
  color: #666;
}
#a525fa67c9a5512 .payment {
  cursor: pointer;
}
#a525fa67c9a5512 .payment img {
  min-height: 40px;
}
#a525fa67c9a5512 .payment-wrap {
  border: 1px solid #ececec;
  margin: 20px 0;
}
#a525fa67c9a5512 .payment-title {
  height: 42px;
  padding-left: 21px;
  background-color: #f4f4f4;
  border-bottom: 1px solid #efefef;
  line-height: 41px;
  color: #999;
  font-size: 14px;
}
#a525fa67c9a5512 .selected {
  border: 2px solid #e1251b;
}
#a525fa67c9a5512 .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;
}
#a525fa67c9a5512 .btn:hover {
  background-color: #EF494D;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#ace2aae7c2a5249 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#ace2aae7c2a5249 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ace2aae7c2a5249 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#ac343a852ba3adb {
  max-width: 1200px;
  margin: 0 auto;
}
#ac343a852ba3adb .m-header {
  background: #fff;
  height: 44px;
  position: relative;
  border-bottom: 1px solid #e5e5e5;
}
#ac343a852ba3adb .order-container {
  padding-bottom: 60px;
}
#ac343a852ba3adb .express-date {
  color: #999;
  font-size: 12px;
}
#ac343a852ba3adb .m-header-back {
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  padding: 10px;
  text-align: center;
}
#ac343a852ba3adb .m-header-back svg {
  width: 16px;
  fill: #666;
}
#ac343a852ba3adb .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;
}
#ac343a852ba3adb .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;
}
#ac343a852ba3adb .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%);
}
#ac343a852ba3adb .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%);
}
#ac343a852ba3adb .state-desc {
  padding-left: 25px;
}
#ac343a852ba3adb .order-status .icon-status {
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-image: url(https://aipage-resource-gz.cdn.bcebos.com/sys/img/order_status_icon.png);
  background-size: 41px 41px;
  background-repeat: no-repeat;
  top: 25px;
}
#ac343a852ba3adb .order-status .icon-status.status-1,
#ac343a852ba3adb .order-status .icon-status.status-2,
#ac343a852ba3adb .order-status .icon-status.status-3 {
  background-position: 0 -22px;
}
#ac343a852ba3adb .order-status .icon-status.status--1 {
  background-position: -22px 0;
}
#ac343a852ba3adb .state-desc .state-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
#ac343a852ba3adb .state-tip {
  font-size: 12px;
}
#ac343a852ba3adb .top-content {
  padding: 0 10px;
  background: #fff;
}
#ac343a852ba3adb .top-content .fa {
  font-size: 24px;
  display: inline-block;
  margin-right: 10px;
  color: #ccc;
  width: 24px;
  text-align: center;
}
#ac343a852ba3adb .top-content .desc {
  color: #333;
  line-height: 21px;
  font-size: 14px;
  background: #fff;
}
#ac343a852ba3adb .top-content .tip {
  font-size: 12px;
  line-height: 18px;
  color: #999;
}
#ac343a852ba3adb .top-content .content-wrap {
  padding: 12px 0;
  border-bottom: 1px solid #f7f7f7;
}
#ac343a852ba3adb .top-content.address .content-wrap {
  border-bottom: none;
}
#ac343a852ba3adb .goods-item {
  margin-top: 10px;
  padding: 10px 10px 20px 10px;
  background: #fff;
  border-bottom: 1px solid #f7f7f7;
}
#ac343a852ba3adb .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;
}
#ac343a852ba3adb .goods-info .title {
  font-size: 14px;
  margin-bottom: 3px;
  word-break: break-all;
  position: relative;
  color: #333;
  font-weight: 500;
}
#ac343a852ba3adb .goods-info .sku-name {
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  color: #999;
}
#ac343a852ba3adb .goods-info .private-info {
  font-size: 12px;
}
#ac343a852ba3adb .goods-info .num-wrap {
  color: #999;
  font-size: 12px;
}
#ac343a852ba3adb .goods-info .present-price {
  line-height: 30px;
  color: #e93b3d;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
}
#ac343a852ba3adb .panel {
  background: #fff;
  margin: 20px 0;
}
#ac343a852ba3adb .panel-header {
  padding: 10px;
  color: #333;
  font-size: 16px;
  position: relative;
  border-bottom: 1px solid #f7f7f7;
}
#ac343a852ba3adb .panel-header .tip {
  line-height: 24px;
  font-size: 12px;
  position: absolute;
  right: 10px;
  top: 10px;
  color: #999;
}
#ac343a852ba3adb .contact {
  padding: 16px 0;
  line-height: 1;
  font-size: 12px;
  color: #999;
  display: block;
  text-align: center;
}
#ac343a852ba3adb .hide {
  display: none;
}
#ac343a852ba3adb .contact img {
  width: 20px;
  height: 20px;
  margin-right: 4px;
  display: inline-block;
}
#ac343a852ba3adb .order-detail {
  padding: 15px 10px;
  background: #fff;
}
#ac343a852ba3adb .order-detail .order-item {
  line-height: 22px;
  margin-bottom: 3px;
  color: #151515;
}
#ac343a852ba3adb .order-detail .order-item span {
  color: #999;
  display: inline-block;
  margin-right: 6px;
}
#ac343a852ba3adb .order-summary {
  border-top: 1px solid #f7f7f7;
  padding: 12px 0;
}
#ac343a852ba3adb .order-id {
  font-size: 13px;
  font-style: normal;
}
#ac343a852ba3adb .order-summary .order-price {
  line-height: 21px;
  color: #333;
  font-weight: 400;
}
#ac343a852ba3adb .order-summary .price {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bolder;
}
#ac343a852ba3adb .total-price {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  line-height: 32px;
}
#ac343a852ba3adb .total-price .price {
  color: #f2270c;
}
#ac343a852ba3adb .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;
}
#ac343a852ba3adb .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;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#ace2aae7c2a5249 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#ace2aae7c2a5249 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ace2aae7c2a5249 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#aa74bab811adad7 .comment-detail {
  min-height: 600px;
}
#aa74bab811adad7 table {
  background: #f9fdff;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
#aa74bab811adad7 table th,
#aa74bab811adad7 table td {
  padding: 10px 20px;
  border: #ececec 1px solid;
  line-height: 1.8em;
}
#aa74bab811adad7 table th {
  padding-left: 0;
  text-align: right;
  background: #eff7fe;
  font-weight: normal;
  color: #333;
}
#aa74bab811adad7 .red {
  color: #F00!important;
}
#aa74bab811adad7 .table-title span {
  display: inline-block;
  padding: 0 40px;
  line-height: 40px;
  color: #274589;
  font-size: 16px;
  font-weight: bold;
  background: url(https://aipage-resource-gz.cdn.bcebos.com/sys/img/icons/title_icon.png) 0 center no-repeat;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#ace2aae7c2a5249 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#ace2aae7c2a5249 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ace2aae7c2a5249 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a1a50a689ba16cf .address-select {
  cursor: pointer;
}
#a1a50a689ba16cf .form-item {
  border-bottom: 1px solid #f5f5f5;
  padding: 20px 0;
}
#a1a50a689ba16cf .form-item-last {
  border-bottom: none;
}
#a1a50a689ba16cf .form-item .uk-form-label {
  font-size: 16px;
  color: #888;
  margin-bottom: 8px;
  font-weight: bolder;
  display: block;
}
#a1a50a689ba16cf .address-select .uk-select {
  width: 100px;
}
#a1a50a689ba16cf .form-item .uk-input,
#a1a50a689ba16cf .form-item .uk-select {
  background: #fafafa;
  border-color: #eee;
}
#a1a50a689ba16cf .submit-btn {
  background: #5cc55c;
  font-size: 18px;
  width: 160px;
  text-align: center;
  border-radius: 2px;
  line-height: 48px;
}
#a1a50a689ba16cf .submit-btn:hover {
  opacity: .9;
}
#a1a50a689ba16cf .img-box {
  margin-top: 40px;
}
#a1a50a689ba16cf .img-box .up-p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #555;
}
#a1a50a689ba16cf .z_photo {
  padding: 18px;
  border: 2px dashed #e7e6e6;
}
#a1a50a689ba16cf .z_photo .z_file {
  position: relative;
}
#a1a50a689ba16cf .z_file .file {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}
#a1a50a689ba16cf .z_photo .up-section {
  position: relative;
  margin-right: 20px;
  margin-bottom: 20px;
}
#a1a50a689ba16cf .up-section .close-upimg {
  position: absolute;
  top: 6px;
  right: 8px;
  display: none;
  z-index: 10;
}
#a1a50a689ba16cf .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);
}
#a1a50a689ba16cf .up-section:hover {
  border: 2px solid #f15134;
}
#a1a50a689ba16cf .up-section:hover .close-upimg {
  display: block;
}
#a1a50a689ba16cf .up-section:hover .up-span {
  visibility: visible;
}
#a1a50a689ba16cf .z_photo .up-img {
  display: block;
  width: 100%;
  height: 100%;
}
#a1a50a689ba16cf .upimg-div .up-section {
  width: 190px;
  height: 180px;
}
#a1a50a689ba16cf .img-box .upimg-div .z_file {
  width: 190px;
  height: 180px;
}
#a1a50a689ba16cf .publish-price {
  font-size: 16px;
  color: #888;
}
#a1a50a689ba16cf .publish-price .num {
  color: #ff9933;
  display: inline-block;
  margin: 0 4px;
  font-weight: 500;
}
#a1a50a689ba16cf .z_file .add-img {
  display: block;
  width: 190px;
  height: 180px;
  cursor: pointer;
}
#a1a50a689ba16cf .mask {
  z-index: 1000;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
#a1a50a689ba16cf .mask .mask-content {
  width: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -250px;
  margin-top: -80px;
  background: #fff;
  height: 160px;
  text-align: center;
}
#a1a50a689ba16cf .mask .mask-content .del-p {
  color: #555;
  height: 94px;
  line-height: 94px;
  font-size: 18px;
  border-bottom: 1px solid #d1d1d1;
}
#a1a50a689ba16cf .mask-content .check-p {
  height: 66px;
  line-height: 66px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
#a1a50a689ba16cf .mask-content .check-p span {
  width: 49%;
  display: inline-block;
  text-align: center;
  color: #d4361d;
  font-size: 18px;
}
#a1a50a689ba16cf .check-p .del-com {
  border-right: 1px solid #d1d1d1;
}
#a1a50a689ba16cf #fileList,
#a1a50a689ba16cf #picker {
  display: inline-block;
  float: left;
}
#a1a50a689ba16cf .thumbnail {
  width: 140px;
  display: inline-block;
  margin-right: 10px;
  position: relative;
}
#a1a50a689ba16cf .thumbnail img {
  width: 100%;
  height: 130px;
}
#a1a50a689ba16cf .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;
}
#a1a50a689ba16cf .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;
}
#a1a50a689ba16cf .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;
}
#a1a50a689ba16cf #picker {
  width: 140px;
  height: 130px;
  background: url(https://aipage-resource-gz.cdn.bcebos.com/sys/img/upload-img.png) center center no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
  font-size: 0px;
  text-indent: -1000px;
}
#a1a50a689ba16cf .webuploader-pick {
  height: 100%;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
#ace2aae7c2a5249 {
  /* 修复吸顶导航宽度被写死的问题 */
}
#ace2aae7c2a5249 .ap-content-container {
  height: 100%;
  min-height: 40px;
}
#ace2aae7c2a5249 .uk-sticky-fixed {
  width: 100% !important;
  left: 0;
  right: 0;
}
#a9324a4fc7acc73 .search-detail {
  min-height: 400px;
}
#a9324a4fc7acc73 table {
  background: #f9fdff;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
#a9324a4fc7acc73 table th,
#a9324a4fc7acc73 table td {
  padding: 10px 20px;
  border: #ececec 1px solid;
  line-height: 1.8em;
}
#a9324a4fc7acc73 table th {
  padding-left: 0;
  text-align: right;
  background: #eff7fe;
  font-weight: normal;
  color: #333;
}
#a9324a4fc7acc73 .red {
  color: #F00!important;
}
#a9324a4fc7acc73 .table-title span {
  display: inline-block;
  padding: 0 40px;
  line-height: 40px;
  color: #274589;
  font-size: 16px;
  font-weight: bold;
  background: url(https://aipage-resource-gz.cdn.bcebos.com/sys/img/icons/title_icon.png) 0 center no-repeat;
}
#a163dafbbdaff20 .menu-list {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  background: rgba(85, 85, 85, 0);
  text-align: center;
}
#a163dafbbdaff20 .menu-list li {
  height: 100%;
  margin: 0;
  position: relative;
  text-align: center;
  flex-shrink: 0;
}
#a163dafbbdaff20 .ap-icon {
  margin-right: 6px;
}
#a163dafbbdaff20 .indicator {
  margin-left: 4px;
}
#a163dafbbdaff20 .menu-list > li > a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 1px;
  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-color: rgba(85, 85, 85, 0);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  margin-right: 0;
  margin-left: 0;
  border-right-style: none;
}
#a163dafbbdaff20 .menu-list li:hover > a,
#a163dafbbdaff20 .menu-list li.active > a {
  background: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
#a163dafbbdaff20 .menu-list li.active > a {
  font-weight: bold;
  font-style: normal;
  font-size: 17px;
  font-family: inherit;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #ffffff;
  margin-bottom: 0;
}
#a163dafbbdaff20 .menu-list ul,
#a163dafbbdaff20 .menu-list ul li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99999;
  background: #140e83;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
#a163dafbbdaff20 .menu-list ul {
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
}
#a163dafbbdaff20 .menu-list ul li ul {
  top: 0;
  left: 100%;
}
#a163dafbbdaff20 .menu-list ul li {
  clear: both;
  width: 100%;
  border: none;
}
#a163dafbbdaff20 .menu-list ul li a {
  padding: 10px 15px;
  width: 100%;
  color: #dedede;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  float: left;
  white-space: nowrap;
  clear: both;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
  width: null;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  font-family: inherit;
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li a:hover {
  background-color: #140e83;
}
#a163dafbbdaff20 .menu-list ul li.active > a {
  background-color: #140e83;
}
#af7c1ad56aa7820 form {
  width: 100%;
  height: 100%;
}
#af7c1ad56aa7820 .search-box {
  text-align: center;
  margin-right: -10px;
  font-size: 14px;
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .search-box .search-type {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 40px;
  display: none;
  z-index: 999999;
}
#af7c1ad56aa7820 .search-box .search-type.show {
  display: block;
}
#af7c1ad56aa7820 .search-box .search-type li {
  text-align: center;
  line-height: 40px;
  background: #ffffff;
  cursor: pointer;
  padding: 0 18px;
}
#af7c1ad56aa7820 .search-box .search-type li:hover {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .search-box .search-type li.active {
  color: #4a4a4a;
}
#af7c1ad56aa7820 .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: 5px;
  background-color: #ffffff;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
#af7c1ad56aa7820 .inner-form .input-field {
  height: 100%;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field input.placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:-moz-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input::-webkit-input-placeholder {
  font-size: 14px;
  color: #262626;
}
#af7c1ad56aa7820 .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
}
#af7c1ad56aa7820 .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;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap input {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#af7c1ad56aa7820 .inner-form .input-field.first-wrap svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  fill: #000;
  margin: 0 15px;
}
#af7c1ad56aa7820 .inner-form .input-field.second-wrap {
  min-width: 100px;
}
#af7c1ad56aa7820 .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: #9b9b9b;
  color: #fff;
  transition: all 0.2s ease-out, color 0.2s ease-out;
  font-weight: 300;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
#af7c1ad56aa7820 .btn-search:hover {
  background: #4a4a4a;
}
#af7c1ad56aa7820 .btn-search:focus {
  outline: 0;
  box-shadow: none;
}
