/* 文章页面的样式 */
.joe_bread {
  padding-top: 15px;
}

.joe_bread__bread {
  display: flex;
  align-items: center;
}

.joe_bread__bread .line {
  color: var(--seat);
  padding: 0 8px;
}

.joe_bread__bread .item {
  color: var(--minor);
  white-space: nowrap;
}

.joe_bread__bread .item .link {
  color: var(--routine);
  transition: color 0.35s;
}

.joe_bread__bread .item .link:hover {
  color: var(--theme);
}

.joe_bread__bread .item .icon {
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
  fill: var(--routine);
  margin-right: 2px;
}

.joe_bread__bread .item:first-child {
  display: flex;
  align-items: center;
}

.joe_post__pagination {
  display: flex;
  justify-content: space-between;
}

.joe_post__pagination-item {
  margin-bottom: 15px;
}

.joe_post__pagination-item a {
  display: block;
  height: 32px;
  line-height: 32px;
  padding: 0 15px;
  color: #fff;
  border-radius: 3px;
  background: var(--theme);
  font-size: 12px;
  box-shadow: var(--box-shadow);
}

.joe_post__pagination-item a:hover {
  animation: pulse 1s;
  box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
}

.joe_post__pagination-item.next {
  margin-left: auto;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--theme);
  }
}
