@charset "UTF-8";
:root {
  --container-color:#FFF;
  --surface-color:#FFF;
  --placeholder-bg-color:#CCC;
  --text-color:#3d3d3d;
  --shadow: 0 0 2rem rgba(0,0,0,0.05);
  --gray-bg-color:#EEE;
  --low-bg-color:#F5F5F8;
  --primary-color:#EB6100;
  --hv-primary-color:#eb610008;
  --primary-light-color:#fff4ec;
  --border-light-color:#E5E5EF;
  --border-color:#E1E1EF;
  --text-secondary-color:#9E9E9E;
  --text-low-color:#DDDDDD;
  --text-w-color:#FFFFFF;
  --line-color:#3d3d3d;
  --dark-surface-color:#585858;
  --arrow-url:url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9.066561698913574 5.063591480255127"%3E%3Cpath d="M4.53328,5.06359C4.40728,5.06359,4.28655,5.01309,4.19835,4.92346L0.134037,0.793879C-0.0472639,0.609692,-0.0442579,0.314018,0.140721,0.133493C0.325683,-0.0470166,0.622618,-0.044055,0.803887,0.140148L4.53328,3.92943L8.26267,0.140149C8.44394,-0.0440707,8.74084,-0.0470797,8.92584,0.133493C9.11083,0.314034,9.11382,0.609692,8.93252,0.79388L4.8682,4.92346C4.78001,5.01309,4.65929,5.06359,4.53328,5.06359Z" fill="%23999999"/%3E%3C/svg%3E');
  --line-arrow-url:url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="none" width="16" height="16" viewBox="0 0 16 16"%3E%3Cpath d="M14.3833 7.66664L10.4633 2.9733c-.1719-.2289-.5005-.267-.7202-.0836s-.1945.5135.00003.7236l3.2366 3.8867H2a.5.5 0 000 1h10.9333l-3.24 3.8867c-.1944.21-.1732.54.0465.7234.2197.1834.5482.1454.7201-.0834l3.9233-4.6934c.1698-.1898.1698-.4769 0-.6667z" fill="%23999999" fill-opacity="1"/%3E%3C/svg%3E');
}
:root.dark-mode {
  --container-color:#222;
  --surface-color:#222;
  --placeholder-bg-color:#CCC;
  --text-color:#FFF;
  --shadow: 0 0 2rem rgba(0,0,0,0.05);
  --gray-bg-color:#EEE;
  --low-bg-color:#333;
  --border-color:#333;
  --border-light-color:#333;
  --text-secondary-color:#CCC;
  --text-low-color:#CCC;
  --text-w-color:#FFF;
  --line-color:#CCC;
}

p, ul, dl, ol, dd {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

.list-cover {
  --aspect-ratio: 16/9;
  position: relative;
  height: 0;
  padding-bottom: calc(100% / (var(--aspect-ratio)));
  overflow: hidden;
  background-color: var(--gray-bg-color);
}
.list-cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  --cols: 1;
  --gap: 0;
  grid-template-columns: repeat(var(--cols), 1fr);
  grid-gap: var(--gap);
  margin-top: var(--mt, 0);
}
.list-body-mini {
  max-height: 18rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  animation: fade-in 0.5s;
}
.list-body-mini::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, transparent, var(--container-color));
  z-index: 1;
}
.list-body-mini::after {
  content: "点击展开";
  text-align: center;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid;
  padding: 0.5rem 2rem;
  background-color: var(--container-color);
  line-height: 1;
  font-size: 0.75rem;
  z-index: 2;
}
.list-body * {
  font: inherit !important;
}

html {
  font-size: 16px;
}
@media screen and (max-width: 1920px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 12px;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  html.mobile-nav-active {
    overflow: hidden;
  }
}

.btn {
  --btn-color:var(--text-color);
  --btn-hover-color:var(--text-w-color);
  border: 1px solid;
  color: var(--btn-color);
  padding: 0.5rem 0.7rem;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s;
}
.btn:hover {
  background-color: var(--btn-color);
  color: var(--btn-hover-color);
}

@font-face {
  font-family: "sans";
  src: url("/static/fonts/Source%20Han%20Sans%20CN%20Regular.ttf") format("truetype");
  font-display: swap;
}
a {
  color: inherit;
  text-decoration: inherit;
}

body {
  background-color: var(--container-color);
  margin: 0;
  color: var(--text-color);
  font-family: "sans";
  min-width: 1200px;
}
@media screen and (max-width: 1024px) {
  body {
    min-width: 100%;
  }
}

.in {
  margin: 0 auto;
  max-width: calc(100% - 2rem);
}
@media screen and (max-width: 1920px) {
  .in {
    width: 1600px;
  }
}
@media screen and (max-width: 1440px) {
  .in {
    width: 1280px;
  }
}

.icon {
  display: block;
  --size:var(--icon-size, 1.5rem);
  width: var(--size, var(--size));
  height: var(--size, var(--size));
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: inherit;
}

.index-banner {
  position: relative;
  background-color: var(--placeholder-bg-color);
  --swiper-navigation-color: #FFF;
  --swiper-navigation-size:3rem;
}
.index-banner .swiper-button-next, .index-banner .swiper-button-prev {
  background-color: rgba(0, 0, 0, 0.1);
  width: calc(var(--swiper-navigation-size) / 1.5);
  height: var(--swiper-navigation-size);
  border-radius: 0.5rem;
}
.index-banner .swiper-button-next::after, .index-banner .swiper-button-prev::after {
  --swiper-navigation-size: calc(var(--swiper-navigation-size) - 0.1rem);
}
.index-banner-swiper {
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.index-banner .swiper-slide {
  width: 100%;
  height: 100%;
}
.index-banner-pages {
  box-shadow: var(--shadow);
  padding: 0.8rem;
  --swiper-theme-color: var(--primary-color);
  --swiper-pagination-bullet-width:1.25rem;
  --swiper-pagination-bullet-height:0.375rem;
  --swiper-pagination-bullet-active-color:var(--primary-color);
  --swiper-pagination-bullet-border-radius:0.2rem;
}
.index-banner-pages-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  --gap:1rem;
  margin-left: calc(0px - var(--gap));
}
.index-banner-pages-list > * {
  margin-left: var(--gap);
  width: 1.25rem;
  height: 0.375rem;
  border-radius: 0.2rem;
  background-color: var(--gray-bg-color);
}
.index-banner-pages-list > *.active {
  background-color: var(--primary-color);
}

.header {
  position: relative;
  z-index: 99;
  padding-top: 1rem;
}
.header-content {
  --nav-height:4rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  border-radius: 0.375rem;
  background-color: var(--surface-color);
  padding: 0 1rem;
}
.header-default .header-content {
  padding: 0;
}
.header .logo-img {
  width: 11.25rem;
  display: block;
}
@media screen and (max-width: 1024px) {
  .header .logo-img {
    width: 8rem;
  }
}
.header .logo-link {
  display: block;
}
.header-default .header {
  background-color: var(--surface-color);
  box-shadow: var(--shadow);
  padding-top: 0;
}
.header-default .header-nav-sub {
  background-color: var(--surface-color);
  margin-top: 0;
  border-top: 1px solid var(--border-light-color);
  box-shadow: var(--shadow);
}
.header-default .header-nav-sub-content {
  box-shadow: none;
}
@media screen and (max-width: 1024px) {
  .header-nav {
    display: none;
  }
  :root.mobile-nav-active .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--surface-color);
    overflow-y: auto;
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .header-nav {
    margin-left: auto;
  }
}
.header-nav-mobile-btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header-nav-mobile-btn {
    display: block;
    width: 1.5rem;
    height: 0.6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: auto;
    position: relative;
  }
  .header-nav-mobile-btn::before, .header-nav-mobile-btn::after {
    content: "";
    width: 1.2rem;
    height: 2px;
    background-color: var(--line-color);
    display: block;
    transform-origin: center;
    transition: all 0.3s;
  }
  .mobile-nav-active .header-nav-mobile-btn::before {
    transform: rotate(45deg) translateX(30%);
  }
  .mobile-nav-active .header-nav-mobile-btn::after {
    transform: rotate(-45deg) translateX(30%);
  }
}
.header-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  --gap:2rem;
  margin-left: calc(0px - var(--gap));
}
@media screen and (min-width: 1024px) {
  .header-nav-list {
    display: flex;
  }
}
.header-nav-list > * {
  margin-left: var(--gap);
}
@media screen and (max-width: 1024px) {
  .header-nav-list > * {
    border-bottom: 1px solid var(--border-light-color);
  }
}
.header-nav-list > * > a {
  display: flex;
  align-items: center;
  line-height: 1;
  position: relative;
  height: var(--nav-height);
  line-height: var(--nav-height);
  padding: 0 1rem;
}
.header-nav-list > * > a.has-sub::after {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  background-image: var(--arrow-url);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 0.5rem;
}
@media screen and (max-width: 1024px) {
  .header-nav-list > * > a.has-sub::after {
    margin-left: auto;
  }
}
.header-nav-list > *:hover > a {
  color: var(--primary-color);
}
@media screen and (min-width: 1024px) {
  .header-nav-list > *:hover > a {
    background-color: var(--hv-primary-color);
  }
}
@media screen and (min-width: 1024px) {
  .header-nav-list > *:hover > a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
  }
}
.header-nav-list > *:hover .header-nav-slide-container {
  pointer-events: auto;
}
.header-nav-list > *:hover .header-nav-sub {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0%);
}
.header-nav-list a {
  color: inherit;
  text-decoration: none;
}
.header-nav-slide-container {
  top: 100%;
  overflow: hidden;
  pointer-events: none;
  width: 100%;
  padding-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .header-nav-slide-container {
    position: absolute;
    left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-slide-container {
    display: none;
  }
  .active-sub > .header-nav-slide-container {
    display: block;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
    overflow-y: auto;
    background-color: var(--surface-color);
  }
}
.header-nav-sub {
  transition: all 0.3s;
  width: 100%;
  margin-top: 2px;
}
@media screen and (max-width: 1024px) {
  .header-nav-sub-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--border-light-color);
    background-color: var(--surface-color);
    position: sticky;
    top: 0;
  }
  .header-nav-sub-backbtn {
    display: flex;
    align-items: center;
  }
  .header-nav-sub-backbtn::after {
    content: "后退";
    display: block;
    margin-left: 0.5rem;
  }
  .header-nav-sub-backbtn::before {
    content: "";
    width: 1rem;
    height: 1rem;
    display: block;
    background: var(--arrow-url) no-repeat center;
    background-size: contain;
    transform: rotate(90deg);
  }
}
@media screen and (min-width: 1024px) {
  .header-nav-sub {
    transform: translateY(-100%);
    visibility: hidden;
    opacity: 0;
  }
}
.header-nav-sub-content {
  background-color: var(--surface-color);
  border-radius: 6px;
  padding: 2rem;
}
@media screen and (min-width: 1024px) {
  .header-nav-sub-content {
    box-shadow: var(--shadow);
  }
}

.subnav-frame1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 2rem;
}
.subnav-frame1-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.subnav-frame1-list > dt {
  font-weight: bold;
}
.subnav-frame1-list > dd {
  margin: 0;
  padding: 0;
  margin-top: 1rem;
}
.subnav-frame1-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
  line-height: 1;
}
.subnav-frame2 {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .subnav-frame2 {
    flex-direction: column;
    gap: 2rem;
  }
}
.subnav-frame2-left {
  width: 37.5rem;
  max-width: 100%;
  font-size: 0.85rem;
}
.subnav-frame2-left-img {
  max-width: 100%;
}
.subnav-frame2-right {
  margin-left: auto;
  width: 200px;
  border-left: 1px solid var(--border-light-color);
}
@media screen and (max-width: 1024px) {
  .subnav-frame2-right {
    margin-top: 2rem;
    width: 100%;
    border-left: none;
  }
}
.subnav-frame2-center {
  flex: auto;
  text-align: center;
  color: var(--text-secondary-color);
}
.subnav-frame2-right ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0rem;
  line-height: 1;
}
.subnav-frame2-right ul > li {
  border-bottom: 1px solid var(--border-light-color);
  padding: 1rem 1rem;
}
.subnav-frame2-right ul > li:last-child {
  border-bottom: none;
}

.search-icon {
  margin-left: 2rem;
  width: 1.5rem;
  height: 1.5rem;
  box-sizing: content-box;
  display: block;
  background: url(/static/img/src.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  .search-icon {
    display: none;
  }
}
.search-result-tag {
  white-space: nowrap;
  background-color: var(--gray-bg-color);
  padding: 0.4rem 0.5rem;
  border-radius: 0.5rem;
  line-height: 1;
  font-size: 0.875rem;
}
.search-result-tag:hover {
  background-color: var(--primary-color);
  color: var(--text-w-color);
}
.search-box {
  display: inline-flex;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 2px solid var(--primary-color);
  width: 500px;
  max-width: 100%;
}
.search-btn {
  border: none;
  background-color: var(--primary-color);
  color: var(--text-w-color);
  padding: 0 2rem;
  appearance: none;
  white-space: nowrap;
}
.search-input {
  padding: 0.8rem 1rem;
  border: none;
  flex: auto;
  font: inherit;
  outline: none;
  background-color: transparent;
  text-align: inherit;
  min-width: 0;
}
.search-input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s; /* 防止背景色快速恢复 */
}

.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 600px) {
  .section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.section-title {
  font-size: 2.25rem;
  font-weight: 600;
  padding: 0 0 0 2rem;
  margin: 0;
  line-height: 1.2;
  border-left: 5px solid var(--primary-color);
}
.section-title::after {
  content: attr(en);
  color: var(--text-low-color);
  display: block;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.section-header-more {
  margin-left: auto;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.section-header-more::after {
  content: "";
  display: block;
  --icon-size:1rem;
  width: var(--icon-size);
  height: var(--icon-size);
  background: var(--arrow-url) no-repeat center center;
  background-size: contain;
  transform: rotate(-90deg);
  margin-left: 0.5rem;
}

.index-about {
  padding: 4rem 0 0 0;
  position: relative;
  display: flex;
}
.index-about-section {
  position: relative;
  padding: 0 0 2rem 0;
}
.index-about-section::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 12rem);
  background-color: var(--primary-color);
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .index-about-section::before {
    height: calc(100% - 10rem);
  }
}
.index-about-list {
  flex: 0 0 60%;
  text-align: center;
  --icon-size:3.75rem;
  background-color: var(--container-color);
  box-shadow: var(--shadow);
}
.index-about-list > ul > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  --gap:1rem;
  transition: all 0.3s;
  margin-top: calc(0px - var(--gap));
}
.index-about-list > ul > li > * {
  margin-top: var(--gap);
}
.index-about-list > ul > li svg [fill] {
  transition: all 0.3s;
}
.index-about-list > ul > li:hover {
  color: var(--primary-color);
}
.index-about-list > ul > li:hover svg [fill] {
  fill: var(--primary-color);
}
.index-about-list-icon {
  width: var(--icon-size);
  height: var(--icon-size);
}
.index-about-list-title {
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 600px) {
  .index-about-list-title {
    font-size: 1rem;
  }
}
.index-about-list-desc {
  color: var(--text-secondary-color);
  font-size: 0.875rem;
}

.index-baike-marquee {
  background-color: var(--low-bg-color);
  padding: 1rem;
  display: flex;
  align-items: center;
}
.index-baike-marquee::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  margin-right: 1rem;
  background: url(/static/img/icon-baike.svg) no-repeat center center;
  background-size: contain;
  flex-shrink: 0;
}
.index-baike-marquee-btns {
  margin-left: auto;
  --btn-size:1rem;
}
.index-baike-marquee-btns-prev, .index-baike-marquee-btns-next {
  display: block;
  width: var(--btn-size);
  height: calc(var(--btn-size) * 0.8);
  background: var(--arrow-url) no-repeat center center;
  background-size: contain;
  cursor: pointer;
}
.index-baike-marquee-btns-prev:active, .index-baike-marquee-btns-next:active {
  opacity: 0.5;
}
.index-baike-marquee-btns-prev {
  transform: rotate(180deg);
}

.marquee-wrapper {
  overflow: hidden;
  height: 1.5rem;
  max-width: calc(100% - 4rem);
}
.marquee-wrapper a {
  text-decoration: none;
}
.marquee-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.marquee-list > li a {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.index-news-section {
  position: relative;
}
.index-news-header {
  display: flex;
}
.index-news-list-wrapper {
  background-color: var(--container-color);
  margin-top: 2rem;
  box-shadow: var(--shadow);
}
.index-news-list > li .item-container {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.index-news-list-img {
  --img-size:16.375rem;
  width: var(--img-size);
  max-width: 36%;
  aspect-ratio: 16/9;
  background-color: var(--placeholder-bg-color);
  flex-shrink: 0;
  position: relative;
}
.index-news-list-img > img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.index-news-list-img::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.index-news-list-title {
  flex: auto;
  margin-left: 1.5rem;
}

.footer {
  background-color: var(--dark-surface-color);
  padding: 4rem 0;
  color: var(--text-w-color);
}
.footer-title {
  font-size: 1.5rem;
  color: var(--text-secondary-color);
}
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.footer-logo [fill] {
  fill: var(--text-secondary-color);
}

.inpage-r-menu {
  background-color: var(--surface-color);
  box-shadow: var(--shadow);
}
.inpage-r-menu > ul > li:not(:last-child) {
  border-bottom: 1px solid var(--border-light-color);
}
.inpage-r-menu > ul > li > a {
  display: flex;
  align-items: center;
  padding: 1rem 1rem;
}
.inpage-r-menu > ul > li > a::before {
  content: "";
  display: block;
  --icon-size:1.8rem;
  width: var(--icon-size);
  height: var(--icon-size);
  margin-right: 1rem;
  background: var(--icon);
  background-size: contain;
  background-repeat: no-repeat;
}
.inpage-r-menu > ul > li > a:hover {
  background-color: var(--hv-primary-color);
}

.contact-list > li {
  border-top: 1px solid var(--border-light-color);
}
.contact-list > li [fill="#3D3D3D"] {
  transition: all 0.3s;
}
.contact-list > li:hover [fill="#3D3D3D"] {
  fill: var(--primary-color);
}
.contact-actions > * [fill="#000000"] {
  transition: all 0.3s;
}
.contact-actions > *:hover [fill="#000000"] {
  fill: var(--primary-color);
}

.team-list {
  --icon-size: 10rem;
}
@media screen and (max-width: 1024px) {
  .team-list {
    --icon-size:6rem;
  }
}
.team-list > li .icon {
  border-radius: 50%;
  overflow: hidden;
}
.team-view-btn {
  display: inline-flex;
  align-items: center;
  color: var(--text-secondary-color);
}
.team-view-btn::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: var(--line-arrow-url);
  background-size: contain;
  margin-left: 0.5rem;
}

.current-position {
  border-bottom: 1px solid var(--border-light-color);
  padding: 0.5rem 0;
}

.breadcrumb {
  display: flex;
  overflow: hidden;
  overflow-x: auto;
}
.breadcrumb > li > a {
  display: flex;
  align-items: center;
  padding: 0rem;
  white-space: nowrap;
}
.breadcrumb > li > a:hover {
  color: var(--primary-color);
}
.breadcrumb > li {
  display: flex;
  align-items: center;
}
.breadcrumb > li:not(:last-child)::after {
  content: "";
  display: block;
  width: 2rem;
  height: 0.3rem;
  transform: rotate(-90deg);
  background: var(--arrow-url) no-repeat center center;
  background-size: contain;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.breadcrumb [icon=home]::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: url(/static/img/icon-home.svg) no-repeat center;
  background-size: contain;
  margin-right: 0.5rem;
}

@keyframes move-falsh {
  0% {
    left: 0;
  }
  100% {
    left: calc(100% + 6rem);
  }
}
.list-hv-flash > li {
  position: relative;
  overflow: hidden;
}
.list-hv-flash > li:hover::before {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 4rem;
  height: 100%;
  transform: skew(-20deg) translateX(-150%);
  z-index: 1;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3333333333), transparent);
  animation: move-falsh 0.5s linear;
}

.article-body {
  line-height: 2;
  position: relative;
  font-size: 1rem;
}
.article-body table {
  border-collapse: collapse;
  border: 1px solid var(--border-color);
}
.article-body table td {
  border: 1px solid var(--border-color);
  padding: 0.5rem;
}
.article-body img {
  max-width: 100%;
}
.article-body * {
  font-family: inherit !important;
}
.article-body h2 {
  clear: both;
  margin: 2rem 0;
  background: linear-gradient(to right, var(--primary-light-color), transparent);
  padding: 0.5rem 1rem;
  border-radius: 0.8rem;
  overflow: hidden;
  font-size: 1.25rem;
}
.article-body h2::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='16' viewBox='0 0 15 16'%3E%3Cg id='icon-point-4' transform='translate(-363 -695)'%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' transform='translate(363 695)' fill='%23eb6100'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' transform='translate(371 695)' fill='%23eb6100' opacity='0.54'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' transform='translate(371 704)' fill='%23eb6100'/%3E%3Ccircle cx='3.5' cy='3.5' r='3.5' transform='translate(363 704)' fill='%23eb6100'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 1rem;
}
.article-body .section-image {
  width: 12rem;
  border: 3px solid var(--surface-color);
  box-shadow: var(--shadow);
  float: right;
  margin-left: 1rem;
}

.ui-select {
  padding: 0 1rem;
  line-height: 1;
}
.ui-select > dt {
  color: var(--text-secondary-color);
  padding: 0.5rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.ui-select > dt.picked {
  color: var(--text-color);
}
.ui-select > dd {
  position: absolute;
  overflow: hidden;
}
.ui-select:hover > dd > ul {
  transform: translateY(0);
  visibility: visible;
}
.ui-select > dd > ul {
  transform: translateY(-100%);
  visibility: hidden;
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s;
  box-shadow: var(--shadow);
}
.ui-select > dd > ul > li {
  cursor: default;
  padding: 0.5rem 1rem;
}
.ui-select > dd > ul > li:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}
.ui-select > dd > ul > li:hover {
  background-color: var(--hv-primary-color);
}
.ui-select > dd > ul > li.active {
  color: var(--primary-color);
}
.ui-select > dd > ul > li.active [fill="#3D3D3D"] {
  fill: var(--primary-color);
}

.pagelist {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.pagelist > * {
  margin-right: 5px;
}
.pagelist > * > a {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
}
.pagelist > * > a:hover {
  background-color: var(--hv-primary-color);
  border: 1px solid var(--primary-color);
}
.pagelist > * > a.on {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--text-w-color);
}

/*# sourceMappingURL=main.css.map */
