:root {
  overflow-y: auto;
  overflow-x: hidden;
}

body {
  width: 100vw;
}

::selection {
  background-color: rgba(15, 157, 88, 1);
  color: #fff;
}

*,
::after,
::before {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 0.4rem;
  height: 0.4rem;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 0.625rem;
  background-color: #0f9d58;
}

::-webkit-scrollbar-track {
  border-radius: 0.625rem;
  /* background-color: #eee; */
}

::-webkit-scrollbar-track-piece {
  background-color: transparent;
}

body {
  -webkit-overflow-scrolling: touch;
}

hr {
  height: 1px;
  background-color: #ddd;
}

code {
  top: 0.75rem !important;
  font-family: Inconsolata, Monaco, Consolas, "Courier New", Courier, monospace;
}

a {
  color: rgba(15, 157, 88, 1);
}

a:hover {
  color: #666;
}

.is-px-6 {
  padding-left: 3rem;
  padding-right: 3rem;
}

/* 解决flex布局水平方向不出现滚动条问题 */
.is-flex-w-0 {
  width: 0;
}

.is-flex-h-0 {
  height: 0;
}

@media screen and (max-width: 768px) {
  .is-px-6 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.code-area::after {
  content: " ";
  position: absolute;
  border-radius: 50%;
  background: #ff5f56;
  width: 0.7rem;
  height: 0.7rem;
  top: 0.7rem;
  left: 1rem;
  box-shadow: 1.25rem 0 #ffbd2e, 2.5rem 0 #27c93f;
}

.code-area pre {
  padding-top: 1.2rem !important;
  transition: max-height 0.25s;
}



.copy-tips,
.code-expand,
.code-lang,
.code-copy {
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  position: absolute;
  top: 0.6rem;
  height: 1rem;
  line-height: 1rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 1;
}

.code-expand {
  right: 1rem;
}

.code-copy {
  right: 2.2rem;
}

.code-lang {
  right: 3.6rem;
}

.code-area pre:not([class*=language-])~span[class*=code-] {
  color: rgb(39 40 34/40%);
}

.code-area pre:not([class*=language-])~span[class*=code-]:hover {
  color: rgb(39 40 34/80%);
}

.code-area pre[class*=language-]~span[class*=code-] {
  color: rgb(255 255 255/40%);
}

.code-area pre[class*=language-]~span[class*=code-]:hover {
  color: rgb(255 255 255/80%);
}

.code-closed .code-expand {
  transform: rotate(180deg) !important;
}

.code-area pre,
.code-area pre code {
  transition: all 0.3s;
  display: block;
  position: relative;
  z-index: 0;
}

.code-closed pre {
  overflow: hidden !important;
  max-height: 0;
  padding-top: 1rem !important;
}

.code-closed pre code {
  opacity: 0;
}

h6,
.title {
  line-height: initial;
}

.icon-text {
  line-height: 1em;
  vertical-align: unset;
  flex-wrap: nowrap;
}

.button .icon,
.icon {
  width: 1em;
  height: 1em;
}

.image img {
  height: 100%;
  object-fit: cover;
}

main.container {
  min-height: calc(50vh - 3.25rem);
}

.button {
  position: relative;
}

.button::after {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(255, 255, 255, 0.09);
  opacity: 0;
  z-index: 101;
  transform: scale(0.2);
  transition: all 0.4s ease-out;
}

.button.button-circle::after {
  border-radius: 50%;
}

.button.is-rounded::after {
  border-radius: 9999px;
}

.button:hover::after {
  transform: scale(1);
  opacity: 1;
  transition: transform 0.4s ease-out;
}

.navbar.is-primary,
.navbar-dropdown.is-primary,
.panel.is-primary .panel-heading,
.bg-color {
  background-color: transparent;
  background-image: linear-gradient(to right,
      rgba(76, 191, 48, 1) 0%,
      rgba(15, 157, 88, 1) 100%);
}

.navbar,
.menu-list a,
.navbar.is-primary .navbar-item,
.navbar.is-primary .navbar-link,
.navbar.is-primary .navbar-burger {
  transition: background-image 0.4s ease-out, background-color 0.4s ease-out,
    box-shadow 0.4s ease-out;
}

.navbar.is-primary {
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 7px 0.625rem 0 rgb(0 0 0 / 12%);
}

.navbar.is-transparent {
  box-shadow: none;
}

.navbar.is-transparent,
.navbar.is-transparent .navbar-dropdown.is-primary {
  /* background-color: transparent !important; */
  background-image: linear-gradient(to right,
      rgba(76, 191, 48, 0) 0%,
      rgba(15, 157, 88, 0) 100%);
}

.navbar-dropdown a.navbar-item {
  padding-right: 1rem !important;
}

.navbar-dropdown .navbar-item .icon-text {
  flex-wrap: nowrap;
}

.navbar-dropdown .navbar-item .icon-text-title {
  max-width: 9.375rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.container {
  transition: width 0.2s;
}

svg {
  fill: currentColor;
  font-size: inherit;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  overflow: hidden;
}

.dream {
  color: rgba(52, 73, 94, 0.6);
}

@media screen and (min-width: 1024px) {
  .navbar-search {
    display: none;
  }
}

.box {
  box-shadow: 0 1rem 2rem rgb(50 50 93 / 10%), 0 0.3125rem 1rem rgb(0 0 0 / 7%);
}

.back-top {
  position: fixed;
  right: 1rem;
  bottom: 14rem;
  padding-top: 1rem;
  margin-bottom: 0;
  z-index: 10;
  transform: translateX(5rem);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.back-top.show {
  transform: translateX(0);
}

.back-top .button {
  background: linear-gradient(to bottom right, #ff5e3a 0%, #ff2a68 100%);
}

.button.button-circle {
  border-color: transparent;
  color: #fff;
  box-shadow: none;
  border-width: 0;
  border-radius: 50%;
  font-size: 1.4rem;
  width: 3rem;
  height: 3rem;
}

.button.button-circle:focus-visible,
.button.button-circle:focus {
  border-color: transparent;
  outline-offset: 0;
  outline: none;
  box-shadow: none;
  border-width: 0;
}

.back-top .button .icon {
  line-height: 3rem;
  font-size: 1.4rem;
}

.navbar-search {
  min-width: 3.25rem;
}

.navbar .navbar-brand>a.navbar-item.navbar-search:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.navbar.is-primary .navbar-brand>a.navbar-item.navbar-title:hover,
.navbar.is-transparent .navbar-brand>a.navbar-item.navbar-title:hover {
  background-color: rgba(0, 0, 0, 0);
}

.side-nav {
  width: 15rem;
  z-index: 999;
  box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 7px 0.625rem 0 rgb(0 0 0 / 12%);
}

.sidenav {
  position: fixed;
  width: 12.5rem;
  left: 0;
  top: 0;
  margin: 0;
  transform: translateX(-100%);
  height: 100vh;
  background-color: #fff;
  z-index: 999;
  overflow-y: auto;
  will-change: transform;
  backface-visibility: hidden;
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%),
    0 1px 5px 0 rgb(0 0 0 / 20%);
  transition: transform 0.25s;
}

/* @media screen and (min-width: 1024px) {
  .sidenav{
    transform: translateX(-100%)!important;
  }
} */
.sideenv-head {
  color: #fff;
}

.sidenav.show {
  transform: translateX(0);
}

.sidenav-logo {
  width: auto !important;
}

.sidenav-logo>img.logo--svg {
  filter: drop-shadow(1000px 0 0 #fff);
  transform: translate(-1000px);
}

.menu-list li ul {
  border-left: 0;
  padding-left: 1em;
  margin-top: 0;
  margin-bottom: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s;
}

.menu-list li .icon {
  transition: transform 0.25s;
}

.footer.is-primary.bg-color,
.footer.is-primary.bg-color a {
  color: #fff;
}

a.is-link:hover {
  color: rgba(238, 228, 228, 0.8) !important;
}

@media screen and (min-width: 1024px) {

  .navbar.is-transparent .navbar-link.is-active,
  .navbar.is-transparent .navbar-link:focus,
  .navbar.is-transparent .navbar-link:hover,
  .navbar.is-transparent a.navbar-item.is-active,
  .navbar.is-transparent a.navbar-item:focus,
  .navbar.is-transparent a.navbar-item:not(.navbar-title):hover {
    background-color: rgba(0, 0, 0, 0.1) !important;
  }

  .navbar.is-transparent .navbar-dropdown a.navbar-item:focus,
  .navbar.is-transparent .navbar-dropdown a.navbar-item:hover {
    color: #fff;
  }

  .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,
  .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link,
  .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link,
  .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link {
    background-color: rgba(0, 0, 0, 0.1) !important;
  }

  .navbar.is-primary .navbar-end .navbar-link.is-active,
  .navbar.is-primary .navbar-end .navbar-link:focus,
  .navbar.is-primary .navbar-end .navbar-link:hover,
  .navbar.is-primary .navbar-end>a.navbar-item.is-active,
  .navbar.is-primary .navbar-end>a.navbar-item:focus,
  .navbar.is-primary .navbar-end>a.navbar-item:hover,
  .navbar.is-primary .navbar-start .navbar-link.is-active,
  .navbar.is-primary .navbar-start .navbar-link:focus,
  .navbar.is-primary .navbar-start .navbar-link:hover,
  .navbar.is-primary .navbar-start>a.navbar-item.is-active,
  .navbar.is-primary .navbar-start>a.navbar-item:focus,
  .navbar.is-primary .navbar-start>a.navbar-item:hover {
    background-color: #0f9d58;
    color: #fff;
  }

  .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link,
  .navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,
  .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link {
    background-color: #0f9d58;
    color: #fff;
  }

  .navbar-dropdown.is-primary .navbar-item,
  .navbar-dropdown.is-primary .navbar-link {
    color: #fff;
  }

  .navbar-dropdown a.navbar-item:focus,
  .navbar-dropdown a.navbar-item:hover {
    background-color: #0f9d58;
    color: #fff;
  }

  .navbar-dropdown.is-boxed,
  .navbar.is-spaced .navbar-dropdown {
    top: 100%;
  }
}

.hero .hero-body {
  height: 100%;
  width: 100%;
}

.hero.is-fullheight .hero-body {
  height: 100vh;
}

.hero.is-halfheight .hero-body {
  height: 50vh;
}

/* .index-hero .hero-body .index-cover { */
/* background-image: url(/pure/assets/medias/banner/0.jpg); */
/* } */
.bg-cover {
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bg-cover:before,
.bg-cover:after {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  left: 0;
  top: 0;
  content: "";
}

.bg-cover:after {
  animation: rainbow 60s infinite;
}

.bg-cover .container {
  z-index: 2;
}

.bg-cover .buttons {
  margin: 8rem 3rem;
}

@keyframes rainbow {

  0%,
  100% {
    background: rgba(156, 39, 176, 0.75);
    background: linear-gradient(45deg,
        rgba(156, 39, 176, 0.75) 0%,
        rgba(156, 39, 176, 0.65) 100%);
  }

  16% {
    background: rgba(132, 13, 121, 0.75);
    background: linear-gradient(45deg,
        rgba(132, 13, 121, 0.75) 0%,
        rgba(132, 13, 121, 0.65) 100%);
  }

  32% {
    background: rgba(239, 83, 80, 0.75);
    background: linear-gradient(45deg,
        rgba(239, 83, 80, 0.75) 0%,
        rgba(239, 83, 80, 0.65) 100%);
  }

  48% {
    background: rgba(255, 87, 34, 0.75);
    background: linear-gradient(45deg,
        rgba(255, 87, 34, 0.75) 0%,
        rgba(255, 87, 34, 0.65) 100%);
  }

  64% {
    background: rgba(255, 160, 0, 0.75);
    background: linear-gradient(45deg,
        rgba(255, 160, 0, 0.75) 0%,
        rgba(255, 160, 0, 0.65) 100%);
  }

  80% {
    background: rgba(233, 30, 99, 0.75);
    background: linear-gradient(45deg,
        rgba(233, 30, 99, 0.75) 0%,
        rgba(233, 30, 99, 0.65) 100%);
  }
}

.button.is-cover.is-outlined {
  transition: 0.3s ease-out;
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.button.is-cover.is-outlined.is-focused,
.button.is-cover.is-outlined.is-hovered,
.button.is-cover.is-outlined:focus,
.button.is-cover.is-outlined:hover {
  border: 1px solid #f44336;
  background-color: #f44336;
  box-shadow: 0 0.875rem 26px -12px rgb(233 30 99 / 42%),
    0 4px 23px 0 rgb(0 0 0 / 12%), 0 8px 0.625rem -5px rgb(233 30 99 / 20%);
}

.button.is-gradient {
  background-color: #3e8ed0;
  border-color: transparent;
  color: #fff;
  transition-duration: 0.2s;
  transition-property: box-shadow;
  border-width: 0;
}

.button.is-gradient.is-hovered,
.button.is-gradient:hover {
  background-color: #3488ce;
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 8px rgb(0 0 0 / 60%);
}

.is-gradient.is-gradient-0 {
  background-image: linear-gradient(to right, #ff5e3a 0%, #ff2a68 100%);
}

.is-gradient.is-gradient-1 {
  background-image: linear-gradient(to right, #ef4db6 0%, #c643fc 100%);
}

.is-gradient.is-gradient-2 {
  background-image: linear-gradient(to right, #1ad6fd 0%, #1d62f0 100%);
}

.is-gradient.is-gradient-3 {
  background-image: linear-gradient(to right, #ffcc00 0%, #ff9500 100%);
}

.is-gradient.is-gradient-4 {
  background-image: linear-gradient(to right, #4cbf30 0%, #0f9d58 100%);
}

.is-gradient.is-gradient-5 {
  background-image: linear-gradient(to right, #c644fc 0%, #5856d6 100%);
}

.is-gradient.is-gradient-6 {
  background-image: linear-gradient(to right, #55efcb 0%, #5bcaff 100%);
}

.is-mobile-mx-4 {
  margin: 0 1rem;
}

@media screen and (min-width: 1024px) {
  .is-mobile-mx-4 {
    margin: initial;
  }

  .paging.is-mobile-mx-4 {
    margin: 0 auto;
  }
}

@media screen and (max-width: 578px) {
  .has-text-left-sm {
    text-align: left !important;
  }

  .column {
    width: 100%;
  }
}

@media screen and (min-width: 576px) and (max-width: 769px) {
  .columns:not(.is-desktop) {
    display: flex;
  }

  .column.is-half-sm {
    flex: none;
    width: 50%;
  }
}

.card.post-card .card-image {
  position: relative;
}

.card.post-card .card-image .card-title {
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.3) 30%,
      rgba(0, 0, 0, 0.6) 60%,
      rgba(0, 0, 0, 0.8) 100%);
}

.card.post-card .card-content,
.post-card .card-footer {
  padding: 0.875rem;
  flex-wrap: wrap;
}

.clamp-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  word-break: break-all;
}

.clamp-ellipsis.clamp-1 {
  -webkit-line-clamp: 1;
}

.clamp-ellipsis.clamp-2 {
  -webkit-line-clamp: 2;
}

.clamp-ellipsis.clamp-3 {
  -webkit-line-clamp: 3;
}


.post-card .card-content {
  font-size: 0.875rem;
  color: #34495e;
}

.post-card .chip {
  padding: 0.2rem 0.75rem;
  margin: 2px;
  font-size: 0.8rem;
  font-weight: 400;
  word-break: keep-all;
}

.post-card.post-info .chip,
.post-card .chip.chip-active,
.post-card .card-footer .chip {
  border-radius: 0.75rem;
}

.post-card.post-info .chip,
.post-card .card-footer .chip {
  color: #fff;
}

/* .post-card .post-cate :not(.chip-active) a:hover {
  color: rgba(15, 157, 88, 1);
} */

.reco-card,
.f-ship,
.card.post-card {
  position: relative;
}

.reco-card,
.f-ship,
.card.post-card,
.card.post-card+.ribbon {
  transition-duration: 0.3s;
  transition-property: transform;
}

.reco-card:hover,
.f-ship:hover,
.card.post-card:hover,
.card.post-card:hover+.ribbon {
  transform: translateY(-5px);
}

.reco-card:hover::after,
.f-ship:hover::before,
.card.post-card:hover::before {
  opacity: 1;
  transform: translateY(5px);
}

.reco-card::after,
.f-ship::before,
.card.post-card::before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 0.625rem;
  width: 90%;
  opacity: 0;
  background: radial-gradient(ellipse at center,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0) 80%);
  transition-duration: 0.3s;
  transition-property: transform, opacity;
}

.paging .page-info {
  font-size: 1.4rem;
  color: #888;
}

.paging .button[disabled] {
  color: #9f9f9f;
  background-color: #ccc;
}

.top-offset-box {
  margin-top: -3.75rem;
}

.top-offset-search-box {
  margin-top: -7.5rem;
}

/* archive page. */
.cd-timeline .year {
  position: relative;
  width: 5rem;
  height: 5rem;
  margin: 0.625rem 0 1.875rem -1.25rem;
  padding: 1.25rem 0.625rem;
  background-color: #ff5722;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
}

.cd-timeline .year a {
  color: #fff;
}

.cd-timeline .month {
  position: relative;
  width: 3.75rem;
  height: 3.75rem;
  margin: 0.625rem 0 1.875rem -0.875rem;
  padding: 0.875rem 1rem;
  background-color: #ef6c00;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 600;
}

.cd-timeline .month a {
  color: #fff;
}

.cd-timeline .day {
  position: relative;
  padding: 0.5rem 0.625rem;
  background-color: #ffa726;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
}

.cd-timeline {
  /*width: 90%;*/
  max-width: 51.25rem;
  position: relative;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.cd-timeline::before {
  /* this is the vertical line */
  content: " ";
  position: absolute;
  top: 0;
  left: 1.125rem;
  height: 100%;
  width: 4px;
  background: #0f9d58;
}

@media only screen and (min-width: 900px) {
  .cd-timeline {
    margin: 2rem auto;
  }

  .cd-timeline::before {
    left: 50%;
    margin-left: -2px;
  }

  .cd-timeline .year {
    margin: 0.625rem 0 3.125rem -2.5rem;
    padding: 1.375rem 0.625rem;
  }

  .cd-timeline .month {
    margin: 0.625rem 0 1.875rem -1.875rem;
    padding: 0.875rem 1rem;
  }
}

.cd-timeline-block {
  position: relative;
  margin: 1em 0;
}

.cd-timeline-block::after {
  clear: both;
  content: "";
  display: table;
}

.cd-timeline-block:first-child {
  margin-top: 0;
}

.cd-timeline-block:last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 870px) {
  .cd-timeline-block {
    margin: 1em 0;
  }

  .cd-timeline-block:first-child {
    margin-top: 0;
  }

  .cd-timeline-block:last-child {
    margin-bottom: 0;
  }
}

.cd-timeline-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #ffffff, inset 0 2px 0 rgba(0, 0, 0, 0.08),
    0 3px 0 4px rgba(0, 0, 0, 0.05);
}

@media only screen and (min-width: 900px) {
  .cd-timeline-img {
    width: 40px;
    height: 40px;
    left: 50%;
    margin-left: -20px;
  }
}

.cd-timeline-content {
  position: relative;
  margin-top: -40px;
  margin-left: 60px;
  padding: 0;
  border-radius: 5px;
}

.cd-timeline-content::after {
  clear: both;
  content: "";
  display: table;
}

.cd-timeline-content .card {
  margin: 0;
}

.cd-timeline-content::before {
  content: "";
  position: absolute;
  top: 18px !important;
  right: 100%;
  height: 0;
  width: 0.875rem;
  margin-left: 2px;
  margin-right: 2px;
  border: 1px dashed #ffa726;
}

@media only screen and (min-width: 768px) {
  .cd-timeline-content h2 {
    font-size: 1.25rem;
  }

  .cd-timeline-content p {
    font-size: 1rem;
  }

  .cd-timeline-content .cd-read-more,
  .cd-timeline-content .cd-date {
    font-size: 0.875rem;
  }
}

@media only screen and (min-width: 900px) {
  .cd-timeline-content {
    margin-left: 0;
    padding: 0;
    width: 45%;
  }

  .cd-timeline-content::before {
    top: 24px;
    left: 100%;
  }

  .cd-timeline-content .cd-read-more {
    float: left;
  }

  .cd-timeline-block:nth-child(even) .cd-timeline-content {
    float: right;
  }

  .cd-timeline-block:nth-child(even) .cd-timeline-content::before {
    top: 24px;
    left: auto;
    right: 100%;
    border-color: #ffa726;
  }

  .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-read-more {
    float: right;
  }
}

/* cd-timeline */
.chips a {
  display: inline-block;
}

.chips .chip {
  margin: 0.3125rem;
  padding: 1.25rem 0.875rem;
  display: inline-flex;
  line-height: 0;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.3125rem;
  cursor: pointer;
  box-shadow: 0 0.125rem 0.3125rem rgb(0 0 0 / 12%);
  z-index: 0;
  transition: 0.3s ease-out;
  color: #34495e;
}

.chips .chip .tag-length {
  color: #e91e63;
  margin-left: 0.3125rem;
  font-size: 0.5rem;
}

.chips .chip:hover {
  background: linear-gradient(to right, #4cbf30 0%, #0f9d58 100%);
}

.chip.chip-active {
  background: linear-gradient(to bottom right, #ff5e3a 0%, #ff2a68 100%);
  box-shadow: 0.125rem 0.3125rem 0.625rem #aaa;
}

.post-cate .chip.chip-active a {
  color: #fff;
}

.post-cate .icon {
  width: inherit;
}

.post-cate .chip {
  padding: 0.4rem 0.75rem;
}

.chip.chip-active,
.chips .chip:hover,
.post-cate .chip.chip-active {
  color: #fff;
}

.image.is-100x100 {
  width: 6.25rem;
  height: 6.25rem;
}

.post-info {
  color: #525f7f;
}

@media screen and (min-width: 768px) {
  .post-info .post-info-meta {
    float: left;
  }

  .post-info .post-info-meta:not(:last-child) {
    margin-right: 1rem;
  }

  .article-content-box {
    padding: 0 2rem 1.25rem 2rem;
  }
}

@media screen and (min-width: 576px) and (max-width: 768px) {
  .post-info .post-info-meta {
    word-break: keep-all;
    float: left;
    width: 50%;
  }
}

.post-card hr {
  margin: 0.75rem 0;
  height: 0;
  background-color: initial;
  border: 0;
  border-top: 1px solid #ccc;
}

.post-card hr.hr {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

#article-content {
  font-family: Consolas;
  font-size: 14px;
  color: #34495e;
}

@media screen and (max-width: 1024px) {
  .is-12-touch {
    width: 100%;
  }
}

.has-ribbon {
  position: relative;
}

.ribbon {
  background-color: #fff;
  color: #0f9d58;
  font-size: 0.875rem;
  justify-content: center;
  padding: 0.4rem 0.75em;
  text-align: center;
  white-space: nowrap;
  position: absolute;
  top: 0.75rem;
  font-weight: 400;
  z-index: 2;
}

.has-ribbon-left .ribbon {
  left: 0.75rem;
  border-radius: 0.25rem 0 0.25rem 0;
}

.has-ribbon-right .ribbon {
  right: 0.75rem;
  border-radius: 0 0.25rem 0 0.25rem;
}

@media screen and (max-width: 576px) {
  .has-ribbon-left-sm .ribbon {
    left: 0.75rem;
    border-radius: 0.25rem 0 0.25rem 0;
    right: unset;
  }
}

em.highlight {
  margin: 0 2px;
  padding: 1px 4px;
  border-radius: 2px;
  color: #e96900;
  font-style: normal;
  white-space: pre-wrap;
}

.img-container .tabs li.is-active a,
.img-container .tabs a:hover {
  color: #0f9d58;
  border-color: #0f9d58;
}

@media screen and (min-width: 768px) {
  .img-cate-item img {
    height: 14.75rem;
    width: 14.75rem;
  }
}

@media screen and (min-width: 920px) {
  .img-cate-item img {
    height: 13.5rem;
    width: 13.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .img-cate-item img {
    height: 12.75rem;
    width: 12.75rem;
  }
}

@media screen and (min-width: 121rem) {
  .img-cate-item img {
    height: 12.9rem;
    width: 12.9rem;
  }
}

.img-cate-item img {
  height: 12.5rem;
  width: 12.5rem;
  border-radius: 0.25rem;
}

@media screen and (max-width: 504px) {
  .img-cate-item img {
    height: auto;
    width: 26rem;
  }
}

.img-cate-item {
  position: relative;
  padding: 0.5rem;
}

.img-cate-item img,
.gallery-item img {
  cursor: pointer;
  transition: opacity 0.25s;
}

.gallery-item:hover img,
.img-cate-item:hover img {
  opacity: 0.8;
}

.img-cate-item:hover .item-cate-name {
  color: #0f9d58;
}

.item-cate-name {
  display: inline;
  max-width: 100%;
  overflow: hidden;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.875rem;
  color: rgb(133 133 133);
}

.item-cate-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.32);
  border-radius: 0.625rem;
  height: 1.25rem;
  min-width: 1.25rem;
  padding: 0 0.375rem;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  font-weight: bold;
}

.item-cate-num,
.item-cate-name {
  font-size: 0.875rem;
}

.gallery {
  column-count: auto;
  column-width: 12.5rem;
  transition: all 0.25s;
  column-gap: 0.5rem;
}

@media screen and (min-width: 1408px) {
  .gallery {
    column-width: 11rem;
  }
}

@media screen and (min-width: 920px) and (max-width: 1408px) {
  .gallery {
    column-width: 11.2rem;
  }
}

@media screen and (min-width: 728px) and (max-width: 920px) {
  .gallery {
    column-width: 10.25rem;
  }
}

@media screen and (min-width: 488px) and (max-width: 728px) {
  .gallery {
    column-width: 8.6rem;
  }
}

@media screen and (min-width: 288px) and (max-width: 488px) {
  .gallery {
    column-width: 6.75rem;
  }
}

.reprint {
  font-size: 0.9375rem;
  margin: 15px 0 5px 0;
  margin-bottom: 0.4rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid #eee;
  line-height: 2;
  transition: box-shadow 0.3s ease-in-out;
  word-break: break-all;
  border-radius: 0.25rem;
}

/* 
.reprint a {
  color: #42b983;
  transition: color 0.25s;
}

.reprint a:hover {
  color: #0f9d58;
} */

.cover-social-link,
.social-link {
  font-size: 1.4rem;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-social-link a,
.cover-social-link a,
.social-link a {
  display: inline-flex;
  padding: 0 0.2rem;
  margin: 0.2rem 0;
}

.cover-social-link a.is-link {
  color: #fff;
}

#comments .erh-modal-wrap {
  z-index: 31;
}

.hero.has-carousel .hero-body {
  margin: auto !important;
  width: 100vw;
}

.hero.has-carousel .slider-navigation-next,
.hero.has-carousel .slider-navigation-previous {
  background: transparent;
  border: 0;
  transition: background 0.25s;
  font-size: 2rem;
}

.hero.has-carousel .slider-navigation-previous {
  left: 2rem;
}

.hero.has-carousel .slider-navigation-next {
  right: 2rem;
}

.hero.has-carousel .slider-navigation-next svg,
.hero.has-carousel .slider-navigation-previous svg {
  width: inherit;
}

.hero.has-carousel .slider-navigation-next:hover,
.hero.has-carousel .slider-navigation-previous:hover {
  transform: scale(1);
  background: rgba(0, 0, 0, 0.4);
}

.hero.has-carousel .slider-pagination .slider-page {
  background: rgba(255, 255, 255, 0.5);
}

.hero.has-carousel .slider-pagination .slider-page.is-active,
.hero.has-carousel .slider-pagination .slider-page:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.carousel-item {
  flex-basis: 100vw;
  flex-shrink: 0;
}

.carousel-item .title,
.carousel-item .description {
  word-break: break-word;
}

/* 默认其他额项隐藏, 只显示一个, 有轮播的时候都显示 */
.hero.has-carousel .hero-carousel>.carousel-item:not(:first-child) {
  display: none;
}

.article-box,
.article-box a {
  color: #666;
  font-size: 0.875rem;
}

.article-box .article-item {
  padding: 0.4rem 0.25rem;
}

.article-item a {
  overflow: hidden;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: pre;
}

.article-box img,
.article-box .post-related,
.article-item a,
.article-box .post-title {
  transition: all cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s;
}

.article-item a:hover {
  margin-left: 0.5rem !important;
}

.article-box .post-related:hover .post-title,
.article-item a:hover {
  color: rgba(15, 157, 88, 1);
}

.article-box .article-item .hot {
  color: rgb(255 0 0/50%);
}

.article-box .article-item .hot.hot-0 {
  color: rgb(255 0 0/100%);
}

.article-box .article-item .hot.hot-1 {
  color: rgb(255 0 0/90%);
}

.article-box .article-item .hot.hot-2 {
  color: rgb(255 0 0/80%);
}

.article-box .article-item .hot.hot-3 {
  color: rgb(255 0 0/70%);
}

.article-box .article-item .hot.hot-4 {
  color: rgb(255 0 0/60%);
}

.article-box .post-title {
  margin-bottom: 0.4rem;
}

.article-box img {
  transition: all cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s;
}

.article-box .media {
  margin: 0;
  padding: 0.5rem;
}

.article-box .post-related:hover {
  background-color: rgb(15 157 88/20%);
}

.article-box .post-related:hover img {
  transform: scale(1.1);
}

.article-box .post-related:hover .post-title {
  margin-left: 0.5rem;
}

.article-box .post-related .post-title {
  line-height: 1.2;
}

.article-box .article-newest:hover {
  margin-left: 0 !important;
}

.article-box .article-newest {
  white-space: pre-wrap;
  line-height: 1.5;
}

.article-newest-box .article-item:not(:last-child) {
  border-bottom: 1px dotted #999;
}