@charset "UTF-8";
:root {
  --body-color:#212529;
  --secondary-color:#6c757d;
  --placeholder-color:#A8ABB2;
  --primary-color:#0246a1;
  --primary-hover-color:#4096ff;
  --primary-bg-color:#e6f4ff;
  --success-color:#19be6b;
  --success-hover-color:#18b667;
  --success-bg-color:#f6ffed;
  --warning-color:#ff9900;
  --warning-hover-color:#f59402;
  --warning-bg-color:#fffbe6;
  --danger-color:#ff4d4f;
  --danger-hover-color:#ff7875;
  --danger-bg-color:#fff2f0;
  --gray-color:#f8f9fa;
  --dark-color:#343a40;
  --border-color:#dee2e6;
}

.row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
}

.col {
  flex: 1 0 0%;
}

.d-none {
  display: none;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-center {
  align-items: center;
}

.align-items-stretch {
  align-items: stretch;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-7 > * {
  flex: 0 0 auto;
  width: 14.2857142857%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}

.row-cols-8 > * {
  flex: 0 0 auto;
  width: 12.5%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}

.row-cols-9 > * {
  flex: 0 0 auto;
  width: 11.1111111111%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.row-cols-10 > * {
  flex: 0 0 auto;
  width: 10%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}

.row-cols-11 > * {
  flex: 0 0 auto;
  width: 9.0909090909%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}

.row-cols-12 > * {
  flex: 0 0 auto;
  width: 8.3333333333%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-7 > * {
    flex: 0 0 auto;
    width: 14.2857142857%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .row-cols-sm-8 > * {
    flex: 0 0 auto;
    width: 12.5%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .row-cols-sm-9 > * {
    flex: 0 0 auto;
    width: 11.1111111111%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .row-cols-sm-10 > * {
    flex: 0 0 auto;
    width: 10%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .row-cols-sm-11 > * {
    flex: 0 0 auto;
    width: 9.0909090909%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .row-cols-sm-12 > * {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-7 > * {
    flex: 0 0 auto;
    width: 14.2857142857%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .row-cols-lg-8 > * {
    flex: 0 0 auto;
    width: 12.5%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .row-cols-lg-9 > * {
    flex: 0 0 auto;
    width: 11.1111111111%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .row-cols-lg-10 > * {
    flex: 0 0 auto;
    width: 10%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .row-cols-lg-11 > * {
    flex: 0 0 auto;
    width: 9.0909090909%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .row-cols-lg-12 > * {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
.g-0 {
  margin: 0 0 0;
}
.g-0 > .col {
  padding: 0 0;
  margin-top: 0;
}

@media (min-width: 768px) {
  .g-sm-0 {
    margin: 0 0 0;
  }
  .g-sm-0 > .col {
    padding: 0 0;
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .g-lg-0 {
    margin: 0 0 0;
  }
  .g-lg-0 > .col {
    padding: 0 0;
    margin-top: 0;
  }
}
.g-1 {
  margin: -16px -8px 0;
}
.g-1 > .col {
  padding: 0 8px;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .g-sm-1 {
    margin: -16px -8px 0;
  }
  .g-sm-1 > .col {
    padding: 0 8px;
    margin-top: 16px;
  }
}
@media (min-width: 1200px) {
  .g-lg-1 {
    margin: -16px -8px 0;
  }
  .g-lg-1 > .col {
    padding: 0 8px;
    margin-top: 16px;
  }
}
.g-2 {
  margin: -24px -12px 0;
}
.g-2 > .col {
  padding: 0 12px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .g-sm-2 {
    margin: -24px -12px 0;
  }
  .g-sm-2 > .col {
    padding: 0 12px;
    margin-top: 24px;
  }
}
@media (min-width: 1200px) {
  .g-lg-2 {
    margin: -24px -12px 0;
  }
  .g-lg-2 > .col {
    padding: 0 12px;
    margin-top: 24px;
  }
}
.g-3 {
  margin: -32px -16px 0;
}
.g-3 > .col {
  padding: 0 16px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .g-sm-3 {
    margin: -32px -16px 0;
  }
  .g-sm-3 > .col {
    padding: 0 16px;
    margin-top: 32px;
  }
}
@media (min-width: 1200px) {
  .g-lg-3 {
    margin: -32px -16px 0;
  }
  .g-lg-3 > .col {
    padding: 0 16px;
    margin-top: 32px;
  }
}
.g-4 {
  margin: -48px -24px 0;
}
.g-4 > .col {
  padding: 0 24px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .g-sm-4 {
    margin: -48px -24px 0;
  }
  .g-sm-4 > .col {
    padding: 0 24px;
    margin-top: 48px;
  }
}
@media (min-width: 1200px) {
  .g-lg-4 {
    margin: -48px -24px 0;
  }
  .g-lg-4 > .col {
    padding: 0 24px;
    margin-top: 48px;
  }
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, th, td, p, pre,
form, input, textarea, fieldset, blockquote {
  padding: 0;
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol, ul {
  list-style: none;
}

fieldset, img, abbr {
  border: 0;
}

*,
::after,
::before {
  box-sizing: border-box;
}

body {
  font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, 微软雅黑, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--body-color);
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

.divider {
  display: block;
  height: 1px;
  width: 100%;
  margin: 8px 0;
  border-top: 1px solid var(--border-color);
}

@media (min-width: 1200px) {
  .divider {
    margin: 24px 0;
  }
}
.common-title {
  padding: 4px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--body-color);
}

@media (min-width: 1200px) {
  .common-title {
    padding: 8px 0;
    font-size: 22px;
  }
}
.container {
  width: 100%;
  padding: 0 16px;
}

.container-full {
  width: 100% !important;
}

@media (min-width: 768px) {
  .container {
    width: 720px;
    padding: 0;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1160px;
    padding: 0;
    margin: 0 auto;
  }
}
.flex-box {
  display: flex;
  align-items: center;
}

.thumb {
  position: relative;
  padding-top: var(--thumb-ratio, 75%);
  background-color: #f8f9fa;
}
.thumb img {
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner {
  position: relative;
  overflow: hidden;
  height: calc(var(--banner-height, 620px) / 3.04);
}

@media (min-width: 768px) {
  .banner {
    height: var(--banner-height, 620px);
  }
}
@media (min-width: 1200px) {
  .banner {
    height: var(--banner-height, 620px);
  }
}
.main {
  padding: 16px 0 48px;
}

@media (min-width: 1200px) {
  .main {
    padding: 32px 0 96px;
  }
}
.text-overflow, .about .about-group .about-group-item {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.editor-text img {
  display: block;
  max-width: 100%;
}

.navbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: var(--navbar-height, 64px);
  background-color: var(--navbar-bg-color, transparent);
}
.navbar .logo img {
  display: block;
  height: var(--navbar-height, 64px);
  padding: 8px 0;
}
.navbar .logo.center {
  margin: 0 auto;
}

.navbar.fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  transition: all 0.1s ease-in-out;
}
.navbar.fixed.scrolled {
  background: #fff !important;
}

.navbar-toggle {
  height: var(--navbar-height, 64px);
  padding: calc((var(--navbar-height, 64px) - 28px) / 2) 0;
  background: transparent;
  border: none;
}
.navbar-toggle i {
  display: block;
  width: 28px;
  height: 2px;
  position: relative;
  background: var(--navbar-toggle-color, var(--primary-color));
  backface-visibility: hidden;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: left;
}
.navbar-toggle i:first-of-type {
  margin-bottom: 8px;
}
.navbar-toggle i:nth-of-type(2) {
  margin-bottom: 8px;
}
.navbar-toggle.show i:first-of-type {
  transform: rotate(45deg);
}
.navbar-toggle.show i:nth-of-type(2) {
  opacity: 0;
}
.navbar-toggle.show i:nth-of-type(3) {
  transform: rotate(-45deg);
}

.navbar-mask {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1020;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.navbar-mask.show {
  opacity: 1;
  visibility: visible;
}

.nav, .nav-light, .nav-line {
  display: block;
  position: fixed;
  left: -240px;
  top: 0;
  width: 240px;
  min-height: 100%;
  z-index: 1200;
  padding: 24px 0;
  transition: all 0.3s ease;
  background: #fff;
  font-size: 16px;
}
.nav.show, .show.nav-light, .show.nav-line {
  left: 0;
}
.nav .nav-item, .nav-light .nav-item, .nav-line .nav-item {
  position: relative;
}
.nav .nav-item > a, .nav-light .nav-item > a, .nav-line .nav-item > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  margin: 4px 8px;
  padding: 0 16px;
  transition: all 0.3s ease;
  border-radius: 4px;
  font-size: 14px;
  color: var(--body-color);
}
.nav .nav-item i, .nav-light .nav-item i, .nav-line .nav-item i {
  margin-left: 4px;
  font-size: var(--font-size-sm);
  transition: all 0.2s ease;
  vertical-align: middle;
  line-height: 40px;
  font-size: 14px;
  color: inherit;
}
.nav .nav-item:hover > a, .nav-light .nav-item:hover > a, .nav-line .nav-item:hover > a, .nav .nav-item.active > a, .nav-light .nav-item.active > a, .nav-line .nav-item.active > a {
  color: var(--primary-color);
  background: var(--primary-bg-color);
}
.nav .dropdown, .nav-light .dropdown, .nav-line .dropdown {
  display: none;
}
.nav .open .dropdown, .nav-light .open .dropdown, .nav-line .open .dropdown {
  display: block;
}
.nav .open .dropdown-toggle, .nav-light .open .dropdown-toggle, .nav-line .open .dropdown-toggle {
  transform: rotate(180deg);
}
.nav .dropdown-item, .nav-light .dropdown-item, .nav-line .dropdown-item {
  position: relative;
  display: block;
}
.nav .dropdown-item > a, .nav-light .dropdown-item > a, .nav-line .dropdown-item > a {
  position: relative;
  display: flex;
  align-items: center;
  height: 40px;
  margin: 4px 8px;
  padding: 0 16px 0 32px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--body-color);
}
.nav .dropdown-item:hover > a, .nav-light .dropdown-item:hover > a, .nav-line .dropdown-item:hover > a, .nav .dropdown-item.active > a, .nav-light .dropdown-item.active > a, .nav-line .dropdown-item.active > a {
  color: var(--primary-color);
  background: var(--primary-bg-color);
}

@media (min-width: 1200px) {
  .nav, .nav-light, .nav-line {
    position: relative;
    left: 0 !important;
    width: auto;
    min-height: auto;
    background: transparent;
    padding: 0;
  }
  .nav .nav-item, .nav-light .nav-item, .nav-line .nav-item {
    display: inline-block;
    vertical-align: middle;
  }
  .nav .nav-item > a, .nav-light .nav-item > a, .nav-line .nav-item > a {
    justify-content: center;
    min-width: 64px;
    height: var(--navbar-height, 64px);
    margin: 0 14px;
    padding: 0;
    font-size: 16px;
    color: var(--nav-text-color, var(--body-color));
  }
  .nav .nav-item > a:after, .nav-light .nav-item > a:after, .nav-line .nav-item > a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
  }
  .nav .nav-item:hover > .dropdown, .nav-light .nav-item:hover > .dropdown, .nav-line .nav-item:hover > .dropdown {
    display: block !important;
  }
  .nav .nav-item:hover > a, .nav-light .nav-item:hover > a, .nav-line .nav-item:hover > a, .nav .nav-item.active > a, .nav-light .nav-item.active > a, .nav-line .nav-item.active > a, .nav .nav-item.open > a, .nav-light .nav-item.open > a, .nav-line .nav-item.open > a {
    color: var(--nav-text-hover-color, var(--primary-color));
    background: transparent;
  }
  .nav .dropdown-toggle, .nav-light .dropdown-toggle, .nav-line .dropdown-toggle {
    transform: rotate(0deg) !important;
  }
  .nav .dropdown, .nav-light .dropdown, .nav-line .dropdown {
    display: none !important;
    position: absolute;
    left: 0;
    top: var(--navbar-height, 64px);
    padding: 8px 0;
    min-width: 160px;
    margin-top: -8px;
    margin-left: 8px;
    box-shadow: 0 5px 9px rgba(4, 0, 0, 0.17);
    background: #fff;
    z-index: 1300;
    border-radius: 6px;
    border: 1px solid var(--border-color);
  }
  .nav .dropdown-item > a, .nav-light .dropdown-item > a, .nav-line .dropdown-item > a {
    padding: 0 16px;
  }
}
@media (min-width: 1200px) {
  .nav-line .nav-item > a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
  }
  .nav-line .nav-item:hover > a:after, .nav-line .nav-item.active > a:after, .nav-line .nav-item.open > a:after {
    border-color: var(--primary-color);
  }
}
.nav-light {
  background: var(--primary-color);
}
.nav-light .nav-item > a, .nav-light .dropdown-item > a {
  color: rgba(250, 250, 250, 0.9);
}
.nav-light .nav-item:hover > a, .nav-light .nav-item.active > a, .nav-light .dropdown-item:hover > a, .nav-light .dropdown-item.active > a {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1200px) {
  .nav-light {
    background: transparent;
  }
  .nav-light .nav-item:hover > a, .nav-light .nav-item.active > a, .nav-light .nav-item.open > a {
    color: #fff;
    background: transparent;
  }
  .nav-light .dropdown-item a {
    color: var(--body-color);
  }
  .nav-light .dropdown-item:hover > a, .nav-light .dropdown-item.active > a {
    color: #fff;
    background: var(--primary-color);
  }
  .scrolled .nav-light .nav-item > a {
    color: var(--body-color);
  }
  .scrolled .nav-light .nav-item:hover > a, .scrolled .nav-light .nav-item.active > a, .scrolled .nav-light .nav-item.open > a {
    color: var(--primary-color);
  }
}
.box {
  padding: 32px 0;
}
.box .box-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: var(--box-top-align, center);
  width: 100%;
  margin-bottom: 32px;
}
.box .box-footer {
  display: flex;
  width: 100%;
  margin-top: 32px;
  justify-content: var(--box-footer-align, center);
}

@media (min-width: 1200px) {
  .box {
    padding: 64px 0;
  }
  .box .box-top {
    margin-bottom: 64px;
  }
  .box .box-footer {
    margin-top: 64px;
  }
}
.box-title {
  display: flex;
  margin-bottom: 24px;
  flex-direction: column;
  align-items: center;
}
.box-title .title {
  color: var(--box-title-color, var(--body-color));
  font-weight: var(--box-title-weight, 500);
  font-size: 22px;
}
.box-title .desc {
  margin-top: 8px;
  font-size: 14px;
  color: var(--box-desc-color, var(--secondary-color));
}
.box-title .title-perfix {
  position: relative;
  padding: 0 44px;
}
.box-title .title-perfix:before, .box-title .title-perfix:after {
  content: "";
  position: absolute;
  display: block;
  width: 44px;
  top: 10%;
  height: 80%;
  background-image: var(--box-perfix-img, none);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
}
.box-title .title-perfix:before {
  left: 0;
}
.box-title .title-perfix:after {
  right: 0;
  background-position: right center;
  transform: rotateY(180deg);
}
.box-title .line {
  width: 48px;
  max-width: 30%;
  height: 3px;
  margin: 8px auto 0;
  background: var(--box-line-color, var(--primary-color));
  border-radius: 2px;
}
.box-title .full-line {
  position: relative;
  width: 48px;
  max-width: 30%;
  height: 3px;
  margin: 8px auto 0;
  background: var(--box-line-color, var(--primary-color));
}
.box-title .full-line:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: calc(50% - 1px);
  width: 200px;
  height: 1px;
  margin-left: -100px;
  background: var(--border-color);
  z-index: -1;
}

@media (min-width: 1200px) {
  .box-title {
    margin-bottom: 64px;
  }
  .box-title .title {
    font-size: 32px;
  }
  .box-title .desc {
    margin-top: 16px;
    font-size: 16px;
  }
  .box-title .line {
    margin: 16px auto 0;
    height: 5px;
    border-radius: 3px;
  }
  .box-title .full-line {
    margin: 16px auto 0;
    height: 4px;
  }
  .box-title .full-line:after {
    width: 320px;
    margin-left: -160px;
  }
  .box-title .title-perfix {
    padding: 0 64px;
  }
  .box-title .title-perfix:before, .box-title .title-perfix:after {
    width: 64px;
  }
}
.btn {
  display: inline-block;
  margin: 0;
  padding: 6px 16px;
  background-color: transparent;
  border-style: solid;
  border-width: 1px;
  border-color: var(--border-color);
  color: var(--body-color);
  outline: none;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  user-select: none;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn.primary {
  color: #fff;
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}
.btn.primary:hover {
  border-color: var(--primary-hover-color);
  background-color: var(--primary-hover-color);
}
.btn.outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn.outline-primary:hover {
  color: #fff;
  background-color: var(--primary-color);
}
.btn.success {
  color: #fff;
  background-color: var(--success-color);
  border-color: var(--success-color);
}
.btn.success:hover {
  border-color: var(--success-hover-color);
  background-color: var(--success-hover-color);
}
.btn.outline-success {
  color: var(--success-color);
  border-color: var(--success-color);
}
.btn.outline-success:hover {
  color: #fff;
  background-color: var(--success-color);
}
.btn.warning {
  color: #fff;
  background-color: var(--warning-color);
  border-color: var(--warning-color);
}
.btn.warning:hover {
  border-color: var(--warning-hover-color);
  background-color: var(--warning-hover-color);
}
.btn.outline-warning {
  color: var(--warning-color);
  border-color: var(--warning-color);
}
.btn.outline-warning:hover {
  color: #fff;
  background-color: var(--warning-color);
}
.btn.danger {
  color: #fff;
  background-color: var(--danger-color);
  border-color: var(--danger-color);
}
.btn.danger:hover {
  border-color: var(--danger-hover-color);
  background-color: var(--danger-hover-color);
}
.btn.outline-danger {
  color: var(--danger-color);
  border-color: var(--danger-color);
}
.btn.outline-danger:hover {
  color: #fff;
  background-color: var(--danger-color);
}
.btn + .btn {
  margin-left: 16px;
}
.btn.round {
  border-radius: 20px !important;
}
.btn i {
  margin-left: 4px;
  font-size: inherit;
}
.btn.large {
  padding: 8px 24px;
  font-size: 20px;
  border-radius: 6px;
}
.btn.small {
  padding: 4px 8px;
  font-size: 14px;
  border-radius: 3px;
}

.form-group {
  display: flex;
  margin-bottom: 24px;
}
.form-group.required .form-label:before {
  content: "*";
  color: var(--danger-color);
  margin-right: 4px;
}

.form-label {
  display: flex;
  justify-content: flex-end;
  padding: 6px 0;
  line-height: 1.5;
  color: var(--body-color);
  min-width: 100px;
  font-size: 16px;
}
.form-label + .form-content {
  margin-left: 16px;
}

.form-content {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  font-size: 16px;
}

.form-input, .form-textarea {
  display: flex;
  width: 100%;
  padding: 6px 16px;
  line-height: 1.5;
  background-color: #fff;
  background-image: none;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  vertical-align: middle;
  transition: all 0.15s ease-in-out;
  font-size: 16px;
  font-family: inherit;
  resize: none;
  appearance: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--primary-color);
  outline: 0;
}

.form-select {
  display: flex;
  width: 200px;
  padding: 6px 32px 6px 16px;
  line-height: 1.5;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  transition: all 0.15s ease-in-out;
  font-size: 16px;
  font-family: inherit;
  appearance: none;
  cursor: pointer;
}
.form-select:focus {
  border-color: var(--primary-color);
  outline: 0;
}
.form-select + .form-select {
  margin-top: 8px;
}

.form-textarea {
  min-height: 48px;
}

.form-checkbox, .form-radio {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 6px 0;
  cursor: pointer;
  line-height: 1.5;
  margin-right: 16px;
  font-size: 16px;
  font-family: inherit;
}
.form-checkbox input, .form-radio input {
  margin-right: 8px;
}

.form-captcha {
  width: 120px;
  height: 38px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  cursor: pointer;
}
.form-captcha img {
  display: block;
  margin: 0 auto;
  height: 100%;
}

@media (min-width: 1200px) {
  .form-select + .form-select {
    margin-top: 0;
    margin-left: 16px;
  }
}
.modal {
  position: fixed;
  top: -20%;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.modal.modal-show {
  display: flex;
}

.modal-animate .modal-mask {
  opacity: 0;
}
.modal-animate .modal-content {
  opacity: 0;
  transform: scale(0.8);
}

.modal-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1100;
  background-color: rgba(0, 0, 0, 0.45);
  filter: alpha(opacity=50);
  transition: all 0.2s ease;
}

.modal-content {
  position: relative;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
  z-index: 1100;
  transition: all 0.2s ease;
}

.modal-header {
  padding: 24px;
}

.modal-title {
  font-size: 18px;
  font-weight: 500;
}

.modal-close {
  position: absolute;
  right: 24px;
  top: 24px;
  padding: 4px;
  cursor: pointer;
  color: var(--secondary-color);
  background: transparent;
  border: 0;
}

.modal-body {
  padding: 0 24px;
}

.modal-footer {
  padding: 24px 24px;
  text-align: right;
}

@media (min-width: 768px) {
  .modal-content {
    width: 460px;
  }
}
@media (min-width: 1200px) {
  .modal {
    font-size: 16px;
  }
  .modal-title {
    font-size: 22px;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.message {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 46px;
  left: 0;
  z-index: 1200;
  padding: 0 24px;
  width: 100%;
  pointer-events: none;
  font-size: 16px;
}
.message .message-item {
  display: flex;
  align-items: center;
  align-self: center;
  min-width: 320px;
  margin-bottom: 16px;
  padding: 16px 24px;
  border-radius: 2px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  transition: all 0.2s ease;
}
.message .message-item.message-animate {
  opacity: 0;
  transform: translateY(-30px);
}
.message .message-item i {
  margin-right: 6px;
}
.message .message-item.loading {
  color: var(--primary-color);
}
.message .message-item.loading i {
  animation: spin 1s infinite steps(8);
}
.message .message-item.loading i:before {
  content: "\e787";
}
.message .message-item.default {
  color: var(--primary-color);
}
.message .message-item.default i:before {
  content: "\e848";
}
.message .message-item.success {
  color: var(--success-color);
}
.message .message-item.success i:before {
  content: "\e844";
}
.message .message-item.warning {
  color: var(--warning-color);
}
.message .message-item.warning i:before {
  content: "\e84d";
}
.message .message-item.error {
  color: var(--danger-color);
}
.message .message-item.error i:before {
  content: "\e847";
}

.alert {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 8px 16px;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: var(--line-height-base);
  border-radius: 6px;
  border: 1px solid var(--border-color);
}
.alert i {
  margin-right: 6px;
  font-size: 16px;
}
.alert.primary {
  display: flex;
  background-color: var(--primary-bg-color);
  border-color: var(--primary-color);
}
.alert.primary i {
  color: var(--primary-color);
}
.alert.success {
  display: flex;
  background-color: var(--success-bg-color);
  border-color: var(--success-color);
}
.alert.success i {
  color: var(--success-color);
}
.alert.warning {
  display: flex;
  background-color: var(--warning-bg-color);
  border-color: var(--warning-color);
}
.alert.warning i {
  color: var(--warning-color);
}
.alert.error {
  display: flex;
  background-color: var(--danger-bg-color);
  border-color: var(--danger-color);
}
.alert.error i {
  color: var(--danger-color);
}

.pagination {
  display: flex;
  align-items: center;
  margin: -4px;
  overflow: hidden;
}
.pagination li {
  margin: 4px;
}
.pagination a, .pagination span {
  display: inline-block;
  padding: 4px 4px;
  min-width: 32px;
  background: var(--gray-color);
  color: var(--body-color);
  border: 1px solid var(--border-color);
  border-radius: 3px;
  transition: all 0.3s ease;
  font-size: 14px;
  user-select: none;
  vertical-align: middle;
  text-align: center;
}
.pagination a:hover {
  background: var(--primary-bg-color);
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.pagination .active span {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #fff !important;
}
.pagination .disabled span {
  cursor: not-allowed;
  color: var(--placeholder-color);
}

@media (min-width: 768px) {
  .pagination a, .pagination span {
    font-size: 16px;
    width: 38px;
    height: 38px;
    padding: 6px 4px;
  }
}
.simple-page .simple-page-text {
  padding: 4px 0;
  font-size: 14px;
  color: var(--secondary-color);
}
.simple-page .simple-page-text a {
  font-size: 14px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}
.simple-page .simple-page-text a:hover {
  color: var(--primary-hover-color);
}
.simple-page .simple-page-text span {
  font-size: 14px;
  color: var(--body-color);
}

@media (min-width: 768px) {
  .simple-page .simple-page-text {
    font-size: 16px;
  }
  .simple-page .simple-page-text a {
    font-size: 16px;
  }
  .simple-page .simple-page-text span {
    font-size: 16px;
  }
}
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slider .slider-list {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.slider .slider-list .item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: opacity 0.5s linear;
  opacity: 0;
  background-color: #f8f9fa;
  overflow: hidden;
  pointer-events: none;
}
.slider .slider-list .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 1920px;
  margin: 0 auto;
}
.slider .slider-list .item.active {
  opacity: 1;
  pointer-events: auto;
}
.slider .slider-control {
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.slider .slider-page {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
}
.slider .slider-page span {
  display: flex;
  height: 3px;
  width: 24px;
  margin: 0 4px;
  text-indent: -999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}
.slider .slider-page .active {
  background: #fff;
}

@media (min-width: 1200px) {
  .slider .slider-list .item {
    background-size: auto 100%;
  }
  .slider .slider-control .prev,
  .slider .slider-control .next {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    margin-top: -24px;
    background-color: rgba(30, 30, 30, 0.3);
    color: #fff;
    z-index: 10;
    cursor: pointer;
    border-radius: var(--banner-control-radius, 0);
  }
  .slider .slider-control .prev i,
  .slider .slider-control .next i {
    color: #fff;
    font-size: 18px;
  }
  .slider .slider-control .prev:hover,
  .slider .slider-control .next:hover {
    background-color: rgba(30, 30, 30, 0.6);
  }
  .slider .slider-control .prev {
    left: 48px;
  }
  .slider .slider-control .next {
    right: 48px;
  }
  .slider .slider-page span {
    height: 4px;
    width: 32px;
  }
  .slider:hover .slider-control {
    opacity: 1;
    pointer-events: auto;
  }
  .slider.mini .slider-control .prev,
  .slider.mini .slider-control .next {
    width: 40px;
    height: 40px;
    margin-top: -16px;
  }
  .slider.mini .slider-control .prev i,
  .slider.mini .slider-control .next i {
    font-size: 14px;
  }
  .slider.mini .slider-control .prev {
    left: 24px;
  }
  .slider.mini .slider-control .next {
    right: 24px;
  }
  .slider.mini .slider-page span {
    margin: 0 2px;
    width: 24px;
    height: 3px;
  }
}
.category-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1920px;
  height: 160px;
  margin: 0 auto;
  background-color: #f8f9fa;
  background-image: var(--category-img);
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.category-image .container {
  height: 100%;
}
.category-image .category-text {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.category-image .category-text .title {
  font-size: 20px;
  font-weight: 500;
  color: var(--category-title-color, #fff);
}
.category-image .category-text .desc {
  margin-top: 8px;
  font-size: 14px;
  color: var(--category-desc-color, #fff);
}

@media (min-width: 768px) {
  .category-image {
    height: 210px;
  }
}
@media (min-width: 1200px) {
  .category-image {
    height: 320px;
  }
  .category-image .category-text .title {
    font-size: 32px;
  }
  .category-image .category-text .desc {
    margin-top: 16px;
    font-size: 16px;
  }
}
.category {
  background: var(--category-nav-bg, #fff);
  overflow: hidden;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: var(--category-nav-align, flex-start);
  overflow: hidden;
  margin: 0 -8px;
}
.category-nav .item {
  display: inline-block;
  padding: 0 8px;
  position: relative;
  width: var(--category-nav-with, 33.33%);
  text-align: center;
}
.category-nav .item > a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--body-color);
  transition: all 0.3s ease;
  font-size: 14px;
  line-height: 48px;
}
.category-nav .item > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: all 0.3s ease;
}
.category-nav .item:hover > a, .category-nav .item.active > a {
  color: var(--primary-color);
}
.category-nav .item:hover > a:before, .category-nav .item.active > a:before {
  background: var(--primary-color);
}

@media (min-width: 768px) {
  .category-nav {
    margin: 0 -32px;
  }
  .category-nav .item {
    padding: 0 32px;
    width: auto;
  }
  .category-nav .item > a {
    font-size: 16px;
    line-height: 64px;
  }
  .category-nav .item > a:before {
    height: 4px;
  }
}
.category-nav-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: var(--category-nav-align, flex-start);
  overflow: hidden;
  margin: 8px -8px;
}
.category-nav-btn .item {
  display: inline-block;
  padding: 8px;
  position: relative;
  width: var(--category-nav-with, 33.33%);
  text-align: center;
}
.category-nav-btn .item > a {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: middle;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--body-color);
  transition: all 0.3s ease;
  font-size: 14px;
  line-height: 32px;
  border-radius: var(--category-nav-radius, 16px);
  background: var(--gray-color);
}
.category-nav-btn .item:hover > a, .category-nav-btn .item.active > a {
  color: #fff;
  background: var(--primary-color);
}

@media (min-width: 768px) {
  .category-nav-btn {
    margin: 16px -16px;
  }
  .category-nav-btn .item {
    padding: 0 16px;
    width: auto;
  }
  .category-nav-btn .item > a {
    font-size: 16px;
    line-height: 40px;
    border-radius: var(--category-nav-radius, 24px);
    padding: 0 24px;
  }
  .category-nav-btn .item > a:before {
    height: 4px;
  }
}
.list-image-b .item, .list-image-a .item, .list-image .item {
  position: relative;
  display: block;
  background: var(--item-bg-color, #fff);
  border: 1px solid var(--item-border-color, transparent);
  border-radius: var(--item-border-radius, 0);
  transition: all 0.2s linear;
}
.list-image-b .item.animate-translate:hover, .list-image-a .item.animate-translate:hover, .list-image .item.animate-translate:hover {
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
  transform: translate3d(0, -5px, 0);
}
.list-image-b .item.animate-scale:hover .thumb img, .list-image-a .item.animate-scale:hover .thumb img, .list-image .item.animate-scale:hover .thumb img {
  transform: scale(1.1);
}
.list-image-b .thumb, .list-image-a .thumb, .list-image .thumb {
  overflow: hidden;
}
.list-image-b .thumb img, .list-image-a .thumb img, .list-image .thumb img {
  transition: all 0.2s linear;
}
.list-image-b .content, .list-image-a .content, .list-image .content {
  text-align: var(--item-content-align, left);
}
.list-image-b .title, .list-image-a .title, .list-image .title {
  color: var(--item-title-color, var(--body-color));
  font-size: 14px;
}
.list-image-b .full-title, .list-image-a .full-title, .list-image .full-title {
  color: var(--item-title-color, var(--body-color));
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 42px;
}
.list-image-b .desc, .list-image-a .desc, .list-image .desc {
  margin-top: 4px;
  color: var(--item-desc-color, var(--secondary-color));
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 36px;
}
.list-image-b .divider, .list-image-a .divider, .list-image .divider {
  margin-top: 4px;
  width: 100%;
  border-top: 1px solid var(--item-divider-color, var(--border-color));
}

@media (min-width: 768px) {
  .list-image-b .title, .list-image-a .title, .list-image .title {
    font-size: 18px;
  }
  .list-image-b .full-title, .list-image-a .full-title, .list-image .full-title {
    font-size: 18px;
    height: 54px;
  }
  .list-image-b .desc, .list-image-a .desc, .list-image .desc {
    margin-top: 8px;
    font-size: 16px;
    height: 48px;
  }
  .list-image-b .divider, .list-image-a .divider, .list-image .divider {
    margin-top: 8px;
  }
}
.list-image .content {
  padding: var(--item-content-padding, 8px);
}

@media (min-width: 768px) {
  .list-image .content {
    padding: var(--item-content-padding, 16px);
  }
}
.list-image-a .item {
  padding: var(--item-content-padding, 8px);
}
.list-image-a .content {
  padding-top: 8px;
}

@media (min-width: 768px) {
  .list-image-a .item {
    padding: var(--item-content-padding, 16px);
  }
  .list-image-a .content {
    padding-top: 16px;
  }
}
.list-image-b .content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.3);
}
.list-image-b .title, .list-image-b .full-title {
  color: #fff;
}

@media (min-width: 768px) {
  .list-image-b .content {
    padding: 8px 16px;
  }
}
.list-image-c .item {
  display: flex;
  width: 100%;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}
.list-image-c .thumb {
  display: block;
  width: 280px;
  height: calc(280px * var(--thumb-ratio, 75%) / 100%);
  padding-top: 0;
}
.list-image-c .content {
  flex: 1;
}

@media (min-width: 768px) {
  .list-image-c .content {
    padding: 8px 16px;
  }
}
.post .post-main, .post .post-detail, .post .post-recommend {
  background: #fff;
  padding: 16px 0;
  border-radius: 4px;
}
.post .post-detail {
  margin-bottom: 16px;
}

@media (min-width: 1200px) {
  .post {
    display: flex;
    align-items: flex-start;
  }
  .post .post-main {
    padding: 32px;
    width: 100%;
  }
  .post .post-detail {
    padding: 32px;
    width: 780px;
    margin-bottom: 0;
  }
  .post .post-recommend {
    flex: 1;
    padding: 32px 24px;
    margin-left: 32px;
  }
}
.post-list {
  display: block;
}
.post-list .item {
  display: flex;
  align-items: center;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}
.post-list .image {
  width: 120px;
  height: 68px;
  border-radius: 3px;
  overflow: hidden;
}
.post-list .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-list .image + .content {
  margin-left: 8px;
}
.post-list .content {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.post-list .title a {
  display: inline-block;
  max-height: 48px;
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--item-title-color, var(--body-color));
  transition: all 0.3s ease;
}
.post-list .title a:hover {
  color: var(--primary-color);
}
.post-list .desc, .post-list .bottom {
  display: none;
}

@media (min-width: 1200px) {
  .post-list .item {
    align-items: stretch;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  .post-list .image {
    width: 280px;
    height: 158px;
  }
  .post-list .image + .content {
    margin-left: 24px;
    padding: 8px 0;
  }
  .post-list .title a {
    font-size: 22px;
    max-height: 33px;
    -webkit-line-clamp: 1;
  }
  .post-list .desc {
    margin-top: 8px;
    max-height: 42px;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--item-desc-color, var(--secondary-color));
  }
  .post-list .bottom {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 8px;
    display: flex;
  }
  .post-list .bottom .cate, .post-list .bottom .date {
    margin-right: 32px;
    font-size: 14px;
    color: var(--placeholder-color);
    transition: all 0.3s ease;
  }
  .post-list .bottom .cate:hover {
    color: var(--body-color);
  }
  .post-list .bottom i {
    margin-right: 4px;
  }
}
.post-recommend-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--body-color);
}

.post-recommend-list {
  display: block;
}
.post-recommend-list .item {
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.post-recommend-list .image {
  width: 96px;
  height: 54px;
  border-radius: 3px;
  overflow: hidden;
}
.post-recommend-list .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-recommend-list .image + .content {
  margin-left: 8px;
}
.post-recommend-list .content {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.post-recommend-list .title a {
  display: inline-block;
  max-height: 48px;
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--item-title-color, var(--body-color));
  transition: all 0.3s ease;
}
.post-recommend-list .title a:hover {
  color: var(--primary-color);
}

@media (min-width: 1200px) {
  .post-recommend-title {
    font-size: 22px;
  }
}
.detail {
  max-width: 960px;
  margin: 0 auto;
}

.detail-box {
  margin-bottom: 24px;
}

.detail-main {
  background: #fff;
}

.detail-recommend {
  margin-top: 32px;
  background: #fff;
}

.detail-title {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 500;
  color: var(--body-color);
}

.detail-header h1.title {
  font-size: 22px;
  font-weight: 500;
  color: var(--body-color);
}
.detail-header h2.title {
  font-size: 18px;
  font-weight: 500;
  color: var(--body-color);
}
.detail-header .info {
  margin-top: 8px;
  font-size: 12px;
  color: var(--placeholder-color);
}
.detail-header .info span + span {
  margin-left: 8px;
}
.detail-header .info a {
  color: var(--placeholder-color);
  transition: all 0.3s ease;
}
.detail-header .info a:hover {
  color: var(--body-color);
}
.detail-header .desc {
  margin-top: 8px;
  color: var(--secondary-color);
  font-size: 12px;
}
.detail-header .meta {
  padding: 8px 16px;
  margin-top: 16px;
  border-radius: 3px;
  background: var(--gray-color);
}
.detail-header .meta .meta-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 12px;
}
.detail-header .meta .meta-label {
  min-width: 80px;
}
.detail-header .price {
  border-bottom: 1px solid var(--border-color);
}
.detail-header .price .price-symbol {
  margin-left: 8px;
  font-size: 18px;
  color: #e4393c;
}
.detail-header .price .price-text {
  font-size: 28px;
  color: #e4393c;
}
.detail-header .action {
  margin-top: 16px;
}

.detail-content {
  margin: 8px 0;
  padding: 16px 0;
  font-size: 14px;
  line-height: 2;
  color: var(--body-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.detail-image {
  position: relative;
  margin: 0 -16px;
}
.detail-image .detail-slider {
  padding-top: 100%;
}
.detail-image .detail-slider .slider {
  position: absolute;
  left: 0;
  top: 0;
}
.detail-image .detail-thumb {
  position: relative;
  padding-top: 100%;
  background-color: #f8f9fa;
}
.detail-image .detail-thumb img {
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1200px) {
  .detail-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
  }
  .detail-box .detail-main {
    width: 760px;
  }
  .detail-box .detail-recommend {
    flex: 1;
    margin-left: 56px;
    margin-top: 0;
    overflow: hidden;
  }
  .detail-header {
    flex: 1;
  }
  .detail-header h1.title {
    font-size: 34px;
  }
  .detail-header h2.title {
    font-size: 26px;
  }
  .detail-header .info {
    margin-top: 16px;
    font-size: 14px;
  }
  .detail-header .info span + span {
    margin-left: 24px;
  }
  .detail-header .desc {
    margin-top: 16px;
    font-size: 14px;
  }
  .detail-header .meta {
    margin-top: 24px;
  }
  .detail-header .meta .meta-item {
    margin-bottom: 16px;
    font-size: 14px;
  }
  .detail-header .action {
    margin-top: 24px;
  }
  .detail-content {
    margin: 16px 0;
    padding: 32px 0;
    font-size: 16px;
  }
  .detail-image {
    margin: 0 48px 0 0;
    padding: 16px;
    border: 1px solid var(--border-color);
  }
  .detail-image .detail-slider {
    width: 380px;
    height: 380px;
    padding-top: 0;
  }
  .detail-image .detail-slider .slider {
    position: relative;
  }
  .detail-image .detail-thumb {
    width: 380px;
    height: 380px;
    padding-top: 0;
  }
}
.recommend + .recommend {
  margin-top: 32px;
}

@media (min-width: 1200px) {
  .recommend + .recommend {
    margin-top: 48px;
  }
  .detail-title {
    font-size: 22px;
  }
}
.recommend-list .item {
  display: flex;
  align-items: center;
}
.recommend-list .item + .item {
  margin-top: 16px;
}
.recommend-list .item .image {
  width: 106px;
  height: 60px;
}
.recommend-list .item .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recommend-list .item .content {
  flex: 1;
  margin-left: 16px;
}
.recommend-list .item .title a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  max-height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: inherit;
  transition: all 0.3s ease;
  color: var(--body-color);
}
.recommend-list .item .title:hover a {
  color: var(--primary-color);
}

.recommend-card {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: -16px -8px 0;
}
.recommend-card .item {
  width: 50%;
  padding: 0 8px;
  margin-top: 16px;
}
.recommend-card .item .image {
  position: relative;
  padding-top: var(--thumb-ratio, 56.25%);
  background-color: #f8f9fa;
}
.recommend-card .item .image img {
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recommend-card .item .content {
  margin-top: 8px;
}
.recommend-card .item .title a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  max-height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: inherit;
  transition: all 0.3s ease;
  color: var(--body-color);
}
.recommend-card .item .title:hover a {
  color: var(--primary-color);
}

.recommend-text .item {
  display: flex;
  align-items: flex-start;
}
.recommend-text .item + .item {
  margin-top: 16px;
}
.recommend-text .item:nth-child(1) .num {
  color: #fe2d46;
}
.recommend-text .item:nth-child(2) .num {
  color: #F60;
}
.recommend-text .item:nth-child(3) .num {
  color: #FAA90E;
}
.recommend-text .item .num {
  display: flex;
  width: 24px;
  height: 24px;
  margin-top: 0px;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  background: var(--gray-color);
  color: var(--secondary-color);
  font-size: 14px;
}
.recommend-text .item .content {
  flex: 1;
  margin-left: 16px;
}
.recommend-text .item .title a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  max-height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: inherit;
  transition: all 0.3s ease;
  color: var(--body-color);
}
.recommend-text .item .title:hover a {
  color: var(--primary-color);
}

.bx-wrapper {
  position: relative;
}

.bx-pager {
  position: absolute;
  bottom: 6px;
  left: 50%;
  z-index: 10;
  width: 80%;
  padding-left: 0;
  margin-left: -40%;
  text-align: center;
  list-style: none;
}
.bx-pager .bx-pager-item {
  display: inline-block;
}
.bx-pager .bx-pager-item a {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 3px;
  margin: 3px;
  text-indent: -999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}
.bx-pager .bx-pager-item .active {
  background: #fff;
}

.bx-controls-direction {
  display: none;
}

@media (min-width: 768px) {
  .bx-controls-direction {
    display: block;
  }
  .bx-pager {
    bottom: 20px;
  }
  .bx-pager .bx-pager-item a {
    width: 40px;
    height: 4px;
    margin: 3px;
  }
  .bx-prev,
  .bx-next {
    display: block;
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(30, 30, 30, 0.3);
    color: #fff;
    z-index: 10;
  }
  .bx-prev i,
  .bx-next i {
    color: #fff;
  }
  .bx-prev:hover,
  .bx-next:hover {
    background-color: rgba(30, 30, 30, 0.6);
  }
  .bx-prev {
    left: 40px;
  }
  .bx-next {
    right: 40px;
  }
  .circle {
    border-radius: 40px;
  }
}
.list-slider {
  opacity: 0;
}

.list-slider .bx-pager {
  bottom: -20px;
}

.list-slider .bx-pager .bx-pager-item a {
  width: 6px;
  height: 6px;
  margin: 0 4px;
  background: rgba(30, 30, 30, 0.3);
}

.list-slider .bx-pager .bx-pager-item .active {
  background: rgba(30, 30, 30, 0.5);
}

@media (min-width: 768px) {
  .list-slider .bx-controls-direction {
    display: none;
  }
  .list-slider .bx-pager {
    bottom: -30px;
  }
  .list-slider .bx-pager .bx-pager-item a {
    width: 8px;
    height: 8px;
    margin: 0 5px;
  }
}
@media (min-width: 992px) {
  .list-slider .bx-controls-direction {
    display: block;
  }
  .list-slider .bx-prev {
    left: -50px;
  }
  .list-slider .bx-next {
    right: -50px;
  }
  .list-slider.with-circle .bx-prev,
  .list-slider.with-circle .bx-next {
    border-radius: 100%;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.favorable .item img {
  display: block;
  width: 100%;
}

.telphone {
  margin-left: 20px;
  vertical-align: middle;
  line-height: 0;
}
.telphone img {
  display: inline-block;
  width: auto;
  height: 24px;
}

.about .about-img img {
  width: 100%;
  margin: 0 auto;
}
.about .about-body {
  line-height: 2em;
}
.about .about-group {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}
.about .about-group .about-group-item {
  padding: 12px;
  background: #f7f7f7;
  text-align: center;
  font-size: 12px;
}

@media (min-width: 1200px) {
  .about .about-group {
    margin-top: 32px;
    padding-top: 32px;
  }
  .about .about-group .about-group-item {
    font-size: 14px;
  }
}
.service .service-top {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 40px 20px;
  border-radius: 4px;
}
.service .service-top .image {
  width: 60%;
  max-width: 420px;
  margin: 0 auto;
}
.service .service-top .image img {
  display: block;
  width: 100%;
}
.service .service-top .content {
  flex: 1;
  margin-top: 20px;
  overflow: hidden;
}
.service .service-top .title {
  font-size: 22px;
  font-weight: 700;
}
.service .service-top .desc {
  font-size: 14px;
  color: var(--secondary-color);
}
.service .service-top .name {
  font-size: 14px;
  margin-top: 20px;
}
.service .service-top .list-type {
  margin-top: 10px;
}
.service .service-top .list-type .item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 2px;
  border-radius: 10px;
}
.service .service-top .list-type .item img {
  display: block;
  width: 26px;
}
.service .service-top .list-type .item span {
  margin-left: 4px;
  font-size: 14px;
  color: #fff;
}
.service .service-top .list-type .item.color1 {
  background: var(--danger-color);
}
.service .service-top .list-type .item.color2 {
  background: var(--primary-color);
}
.service .service-top .list-type .item.color3 {
  background: var(--warning-color);
}
.service .service-top .list-type .item.color4 {
  background: var(--success-color);
}
.service .service-top .list-text {
  margin-top: 6px;
  color: var(--warning-color);
}
.service .service-top .list-text span {
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}
.service .service-top .list-text .icon {
  padding-right: 6px;
}
.service .service-top .link {
  margin-top: 20px;
  text-align: center;
}
.service .service-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 20px 12px;
  border-radius: 4px;
}
.service .service-item .image {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.service .service-item .image img {
  display: block;
  width: 100%;
}
.service .service-item .content {
  flex: 1;
  margin-top: 20px;
  overflow: hidden;
}
.service .service-item .title {
  font-size: 16px;
  font-weight: 700;
}
.service .service-item .desc {
  font-size: 14px;
  color: var(--secondary-color);
}
.service .service-item .data {
  margin-top: 20px;
  border-top: 1px solid var(--border-color);
}
.service .service-item .text {
  margin-top: 10px;
  font-size: 12px;
  line-height: 2em;
}

@media (min-width: 768px) {
  .service .service-top .content {
    margin-top: 0px;
    margin-left: 20px;
  }
  .service .service-top .title {
    font-size: 28px;
  }
  .service .service-top .desc {
    font-size: 16px;
  }
  .service .service-top .name {
    font-size: 16px;
  }
  .service .service-top .list-type .item img {
    width: 36px;
  }
  .service .service-top .list-type .item span {
    font-size: 16px;
  }
  .service .service-top .list-text span {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .service .service-item .image {
    width: 60%;
  }
  .service .service-item .content {
    margin-top: 0px;
    margin-left: 20px;
  }
  .service .service-item .title {
    font-size: 28px;
  }
  .service .service-item .desc {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .service .service-top {
    margin-bottom: 32px;
    flex-direction: row;
  }
  .service .service-top .image {
    width: 36%;
    max-width: 480px;
  }
  .service .service-top .name {
    font-size: 16px;
  }
  .service .service-top .link {
    text-align: left;
  }
  .service .service-item {
    flex-direction: row;
  }
  .service .service-item .image {
    width: 36%;
    max-width: 480px;
  }
  .service .service-item .text {
    font-size: 16px;
  }
}
.strength {
  --category-nav-with: 33.33%;
}
.strength .category-nav-btn {
  justify-content: center !important;
}
.strength .tab-content .item {
  width: 100%;
  display: none;
  overflow: hidden;
}
.strength .tab-content .active {
  display: block;
}
.strength .content {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.strength .content img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.strength .text {
  flex: 1;
  margin-right: 30px;
}
.strength .text span {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 2em;
}
.strength .image {
  flex: 1;
}

.favorable {
  background: var(--gray-color);
}

.advantage .item {
  display: flex;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
  padding: 10px;
}
.advantage .item .image {
  width: 32px;
}
.advantage .item .image img {
  display: block;
  max-width: 100%;
}
.advantage .item .content {
  flex: 1;
  margin-left: 10px;
  overflow: hidden;
}
.advantage .item .name {
  font-size: 16px;
  margin-bottom: 4px;
}
.advantage .item .text {
  font-size: 12px;
}

@media (min-width: 768px) {
  .advantage .item {
    padding: 16px;
  }
  .advantage .item .image {
    width: 60px;
  }
  .advantage .item .content {
    margin-left: 20px;
  }
  .advantage .item .name {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .advantage .item .text {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .advantage .item {
    padding: 32px;
  }
  .advantage .item .image {
    width: 80px;
  }
}
.seek {
  background-size: cover;
  background-position: center top;
  object-fit: cover;
}
.seek .content {
  padding: 40px 8px;
  text-align: center;
}
.seek .content .title {
  margin-bottom: 10px;
  font-size: 26px;
  color: #fff;
}
.seek .content .title span {
  display: block;
}
.seek .content .text {
  margin-bottom: 20px;
  font-size: 18px;
  color: #fff;
}
.seek .content .phone {
  font-size: 38px;
  color: #fff;
}
.seek .content .btn {
  color: #fff;
  min-width: 200px;
}
.seek .content .btn:hover {
  border-color: #fff !important;
  background: #fff;
  color: var(--primary-color);
}

@media (min-width: 768px) {
  .seek .content {
    padding: 100px 20px;
  }
  .seek .content .title {
    font-size: 36px;
  }
  .seek .content .title span {
    display: inline-block;
  }
  .seek .content .text {
    font-size: 28px;
  }
}
.footer {
  background: #202543;
}
.footer .footer-top {
  padding: 24px 0;
  display: flex;
  align-items: center;
}
.footer .footer-top img {
  height: 36px;
}
.footer .footer-top span {
  margin-left: 10px;
  font-size: 16px;
  color: #fff;
}
.footer .footer-main {
  border-top: 1px solid #363d5a;
  padding: 24px 0;
  color: #c0c1c9;
}
.footer .footer-main .text {
  font-size: 14px;
  line-height: 2em;
}
.footer .footer-main .text b {
  font-size: 18px;
  font-weight: 500;
}
.footer .footer-main .link {
  margin-top: 24px;
  font-size: 12px;
  line-height: 2em;
}
.footer .footer-main .link a {
  display: inline-block;
  color: #c0c1c9;
  margin-right: 6px;
}
.footer .footer-main .qrcode {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer .footer-main .qrcode .qrcode-item {
  margin-right: 24px;
}
.footer .footer-main .qrcode .qrcode-item img {
  display: block;
  width: 120px;
  height: 120px;
}
.footer .footer-main .qrcode .qrcode-item span {
  display: block;
  margin-top: 8px;
  text-align: center;
  font-size: 14px;
}
.footer .copyright {
  border-top: 1px solid #363d5a;
}
.footer .copyright .content {
  padding: 20px 0 30px;
  text-align: center;
}
.footer .copyright .content span {
  display: block;
  font-size: 12px;
  margin: 3px 0;
  color: #a6a8b5;
}
.footer .copyright .content a {
  color: #a6a8b5;
}

@media (min-width: 768px) {
  .footer .footer-top {
    padding: 40px 0;
  }
  .footer .footer-top span {
    font-size: 26px;
  }
  .footer .footer-main {
    padding: 40px 0;
  }
  .footer .footer-main .text {
    font-size: 16px;
  }
  .footer .footer-main .text b {
    font-size: 26px;
  }
  .footer .footer-main .link {
    margin-top: 30px;
    font-size: 13px;
  }
  .footer .footer-main .link a {
    margin-right: 6px;
  }
  .footer .copyright .content {
    display: flex;
    justify-content: space-between;
    text-align: center;
  }
  .footer .copyright .content span {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .footer .footer-main .qrcode {
    justify-content: flex-end;
  }
  .footer .footer-main .qrcode .qrcode-item {
    margin-right: 0px;
    margin-left: 30px;
  }
}
.form .form-submit {
  width: 100%;
  text-align: center;
}
.form .form-submit .btn {
  width: 50%;
}

.plus-wap {
  position: fixed;
  right: 10px;
  bottom: 10%;
  z-index: 100;
}

.plus-wap .plug-item {
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(0, 66, 151, 0.9);
  border-radius: 50px;
}

.plus-wap .plug-item + .plug-item {
  margin-top: 4px;
}

.plus-wap .plug-item i {
  padding-bottom: 4px;
  font-size: 18px;
  line-height: 1;
  color: #fff;
}

.plus-wap .plug-item span {
  font-size: 12px;
  line-height: 1;
  color: #fff;
}

.plus-wap .plug-item span + span {
  margin-top: 4px;
}