:root {
  --v10-color-primary: #2280bd;
  --swiper-theme-color: #2280bd;
  --header_active_bg_color: #2280bd;
  --header_active_color: #fff;
  --header_font_color: #fff;
  --border_color: #E8E8E8;
  --box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  --float-zIndex: 1000100;
  --float-mask-zIndex: 1000050;
  --fancybox-zIndex: 1000000;
  --header-zIndex: 999999;
  --mobile-header-height: 60px;
}

.article-detail-nav, .article-detail-view .content-area .content-area-wrapper, .article-detail-view .article-detail-header, .article-detail-view, .article-detail-layout {
  display: flex;
  flex-direction: column;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.is-hidden {
  display: none !important;
}

.is-visible {
  display: block !important;
}

.is-invisible {
  visibility: hidden !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 990px) {
  .mobile-hidden {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .desktop-hidden {
    display: none !important;
  }
}

.article-detail-layout {
  gap: 20px;
  box-sizing: border-box;
  padding: 40px;
  background: #fff;
  border: 1px solid #DEE5ED;
  border-radius: 8px;
}
@media (max-width: 990px) {
  .article-detail-layout {
    padding: 14px;
  }
}

.article-detail-view {
  gap: 20px;
  box-sizing: border-box;
}
.article-detail-view .article-detail-header {
  box-sizing: border-box;
}
.article-detail-view .article-title-wrapper {
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #E8E8E8;
}
.article-detail-view .article-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
  margin: 0;
  text-align: center;
}
@media (max-width: 990px) {
  .article-detail-view .article-title {
    font-size: 18px;
  }
}
.article-detail-view .content-area {
  display: block;
  box-sizing: border-box;
  width: 100%;
}
.article-detail-view .content-area .content-area-wrapper {
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
}

.article-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #5A6C8A;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 14px 0;
  border-bottom: 1px solid #DEE5ED;
}
.article-meta .meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}
.article-meta a {
  color: var(--v10-color-primary);
  text-decoration: none;
}
.article-meta a:hover {
  text-decoration: underline;
}
.article-meta .meta-item-share {
  position: relative;
}
@media (max-width: 990px) {
  .article-meta .meta-item-share {
    display: none;
  }
}
.article-meta .meta-item-share .uniui-weixin {
  font-size: 1rem;
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  height: 1.6em;
  width: 1.6em;
  color: #fff;
  background: #98a3b8;
  border-radius: 50%;
  cursor: pointer;
}
.article-meta .meta-item-share .share-float-qrcode {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  padding: 10px;
  display: none;
  z-index: 100;
}
.article-meta .meta-item-share:hover .share-float-qrcode {
  display: block;
}

.article-richtext-content {
  width: 100%;
  display: block;
  font-size: 16px;
  line-height: 1.8;
  color: #222;
}
@media (max-width: 990px) {
  .article-richtext-content {
    font-size: 14px;
  }
}
.article-richtext-content img {
  max-width: 100%;
  height: auto;
}
.article-richtext-content p {
  margin: 0 0 1em;
}
.article-richtext-content table {
  max-width: 100%;
  overflow-x: auto;
  display: block;
}
.article-richtext-content ul, .article-richtext-content menu, .article-richtext-content dir, .article-richtext-content h3 {
  margin-block-start: 0;
  margin-block-end: 0;
}

.article-detail-nav {
  gap: 10px;
  box-sizing: border-box;
  padding-top: 10px;
  border-top: 1px solid #DEE5ED;
}
.article-detail-nav > span, .article-detail-nav > em {
  font-size: 14px;
  color: #5A6C8A;
  line-height: 1.6;
}
.article-detail-nav > span a {
  color: var(--v10-color-primary);
  text-decoration: none;
}
.article-detail-nav > span a:hover {
  text-decoration: underline;
}
.article-detail-nav > em {
  font-style: normal;
  color: #999;
}

.news-empty {
  padding: 60px 20px;
  text-align: center;
}
.news-empty p {
  font-size: 16px;
  color: #999;
  margin: 0;
}