<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --aspect-ratio: 0.5625;
  --article-img-width: 180px;
}

.pt-20px {
  padding-top: 20px;
}

.article-cover img, .banner-swiper-slide .cover img {
  transition: transform 0.5s ease-in-out;
}
.article-cover:hover img, .banner-swiper-slide .cover:hover img {
  transform: scale(1.1);
}

.img-wrap {
  position: relative;
  padding-bottom: calc(var(--aspect-ratio) * 100%);
  height: 0;
}
.img-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.article-list-page,
.article-detail-page {
  color: #333;
}
.article-list-page a,
.article-detail-page a {
  color: inherit;
  text-decoration: inherit;
  transition: all linear 0.2s;
}
.article-list-page a:hover,
.article-detail-page a:hover {
  color: var(--color-primary);
}
/* fix */
.pagination a:hover {
  color: #fff;
}

.breadcrumb {
  margin-bottom: 20px;
  padding: 16px;
  border-radius: 8px;
  background-color: #fff;
  color: #818f97;
  font-size: 0;
}
.breadcrumb li {
  display: inline;
  font-size: 14px;
  line-height: 1;
}
.breadcrumb li + li::before {
  content: '\e60f';
  color: #818f97;
  display: inline-block;
  width: 14px;
  margin: 0 5px;
  font-family: 'iconfont' !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.breadcrumb li a {
  display: inline;
}

.banner {
  margin-bottom: 20px;
  padding: 0 40px;
  border-radius: 8px;
  background-color: #fff;
  position: relative;
  --swiper-navigation-size: 16px;
  --swiper-navigation-color: #999;
  --swiper-navigation-sides-offset: 15px;
}
.banner a {
  display: block;
}
.banner-swiper {
  width: 100%;
}
.banner-swiper .swiper-slide {
  width: calc((100% - 40px) / 3);
  margin-right: 20px;
}
.banner-swiper-slide {
  padding: 16px 0;
  text-align: left;
}
.banner-swiper-slide .cover {
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #e6e6e6;
}
.banner-swiper-slide .title {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.banner-swiper-slide .summary {
  color: #818f97;
  font-size: 13px;
  line-height: 1.8;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.banner-swiper-slide .summary:hover {
  color: #818f97;
}

.articles {
  display: flex;
  align-items: flex-start;
}
.articles-nav {
  padding: 8px 0;
  position: sticky;
  top: calc(var(--header-height) + 20px);
  flex-shrink: 0;
  width: 152px;
  margin-right: 20px;
  border-radius: 8px;
  background-color: #fff;
}
.articles-nav .title {
  margin-bottom: 8px;
  padding: 8px 20px;
  display: block;
  font-size: 22px;
  font-weight: 400;
}
.articles-nav .directory li {
  display: block;
  margin: 0 10px;
}
.articles-nav .directory li + li {
  margin-top: 10px;
}
.articles-nav .directory li a {
  display: block;
  padding: 10px;
  border-radius: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  line-height: 20px;
}
.articles-nav .directory li.active a {
  background-color: var(--color-primary);
  color: #fff;
}

.articles-main {
  margin-right: 20px;
  flex-shrink: 0;
  width: 714px;
}
.article-detail-page .articles-main {
  width: 886px;
}
.article a {
  display: block;
}
.article {
  padding: 16px;
  background-color: #fff;
  border-radius: 8px;
  transition: all 0.2s linear;
  position: relative;
  display: flex;
}
.article:hover {
  z-index: 3;
  box-shadow: 0 16px 40px 0 hsla(0, 0%, 60%, 0.3);
}
.article + .article {
  margin-top: 20px;
}
.article-cover {
  margin-right: 16px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px
}
.article-cover img {
  display: block;
  object-fit: cover;
  border-radius: 8px;
  overflow: hidden;
  width: var(--article-img-width);
  height: calc(var(--aspect-ratio) * var(--article-img-width));
}
.article-content {
  flex: 1;
  overflow: hidden;
}
.article-content .article-title {
  margin-bottom: 7px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.article-content .article-summary {
  margin-bottom: 4px;
  color: #818f97;
  font-size: 13px;
  line-height: 1.8;
  min-height: 46px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.article-content .article-summary:hover {
  color: #818f97;
}
.article-content .article-ext {
  color: #b9c2c8;
  display: flex;
  font-size: 12px;
  justify-content: flex-end;
}
.article-content .article-ext &gt; span + span {
  margin-left: 10px;
}

.articles-aside {
  flex: 1;
  overflow: hidden;
}

.articles-aside-item {
  background-color: #fff;
  border-radius: 8px;
}
.articles-aside-item + .articles-aside-item {
  margin-top: 20px;
}
.articles-aside-item .title {
  border-radius: 8px 8px 0 0;
  padding: 10px 20px;
  background: var(--ne-bg-linear-gradient);
}
.articles-aside-item .title h3 {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
.articles-aside-item .article-list {
  padding: 10px 20px;
}
.articles-aside-item .article-list li + li {
  margin-top: 10px;
}
.articles-aside-item .article-list li a {
  display: block;
  font-size: 14px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aside-com {
  padding: 4px 6px;
}
.aside-com .com-card {
  transition: all linear 0.2s;
  border-radius: 8px;
}
.aside-com .com-card:hover {
  background-color: #f8f8f8;
}

.com-card-main {
  display: flex;
  align-items: center;
  padding: 13px 14px;
}
.com-card-main:hover .content-text h4 {
  color: var(--color-primary);
  transition: all 0.4s;
}
.com-card-main .com-card-logo {
  margin-right: 10px;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  border: solid 1px #f2f5fa;
  object-fit: contain;
}
.com-card-main .content-text {
  flex: 1;
  overflow: hidden;
}
.com-card-main .content-text h4 {
  display: block;
  margin-bottom: 8px;
  line-height: 25px;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.com-card-main .content-text ul {
  height: 22px;
  overflow: hidden;
}
.com-card-main .content-text li {
  display: inline-block;
  color: #666;
  padding: 0 8px;
  background: #f8f8f8;
  font-size: 13px;
  border-radius: 4px;
  max-width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 22px;
  height: 22px;
}

.post {
  padding: 0 16px;
  background-color: #fff;
  border-radius: 8px;
}
.post-header,
.post-main {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #dcdfe6;
}
.post-header {
  padding-top: 10px;
}
.post-header h1 {
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 28px;
}
.post-header .ext {
  font-size: 14px;
  line-height: 19px;
  color: #818f97;
  display: flex;
  justify-content: space-between;
}
.post-main {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
.post-main img {
  margin: 16px 0;
  width: 100%;
  display: block;
}
.post-main p + p {
  margin-top: 2em;
}
.post-main-text-only {
  word-break: break-all;
  white-space: pre-wrap;
  text-align: justify;
  letter-spacing: 0;
}
.post-footer {
  padding-bottom: 16px;
  font-size: 14px;
  line-height: 20px;
  color: #818f97;
}
.post-footer em {
  font-style: normal;
  color: var(--color-primary);
}
</pre></body></html>