@charset "UTF-8";
/* size */
@import "plugins_hack.css";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, PingFang SC, Hiragino Sans GB, noto sans, Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
}

a {
  text-decoration: none;
  color: inherit;
}

h3, h4, h5, h6 {
  font-weight: normal;
}

#browsehappy {
  text-align: center;
  background: #ff0;
  padding: 10px 0;
}

.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.flex-column {
  flex-direction: column;
}

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

.justify-center {
  justify-content: center;
}

.flex-1 {
  flex: 1;
}

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

.empty {
  text-align: center;
  display: block;
  padding: 30px;
  margin: 0 auto;
}

.empty img {
  max-width: 100%;
  width: 300px;
}

.fit-cover {
  object-fit: cover;
}

.iconfont {
  font-size: inherit;
}

.cursor-pointer {
  cursor: pointer;
}

.light-shadow {
  box-shadow: var(--light-shadow);
}

.layout {
  display: flex;
  height: 100vh;
}

.layout-sidebar {
  position: fixed;
  width: 280px;
  height: 100vh;
  padding: 20px;
  z-index: 997;
  background: var(--color-bg-alt);
  flex-shrink: 0;
  overflow: hidden;
  transition: all 0.3s;
}
.layout-sidebar .sidebar-gradient {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(73, 115, 246, 0.56);
  filter: blur(100px);
  width: 130px;
  height: 130px;
  z-index: -1;
}
.layout-sidebar.contract {
  width: 0;
  padding: 0;
}
.layout-sidebar.contract .login-area,
.layout-sidebar.contract form,
.layout-sidebar.contract .logo,
.layout-sidebar.contract .menu {
  display: none;
}
.layout-sidebar.contract .icon-dashboard {
  position: fixed;
  top: 20px;
  left: 20px;
}
.layout-sidebar .icon-dashboard {
  font-size: 22px;
  line-height: 26px;
}
.layout-sidebar .logo {
  display: flex;
  align-items: center;
  font-size: 1.1em;
  font-weight: bold;
}
.layout-sidebar .logo img {
  height: 1.8em;
  margin-right: 10px;
}
.layout-sidebar li {
  list-style-type: none;
}
.layout-sidebar .a {
  padding: 5px 15px;
  border-radius: 8px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  cursor: pointer;
  line-height: 38px;
}
.layout-sidebar .a:hover {
  background: var(--color-bg-hover);
}
.layout-sidebar .a img {
  margin-right: 10px;
}
.layout-sidebar .menu {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0;
  overflow-y: auto;
}
.layout-sidebar .menu .menu-item {
  border-radius: 8px;
}
.layout-sidebar .menu .menu-item.active > a {
  background: var(--color-bg-linear);
  color: #fff;
}
.layout-sidebar .sub-menu {
  color: var(--color-text-muted);
  line-height: 2.4;
  border-radius: 8px;
  padding: 7px;
  z-index: 999;
  display: none;
}
.layout-sidebar .sub-menu a {
  padding: 0 15px;
  cursor: pointer;
}
.layout-sidebar .login-area {
  position: relative;
}
.layout-sidebar .login-area .sub-menu {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: var(--color-bg);
}
.layout-sidebar .login-area:hover .sub-menu {
  display: block;
}
.layout-sidebar .login-area li:hover {
  background: var(--color-bg-hover);
}
.layout-sidebar .login-area .avatar {
  height: 28px;
  border-radius: 50%;
}

/* layout */
.layout-container {
  flex: 1;
  min-width: 0;
  margin: 0 auto;
  overflow-y: scroll;
  padding-top: 60px;
  padding-bottom: 60px;
  scroll-behavior: smooth;
  scroll-margin-top: 100px;
}

@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.content {
  padding: 0 15px;
  margin: 0 auto;
  animation: FadeIn 0.2s linear;
}

.dot-bg {
  background-image: radial-gradient(transparent 1px, #fff 1px);
  background-size: 3px 3px;
  backdrop-filter: saturate(50%) blur(4px);
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 16px;
}
.row .col-4 {
  width: 100%;
  min-width: 0;
  list-style: none;
}

/* home */
.home-section {
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
  border-radius: 8px;
}
.home-section ul {
  margin-bottom: 0;
}

.home-section-header {
  font-size: 20px;
  margin-bottom: 10px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow-x: auto;
}
.home-section-header .child-sort {
  font-size: 13px;
  margin-left: 5px;
}
.home-section-header a:hover {
  color: var(--color-primary);
}
.home-section-header .more {
  font-size: 16px;
}

.article-section {
  padding: 15px;
  margin-bottom: 20px;
}

.side-menu {
  padding: 16px 0;
  overflow-x: auto;
  display: flex;
  z-index: 996;
  border-radius: 8px;
  gap: 16px;
}
.side-menu::-webkit-scrollbar {
  display: none;
}
.side-menu.fixed {
  position: fixed;
  top: 60px;
  box-shadow: 0 -10px 50px 50px rgba(0, 0, 0, 0.05);
  padding-left: 20px;
  padding-right: 20px;
  background: var(--color-bg-alt);
  margin-left: 0;
  margin-right: 0;
}
.side-menu li {
  list-style: none;
  white-space: nowrap;
  text-align: center;
}
.side-menu a {
  transition: all 0.3s;
  cursor: pointer;
  border-radius: 2em;
  padding: 8px 16px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  background: var(--color-bg-alt);
  box-shadow: var(--light-shadow);
  height: 100%;
}
.side-menu a:hover {
  background-color: var(--color-bg-hover);
}
.side-menu li.active a {
  background: var(--color-bg-linear);
  color: #fff;
}

.sidebar-search {
  padding-top: 15px;
}

/* 选择需要应用渐变效果的元素 */
.gradient-text {
  /* 使用 background-clip 和 text-fill-color 属性 */
  background: linear-gradient(45deg, #ff0000, #00ff00, #0000ff); /* 定义渐变的颜色和角度 */
  background-clip: text; /* 将背景裁剪为文字的形状 */
  -webkit-background-clip: text; /* 兼容不同浏览器 */
  -webkit-text-fill-color: transparent; /* 使文字颜色透明，显示出渐变背景 */
  color: transparent; /* 确保文字颜色为透明 */
}

.form .form-group {
  margin-bottom: 10px;
}
.form .form-group a,
.form .form-group label {
  line-height: 2;
  font-size: 14px;
  color: #787878;
}

.form-control {
  border: 1px solid var(--color-border);
  outline: none;
  width: 100%;
  padding: 10px 15px;
  border-radius: 8px;
  background: var(--color-bg-alt);
  color: var(--color-text);
}
.form-control:focus {
  box-shadow: var(--light-shadow);
}

/* log-list */
.log-list ul {
  padding-left: 0;
}
.log-list li {
  list-style-type: none;
  padding: 15px 0;
}
.log-list li:hover h3 {
  color: var(--color-primary);
}
.log-list a {
  display: flex;
}
.log-list .cover_image {
  margin-right: 15px;
  width: 100px;
}
.log-list .cover_image img {
  width: 100%;
  height: auto;
}
.log-list h3 {
  font-size: 16px;
}
.log-list .date {
  font-size: 13px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #959595;
}

.log-list-card a {
  background: var(--color-bg-alt);
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  transition: 0.3s;
}
.log-list-card a:hover .cover_image img {
  transform: scale(1.1);
}
.log-list-card .cover_image {
  display: flex;
  overflow: hidden;
}
.log-list-card .cover_image img {
  height: 160px;
  width: 100%;
  transition: all 0.3s;
}
.log-list-card .info {
  padding: 15px 20px;
  line-height: 1.8;
}
.log-list-card .info h3 {
  font-size: 16px;
  font-weight: normal;
}
.log-list-card .info p {
  font-size: 12px;
  color: #959595;
  height: 1.8em;
}

.log-list-normal .cover_image {
  width: 234px;
  margin-right: 20px;
}
.log-list-normal h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.nav-list-card ul {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.nav-list-card .nav-item {
  list-style-type: none;
}
.nav-list-card .nav-item .desc {
  white-space: initial;
}
.nav-list-card .nav-item .icon {
  position: absolute;
  left: 15px;
  top: 15px;
  text-align: center;
}
.nav-list-card .nav-item .direct-btn {
  transition: all 0.3s;
  transform: translateX(10px) translateY(-50%);
  display: inline-block;
  opacity: 0;
  padding: 4px;
  border-radius: 5px;
  position: absolute;
  right: 15px;
  top: 50%;
  background: var(--color-bg-alt);
}
.nav-list-card .nav-item .direct-btn:hover {
  background: var(--color-bg);
}
.nav-list-card .nav-item .link {
  border-radius: 8px;
  background: var(--color-bg-alt);
  position: relative;
  padding: 15px 15px 15px 71px;
  height: 100%;
  transition: transform 0.3s ease, background 0.3s ease;
  display: block;
  min-height: 80px;
  box-shadow: var(--light-shadow);
}
.nav-list-card .nav-item .link:hover {
  transform: translateY(-5px);
}
.nav-list-card .nav-item .link:hover .direct-btn {
  opacity: 1;
  transform: translateX(0) translateY(-50%);
}
.nav-list-card .nav-item img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 10px;
}
.nav-list-card .nav-item h3 {
  font-size: 1.1em;
  margin-bottom: 5px;
}
.nav-list-card .nav-item p {
  font-size: 12px;
  margin-bottom: 5px;
  color: var(--color-text-muted);
}

/* tab */
.tab {
  overflow: hidden;
  background: #fff;
}
.tab .tab-header {
  border-bottom: 1px solid #eee;
}
.tab .tab-header ul {
  display: flex;
  overflow-x: auto;
}
.tab .tab-header li {
  list-style: none;
  white-space: nowrap;
  padding: 15px;
  font-size: 16px;
  cursor: pointer;
}
.tab .tab-header li.current {
  color: var(--color-primary);
  font-weight: bold;
}
.tab .tab-body .tab-panel {
  display: none;
}
.tab .tab-body .tab-panel.current {
  display: block;
}

/* page-footer */
.page-footer {
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  color: #97999a;
}

.h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
  background: var(--color-bg-linear);
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.log-body {
  line-height: 2;
  font-size: 18px;
  word-break: break-word;
}
.log-body .log-excerpt {
  background: #f3f3f3;
  padding: 1em;
  border-radius: 6px;
  border-left: 10px solid #eee;
}
.log-body .log-excerpt p {
  margin-bottom: 0;
}
.log-body p {
  margin-bottom: 1em;
  text-align: justify;
}
.log-body h1, .log-body h2, .log-body h3, .log-body h4, .log-body h5, .log-body h6 {
  word-break: break-all;
  line-height: 2.2;
  display: inline;
}
.log-body h1:after, .log-body h2:after, .log-body h3:after, .log-body h4:after, .log-body h5:after, .log-body h6:after {
  display: block;
  content: "";
  clear: both;
}
.log-body h1,
.log-body h2 {
  width: 100%;
  margin-top: 1em;
  margin-bottom: 1em;
  line-height: 2.2;
  font-size: 1.5em;
}
.log-body h3 {
  font-size: 1.3em;
}
.log-body h4 {
  font-size: 1em;
}
.log-body h3, .log-body h4, .log-body h5, .log-body h6 {
  font-weight: bold;
  margin: 0.5em 0;
}
.log-body strong {
  font-weight: bold;
  font-family: sans-serif;
}
.log-body img {
  max-width: 100%;
  height: auto;
  margin: 1em auto;
  display: block;
}
.log-body pre {
  margin: 1em 0;
  overflow: hidden;
  position: relative;
  border: 1px solid #000;
  border-radius: 6px;
  white-space: pre-wrap;
}
.log-body pre .pre-expand {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-bg);
  text-align: center;
  cursor: pointer;
}
.log-body pre code {
  padding: 1em;
  line-height: 1.5;
  display: block;
  font-size: 16px;
}
.log-body ol, .log-body ul {
  margin-bottom: 1em;
  padding-left: 1em;
}
.log-body ol li li, .log-body ul li li {
  list-style-type: none;
}
.log-body ol li p, .log-body ul li p {
  display: inline;
}
.log-body .text-block {
  background-color: #f3f4f6;
  padding: 10px 15px;
  text-align: center;
  margin: 1em 0;
}
.log-body .hljs {
  background: var(--color-bg);
  color: var(--color-text);
}
.log-body blockquote {
  padding: 5px 20px;
  margin: 1em 0;
  border-left: 5px solid var(--color-border);
  background: var(--color-bg);
  border-radius: 4px;
}
.log-body blockquote blockquote {
  margin-bottom: 0;
}
.log-body blockquote p {
  margin-bottom: 0;
  font-family: monospace;
}
.log-body hr {
  border-color: var(--color-border);
  border-width: 0.5px;
  margin: 1em 0 2em;
}
.log-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1em;
  text-align: center;
  border-radius: 6px;
  overflow: hidden;
}
.log-body table tr {
  background: var(--color-bg);
}
.log-body table th, .log-body table td {
  border-bottom: 1px solid var(--color-border);
  padding: 5px 10px;
}
.log-body table td {
  border-right: 1px solid var(--color-border);
}
.log-body table tr td:last-of-type {
  border-right: 0;
}
.log-body table tr:last-of-type td {
  border-bottom: none;
}
.log-body table th {
  background-color: #000;
  color: #fff;
}
.log-body video {
  display: block;
  margin: 2em auto;
}
.log-body p code {
  background: var(--color-bg-hover);
  font-size: 12px;
  padding: 0 7px;
  display: inline-block;
  vertical-align: text-bottom;
  border-radius: 4px;
  margin: 0 3px;
}
.log-body a {
  color: var(--color-primary);
}
.log-body .poem {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  text-align: center;
  padding: 50px;
  line-height: 1.6;
  margin: 30px auto;
  border-radius: 8px;
  font-size: 22px;
  box-shadow: 0 0 1px 10px #e0e3e9, 15px 15px 10px 10px #f6f6f6;
  letter-spacing: 1em;
  position: relative;
  max-width: 100%;
  font-family: serif;
  color: #000;
}
.log-body .poem p {
  font-size: inherit;
  border-bottom: 3px solid #e0e3e9;
  padding-left: 1em;
}
.log-body .poem.mini {
  font-size: 16px;
  letter-spacing: 0.5em;
}
.log-body a.btn {
  text-decoration: none;
}
.log-body .btn-box {
  padding: 30px;
  text-align: center;
  border: 2px dashed #ccc;
  margin: 1em 0;
}
.log-body .log-hide-content {
  padding: 30px;
  border: 2px dashed #ccc;
  margin: 1em 0;
  border-radius: 10px;
  display: flex;
}
.log-body .log-hide-content .hide-card-left {
  flex: 1;
}
.log-body .log-hide-content .hide-card-right {
  width: 120px;
}
.log-body .log-hide-content .hide-card-right img {
  width: 100%;
  border: 5px dashed #dedede;
  border-radius: 5px;
}
.log-body .log-hide-content .input {
  display: inline-block;
  width: 220px;
  margin-right: 15px;
}
.log-body .log-hide-content .btn {
  margin-top: 0;
}
.log-body .tags {
  display: flex;
  border-radius: 2em;
  flex-wrap: wrap;
}
.log-body .tags a {
  margin-right: 10px;
  text-decoration: none;
  opacity: 0.9;
  margin-bottom: 10px;
}
.log-body .related_log_box {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.log-body .related_log_box p {
  font-size: 24px;
  margin-bottom: 20px;
  background: var(--color-bg-linear);
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.log-body .related_log_box p b {
  font-weight: normal;
}
.log-body .related_log_box ul {
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}
.log-body .related_log_box li {
  list-style: none;
  width: 50%;
}
.log-body .related_log_box a {
  color: inherit;
}
.log-body .related_log_box a:hover {
  color: var(--color-primary);
  opacity: 0.8;
}

.log-title {
  font-size: 1.5em;
  font-weight: bold;
  position: relative;
}

.log-body-footer {
  padding: 20px;
  font-size: 14px;
  background: var(--color-bg);
  border-radius: 8px;
}
.log-body-footer p {
  margin-bottom: 0;
}

.breadcrumb {
  padding: 15px 0;
  display: none;
}
.breadcrumb ul {
  display: flex;
}
.breadcrumb li {
  list-style: none;
}
.breadcrumb li:after {
  content: ">";
  margin: 0 10px;
  color: #aaa;
  display: inline-block;
}
.breadcrumb li:last-of-type:after {
  display: none;
}

.article {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.ad {
  margin-bottom: 30px;
}

[data-href] {
  cursor: pointer;
}

.side-bar {
  width: 336px;
  display: none;
  /* 侧边栏-图文列表*/
  /*侧边栏-链接*/
  /* 侧边栏-归档 */
  /* 侧边栏-分类 */
  /*侧边栏-日历*/
}
.side-bar .widget {
  margin-bottom: 15px;
}
.side-bar .widget .h2 {
  white-space: nowrap;
}
.side-bar .widget .icon-hot {
  color: red;
}
.side-bar .widget li {
  padding: 6px 0;
  list-style-type: none;
}
.side-bar .widget ul {
  padding: 0;
}
.side-bar .widget .widget-inner {
  line-height: 1.8;
}
.side-bar .widget .more {
  font-size: 12px;
  font-weight: normal;
  float: right;
}
.side-bar .widget-list-media li {
  margin-bottom: 10px;
  transition: all 0.3s;
}
.side-bar .widget-list-media li:hover {
  transform: translateY(-5px);
}
.side-bar .widget-list-media li a {
  display: flex;
}
.side-bar .widget-list-media li:last-of-type {
  margin-bottom: 0;
}
.side-bar .widget-list-media .media-img {
  width: 80px;
  padding-top: 3px;
  margin-right: 10px;
  flex-shrink: 0;
}
.side-bar .widget-list-media .media-img img {
  width: 100%;
  border-radius: 4px;
}
.side-bar .widget-list-media .media-img.log_list_link {
  width: 42px;
  margin-right: 15px;
}
.side-bar .widget-list-media .media-content {
  flex: 1;
}
.side-bar .widget-list-media h4 {
  overflow: hidden;
  margin-bottom: 10px;
}
.side-bar .widget-list-media .info {
  font-size: 12px;
  color: grey;
}
.side-bar .widget-list-media .info .item {
  margin-right: 10px;
}
.side-bar .widget-common ul {
  display: flex;
  flex-wrap: wrap;
}
.side-bar .widget-common li {
  width: 100%;
  padding: 3px;
}
.side-bar .widget-common a {
  padding: 7px 10px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.side-bar .widget-common a:hover {
  background: var(--color-bg);
  color: inherit;
}
.side-bar .widget-archive a {
  white-space: nowrap;
}
.side-bar .widget-link a {
  justify-content: start;
  align-items: center;
}
.side-bar .widget-link .ico {
  width: 1.5em;
  height: 1.5em;
  margin-right: 10px;
  border-radius: 50%;
}
.side-bar .nav-list-card .row .col-4 {
  flex-basis: 100%;
}
.side-bar #calendar .day,
.side-bar #calendar .day2 {
  position: relative;
}
.side-bar #calendar .day {
  background: var(--color-bg-linear);
  color: #fff;
}
.side-bar #calendar .day2 {
  background: var(--color-bg);
}
.side-bar #calendar .calendar {
  width: 100%;
  border-collapse: collapse;
}
.side-bar #calendar .calendar td {
  text-align: center;
  line-height: 2.2;
  border-radius: 6px;
}
.side-bar #calendar .calendar td a {
  font-weight: bold;
  display: block;
}
.side-bar #calendar .calendartop {
  width: 100%;
  text-align: center;
}
.side-bar #calendar .calendartop td {
  width: 50%;
  padding: 16px 0;
}
.side-bar .widget-comment .widget-comment-item {
  border-radius: 8px;
  box-shadow: var(--light-shadow);
  background: var(--color-bg-alt);
  margin-bottom: 15px;
  padding: 20px;
  display: block;
}
.side-bar .widget-comment .widget-comment-item:hover {
  background: var(--color-bg-hover);
}
.side-bar .widget-comment .widget-comment-item .comment-content {
  word-break: break-all;
  margin-bottom: 0;
  position: relative;
  font-family: serif;
}
.side-bar .widget-comment .widget-comment-item .comment-content img {
  max-width: 100%;
}
.side-bar .widget-comment .widget-comment-item .comment-refer {
  margin: 1em 0;
  font-size: 12px;
}
.side-bar .widget-comment .widget-comment-item .time {
  flex: 1;
  font-size: 12px;
  color: #999;
  text-align: right;
}
.side-bar .widget-comment .widget-comment-item .widget-comment-info {
  display: flex;
  align-items: center;
}
.side-bar .widget-comment .widget-comment-item .widget-comment-info .avatar {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-right: 5px;
  border-radius: 50%;
}
.side-bar .widget-user {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 15px;
  position: relative;
  overflow: hidden;
}
.side-bar .widget-user .author-bg {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: #f7f9ff no-repeat center;
  background-size: cover;
  z-index: 0;
  filter: grayscale(0.5) opacity(0.1);
}
.side-bar .widget-user .username {
  font-size: 22px;
  display: inline-block;
}
.side-bar .widget-user .desc {
  position: relative;
  padding: 0 20px 20px;
  z-index: 1;
}
.side-bar .widget-user .desc p {
  text-align: center;
  margin-top: 0.5em;
  color: #545454;
  word-break: break-all;
}
.side-bar .widget-user .avatar {
  width: 86px;
  height: 86px;
  line-height: 74px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  font-size: 38px;
  margin: 0 auto;
  transition: transform 0.4s;
  padding: 6px;
  display: block;
}
.side-bar .widget-user .avatar:hover {
  transform: rotate(360deg);
}
.side-bar .widget-user .iconfont {
  font-size: 20px;
  margin: 0 5px;
}

.comment-box {
  padding-top: 20px;
}
.comment-box .comment {
  position: relative;
  padding: 15px 15px 15px 68px;
  background: var(--color-bg);
  margin: 15px 0;
  border-radius: 8px;
}
.comment-box .comment .avatar {
  position: absolute;
  left: 15px;
}
.comment-box .comment .avatar img {
  width: 43px;
  height: 43px;
  border-radius: 50%;
}
.comment-box .comment .comment-time {
  color: #8492A6;
  display: inline;
  font-size: 0.8em;
}
.comment-box .comment-info .poster {
  font-size: 14px;
  color: var(--color-text-muted);
}
.comment-box .comment-info .h2 {
  font-size: 14px;
  margin: 15px 0 0;
}
.comment-box .comment-info .h2 a {
  margin-left: 10px;
  color: #ff5722;
}
.comment-box .comment-content {
  margin: 10px 0;
}
.comment-box .comment-children {
  margin-bottom: 0;
  margin-top: 0;
  padding-top: 5px;
  padding-bottom: 5px;
}
.comment-box .comment-reply {
  color: #163ddd;
  font-size: 13px;
}

.pagination {
  margin: 25px auto;
  text-align: center;
  justify-content: center;
}
.pagination a,
.pagination span {
  display: inline-block;
  min-width: 38px;
  height: 38px;
  line-height: 38px;
  text-decoration: none;
  padding: 0 10px;
  margin: 0 1px;
  background-color: #f4f4f5;
  color: #606266;
  border-radius: 8px;
  transition: all 0.3s;
}
.pagination span,
.pagination a:hover {
  background: var(--color-bg-linear);
  color: #fff;
}
.pagination .total {
  background: #f4f4f5;
  color: inherit;
}

.site-tools {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 998;
}
.site-tools .item {
  display: block;
  background-color: var(--color-bg-alt);
  width: 46px;
  height: 46px;
  line-height: 46px;
  border-radius: 50%;
  margin-top: 10px;
  text-align: center;
  position: relative;
  cursor: pointer;
  box-shadow: var(--light-shadow);
}
.site-tools .item:hover, .site-tools .item.active {
  background: var(--color-bg-linear);
}
.site-tools .item:hover .iconfont, .site-tools .item.active .iconfont {
  color: #fff;
}
.site-tools .item .iconfont {
  font-size: 24px;
  color: var(--color-text-muted);
}
.site-tools .gotoup {
  display: none;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  display: none;
  max-width: 100%;
}
.modal .modal-mask {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
}

.card {
  background: var(--color-bg-alt);
  border-radius: 8px;
  max-width: 100%;
  box-shadow: var(--light-shadow);
}
.card .card-header {
  padding: 12px 18px;
  border-bottom: 1px #f7f7f7 solid;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card .card-header .iconfont {
  cursor: pointer;
}
.card .card-body {
  padding: 18px;
}

.btn {
  outline: none;
  border: 1px solid var(--color-border);
  background: var(--color-bg-alt);
  padding: 10px 15px;
  border-radius: 6px;
  box-shadow: 0 2px 3px rgba(5, 122, 255, 0.06);
  cursor: pointer;
  white-space: nowrap;
}
.btn.btn-primary {
  background: var(--color-bg-linear);
  color: #fff;
}
.btn.btn-block {
  display: block;
  width: 100%;
}
.btn:hover {
  opacity: 0.9;
}
.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.login-form {
  padding: 0 20px 20px;
}
.login-form .logo {
  display: block;
  text-align: center;
  padding-bottom: 20px;
}
.login-form .logo img {
  height: 48px;
  display: block;
  margin: 0 auto;
}

.echo-log {
  display: flex;
  gap: 20px;
}

.badge {
  padding: 5px 7px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1;
  background: var(--color-bg-darken);
  color: var(--color-text-muted) !important;
  margin-right: 5px;
  display: inline-block;
  white-space: nowrap;
  transition: all 0.3s;
}
.badge.mini {
  padding: 4px 6px;
  font-size: 12px;
}
.badge:last-of-type {
  margin-right: 0;
}
.badge:hover {
  background: var(--color-primary);
  color: #fff !important;
}

.icon-rss {
  color: #ff972f;
}

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