@charset "UTF-8";
/* color */
/* shadow */
/* size */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-padding-top: 71px;
}

body {
  overflow-y: auto;
  padding-top: 71px;
  background: var(--background-image);
}

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

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

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

.transition-2 {
  transition: all 0.2s;
}

.empty {
  text-align: center;
  display: block;
  padding: 30px;
  margin: 0 auto;
  background: #fff;
  width: 100%;
  border-radius: 6px;
}
.empty img {
  max-width: 100%;
  width: 300px;
}

.fluid-box {
  width: 100%;
  min-height: calc(100vh - 250px);
}

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

/* layout */
.layout-container {
  margin: 0 auto;
  display: flex;
  min-height: 100%;
  max-width: 1640px;
  padding: 0 15px;
}
.layout-container.home {
  display: block;
}

.layout-left {
  width: 240px; /* 左边固定宽度 */
  flex-shrink: 0; /* 防止左边元素收缩 */
  position: fixed; /* 固定位置 */
  top: 71px;
  background: #fff;
  border-radius: 6px;
  padding: 15px;
}

.layout-right {
  flex: 1; /* 右边自适应 */
  padding-left: 260px;
  padding-right: 20px;
}

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

/* home */
.home-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 15px;
  z-index: 999;
  background: var(--primary-color);
  backdrop-filter: saturate(50%) blur(4px);
  color: #fff;
}
.home-header .layout-container {
  justify-content: space-between;
  align-items: center;
}
.home-header .logo {
  display: flex;
  align-items: center;
  font-size: 18px;
  width: 210px;
  justify-content: center;
  font-family: "Microsoft YaHei", "微软雅黑", monospace;
}
.home-header .logo img {
  height: 36px;
  margin-right: 5px;
}
.home-header .menu {
  display: flex;
  margin-bottom: 0;
  line-height: 36px;
  height: 36px;
  font-size: 15px;
}
.home-header .menu, .home-header .menu ul {
  padding-left: 0;
}
.home-header .menu .menu-item {
  position: relative;
  margin: 0 5px;
}
.home-header .menu li {
  list-style-type: none;
}
.home-header .menu li:hover .sub-menu {
  display: block;
}
.home-header .menu a {
  padding: 7px 12px;
  border-radius: 6px;
}
.home-header .menu a:hover {
  background: var(--primary-color-80);
}
.home-header .sub-menu {
  position: absolute;
  top: 36px;
  background: #fff;
  color: #333;
  line-height: 2.4;
  border-radius: 6px;
  filter: drop-shadow(0 2px 5px rgba(102, 102, 102, 0.44));
  padding: 7px !important;
  display: none;
  z-index: 999;
}
.home-header .sub-menu a {
  padding: 0 5px;
  white-space: nowrap;
  display: block;
  transition: all 0.2s;
  color: rgba(0, 0, 0, 0.8);
}
.home-header .sub-menu a:hover {
  opacity: 1;
  background: var(--primary-color);
  color: #fff;
}
.home-header .sub-menu:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid transparent;
  border-bottom: 6px solid #fff; /* 修改颜色为你想要的颜色 */
  position: absolute;
  top: -12px;
  left: 2em;
}
.home-header .sub-menu .icon {
  width: 1em;
  margin-right: 5px;
}
.home-header .navbar-right .iconfont {
  padding: 5px;
  border-radius: 6px;
}
.home-header .navbar-right .iconfont:hover {
  background: var(--primary-color);
}
.home-header .navbar-right .navbar-right-menu {
  display: inline-block;
}
.home-header .navbar-right .navbar-right-menu .iconfont {
  font-size: 15px;
  padding: 0;
}
.home-header .navbar-right .navbar-right-menu .icon-down {
  margin-left: 5px;
}
.home-header .navbar-right .menu-item {
  margin: 0 5px;
}
.home-header .icon-dashboard {
  display: none;
}

.home-section {
  padding: 0;
  margin: 0;
  transition: box-shadow 0.2s;
  border-radius: 6px;
}
.home-section ul {
  margin-bottom: 0;
}

.home-section-header {
  font-size: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.home-section-header .iconfont {
  font-size: 20px;
  margin-right: 10px;
  height: 22px;
}
.home-section-header .more {
  float: right;
  font-size: 15px;
}
.home-section-header .more .iconfont {
  font-size: 15px;
}
.home-section-header a:hover {
  color: var(--primary-color);
}

.side-menu {
  padding-left: 0;
  overflow-y: auto;
  height: calc(100vh - 116px);
}
.side-menu a {
  line-height: 2.8;
  transition: all 0.3s;
  cursor: pointer;
  border-radius: 6px;
  padding: 0 10px 0 0;
  display: block;
  text-align: center;
}
.side-menu .iconfont {
  margin-right: 10px;
  display: inline-block;
  font-size: 18px;
  vertical-align: -1px;
  height: 1em;
}
.side-menu a:hover {
  background: #f9f9f9;
}
.side-menu a.active {
  background: var(--primary-color);
  color: #fff;
}

@keyframes wave {
  2% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-25%);
  }
  50% {
    transform: translateX(-50%);
  }
  75% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(0);
  }
}
.wave {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 1000% 1000% 0 0;
  position: absolute;
  width: 200%;
  height: 30px;
  animation: wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.8;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.wave:nth-of-type(2) {
  bottom: -10px;
  animation: wave 18s linear reverse infinite;
  opacity: 0.5;
}

/* 搜索框 */
.search-box {
  position: relative;
  text-align: center;
  padding: 50px 30px;
  margin-bottom: 20px;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s;
}
.search-box .search-engine {
  color: #f3f3f3;
}
.search-box .search-engine li {
  display: inline-block;
  border-bottom: 1px solid transparent;
  padding: 0 10px;
}
.search-box .search-engine li:hover,
.search-box .search-engine li.active {
  cursor: pointer;
  border-bottom-color: #fff;
  background: #fff;
  color: #000;
  border-radius: 10px;
}
.search-box .form-control {
  border: none;
}
.search-box .form-control:focus {
  box-shadow: 0 0 0 0.25rem transparent;
}
.search-box form {
  width: 50%;
  margin: 0 auto;
}
.search-box .form-control, .search-box .btn {
  font-size: 15px;
  padding: 10px 20px;
}
.search-box .input-group {
  border-radius: 30px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.3);
}
.search-box h2 {
  margin-bottom: 30px;
  color: #fff;
  font-weight: 200;
  font-family: "Microsoft YaHei", "微软雅黑", monospace;
}
.search-box .tags {
  text-align: center;
  padding-left: 0;
  padding-top: 15px;
  margin-bottom: 0;
}
.search-box .tags li {
  color: #f3f3f3;
  display: inline-block;
  margin-right: 15px;
  font-size: 13px;
  margin-bottom: 10px;
}
.search-box .tags a {
  background: rgba(0, 0, 0, 0.1);
  padding: 3px 8px;
  border-radius: 6px;
  min-width: 50px;
  display: inline-block;
  text-align: center;
  color: #fff;
}
.search-box .tags a:hover {
  background: rgba(0, 0, 0, 0.2);
}
.search-box.s1 {
  padding-bottom: 60px;
  background: linear-gradient(315deg, var(--primary-color) 3%, var(--primary-color-80) 98%) fixed;
}
.search-box.s1 h2 {
  color: #fff;
}
.search-box.s1 .input-group {
  border: 3px solid rgba(255, 255, 255, 0.3);
}
.search-box.s2 h2 {
  color: #454545;
}
.search-box.s2 .input-group {
  border: 3px solid rgba(0, 0, 0, 0.05);
}
.search-box.s2 .tags a {
  color: #6b767e;
}
.search-box.s2 .wave {
  display: none;
}
.search-box.s2 .search-engine {
  color: #6b767e;
}
.search-box.s2 .search-engine li:hover,
.search-box.s2 .search-engine li.active {
  background: rgba(0, 0, 0, 0.1);
  color: #6b767e;
}

/* log-list */
.log-list ul {
  padding-left: 0;
}
.log-list li {
  list-style-type: none;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.log-list a {
  display: flex;
  transition: 0.3s;
  background: #fff;
  padding: 20px;
  border-radius: 6px;
}
.log-list a:hover h3 {
  color: var(--primary-color);
}
.log-list .cover_image {
  margin-right: 15px;
  width: 85px;
  flex-shrink: 0;
}
.log-list .cover_image img {
  width: 100%;
  height: auto;
}
.log-list .info {
  flex: 1;
  padding: 0 10px;
  width: calc(100% - 100px);
}
.log-list h3 {
  font-size: 18px;
}
.log-list .date {
  font-size: 13px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #959595;
}
.log-list .date:last-of-type {
  margin-bottom: 0;
}
.log-list.log-list-cards ul {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}
.log-list.log-list-cards a {
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  background: #fff;
  height: 100%;
}
.log-list.log-list-cards a:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
}
.log-list.log-list-cards a:hover h3 {
  color: inherit;
}
.log-list.log-list-cards .cover_image {
  margin: 0;
  width: auto;
}
.log-list.log-list-cards .cover_image img {
  height: 160px;
}
.log-list.log-list-cards h3 {
  margin: 10px 0 15px;
  font-weight: bold;
}
.log-list.log-list-cards .date {
  margin-bottom: 0;
}
.log-list.log-list-cards li {
  padding: 5px 10px;
}
.log-list.log-list-cards .info {
  padding: 20px;
  width: 100%;
}
.log-list.log-list-cards .log-list-card-v2 {
  position: relative;
  display: block;
}
.log-list.log-list-cards .log-list-card-v2 .cover_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.log-list.log-list-cards .log-list-card-v2 .cover_image, .log-list.log-list-cards .log-list-card-v2 .cover_image img {
  height: 100%;
}
.log-list.log-list-cards .log-list-card-v2 .cover_image:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}
.log-list.log-list-cards .log-list-card-v2 .info {
  display: flex;
  height: 200px;
  position: relative;
  z-index: 1;
  flex-direction: column;
  justify-content: end;
  color: rgba(255, 255, 255, 0.9);
}
.log-list.log-list-cards .log-list-card-v2 .date {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0;
}

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

/* nav-list */
.nav-list {
  background: #fff;
  border-radius: 6px;
  padding: 20px 10px;
}
.nav-list ul {
  font-size: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  border-radius: 6px;
}
.nav-list ul li {
  font-size: 16px;
  display: block;
  width: 10%;
}
.nav-list ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  color: #6b767e;
  white-space: nowrap;
  text-align: center;
  padding: 10px 0;
}

.nav-list li img, .nav-list .nav-item img, .nav-list-card li img, .nav-list-card .nav-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 5px;
  border-radius: 50%;
}
.nav-list li .link, .nav-list .nav-item .link, .nav-list-card li .link, .nav-list-card .nav-item .link {
  overflow: hidden;
  border-radius: 6px;
  transition: all 0.3s;
  position: relative;
}
.nav-list li .link:hover, .nav-list .nav-item .link:hover, .nav-list-card li .link:hover, .nav-list-card .nav-item .link:hover {
  background: #f9f9f9;
  box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
  transform: translateY(-5px);
}
.nav-list li .link:hover .cover, .nav-list .nav-item .link:hover .cover, .nav-list-card li .link:hover .cover, .nav-list-card .nav-item .link:hover .cover {
  display: flex;
}
.nav-list .cover, .nav-list-card .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  display: none;
  align-items: center;
  justify-content: center;
}
.nav-list .cover span, .nav-list .cover a, .nav-list-card .cover span, .nav-list-card .cover a {
  background: var(--primary-color);
  color: #fff;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 12px;
}
.nav-list .cover span:hover, .nav-list .cover a:hover, .nav-list-card .cover span:hover, .nav-list-card .cover a:hover {
  font-weight: bold;
}
.nav-list .cover .b2, .nav-list-card .cover .b2 {
  margin-left: 10px;
  background: #fff;
  color: var(--primary-color);
}

.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 .link {
  border-radius: 6px;
  background: #fff;
  padding: 15px 15px 15px 84px;
  display: block;
  height: 100%;
  box-sizing: border-box;
}
.nav-list-card .nav-item img {
  position: absolute;
  top: 20px;
  left: 15px;
}
.nav-list-card .nav-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
}
.nav-list-card .nav-item .desc {
  font-size: 12px;
  margin-bottom: 0;
  color: rgba(26, 26, 26, 0.5019607843);
}
.nav-list-card .nav-item .desc .iconfont {
  font-size: 12px;
}

/* 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(--primary-color);
  font-weight: bold;
}
.tab .tab-body .tab-panel {
  display: none;
}
.tab .tab-body .tab-panel.current {
  display: block;
}

.side-menu a.active,
.btn-bg-gradient {
  background: linear-gradient(90deg, var(--primary-color), var(--primary-color-60));
  border: none;
}

.btn-bg-gradient-2 {
  background: linear-gradient(90deg, #f0f, #f59c0a);
  border: none;
}

/* page-footer */
.page-footer {
  padding: 30px;
  font-size: 14px;
  color: #97999a;
  background: #fff;
  line-height: 2;
  margin-top: 15px;
}
.page-footer .layout-container {
  display: flex;
  justify-content: space-between;
}
.page-footer .right {
  text-align: center;
  font-size: 12px;
}

.popover-qrcode {
  text-align: center;
  font-size: 12px;
}
.popover-qrcode img {
  max-width: 100%;
  height: auto;
}
.popover-qrcode p {
  margin-bottom: 0;
}

.hash-title {
  font-size: 22px;
  font-weight: 200;
}
.hash-title:before {
  content: "#";
  margin-right: 10px;
  color: #ff5722;
  font-style: normal;
}

.log-body h1,
.log-body h2 {
  width: 100%;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  line-height: 2;
  box-sizing: border-box;
  font-size: 22px;
}

.log-body {
  padding: 30px;
  background: #fff;
  line-height: 2;
  font-size: 16px;
  word-break: break-word;
  border-radius: 6px;
  margin-top: 15px;
}
.log-body p, .log-body strong {
  font-size: 18px;
}
.log-body p {
  margin-bottom: 1em;
}
.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;
}
.log-body h1 {
  font-size: 26px;
}
.log-body h2 {
  font-size: 20px;
}
.log-body h3, .log-body h4, .log-body h5, .log-body h6 {
  font-weight: bold;
  font-size: 17px;
  margin: 0.5em 0;
}
.log-body strong {
  font-weight: bold;
  font-family: sans-serif;
}
.log-body img {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
}
.log-body pre {
  margin: 16px 0;
}
.log-body pre code {
  padding: 0 10px;
  line-height: 1.5;
  border-radius: 4px;
  display: inline-block;
  font-size: 14px;
  color: #5a5a5a;
}
.log-body ol, .log-body ul {
  margin-bottom: 1em;
}
.log-body ol ul, .log-body ul ul {
  padding-left: 20px;
}
.log-body ol li, .log-body ul li {
  line-height: 2;
}
.log-body ol li ul li, .log-body ul li ul li {
  list-style-type: circle;
}
.log-body ol ol, .log-body ul ol {
  padding-left: 30px;
}
.log-body ol ol li, .log-body ul ol li {
  list-style-type: decimal;
}
.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 blockquote {
  padding: 10px 20px;
  margin: 1em 0;
  color: #819198;
  border-left: 5px solid #dce6f0;
  background: #f9f9f9;
  border-radius: 6px;
}
.log-body blockquote p {
  margin-bottom: 0;
}
.log-body hr {
  border-style: dashed;
  border-width: 2px;
  border-color: #ccc;
  margin: 2em 0;
}
.log-body table {
  width: 100%;
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin-bottom: 1em;
}
.log-body table th, .log-body table td {
  border-bottom: 1px solid #f5f5f5;
  padding: 5px 10px;
}
.log-body table tr:last-of-type td {
  border-bottom: 1px solid #ccc;
}
.log-body table th {
  background-color: #f5f5f5;
}
.log-body video {
  display: block;
  margin: 2em auto;
}
.log-body a {
  text-decoration: underline;
  color: var(--primary-color);
}
.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%;
  box-sizing: border-box;
  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 .btn {
  text-decoration: none;
  margin-bottom: 10px;
  color: #fff;
}
.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;
  box-sizing: border-box;
}
.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 a {
  margin-right: 15px;
  text-decoration: none;
}

.log-info {
  background: #fff;
  border-radius: 6px;
  padding: 30px;
  color: #999;
  margin-bottom: 15px;
  line-height: 2;
  position: relative;
}
.log-info .items > span {
  margin-right: 15px;
}
.log-info .btn {
  margin-left: 10px;
}

.btn .iconfont {
  font-size: inherit;
}

.edit-btn {
  display: none;
  font-size: 14px;
  font-weight: normal;
}

.log-info:hover .edit-btn, .echo-link-info:hover .edit-btn {
  display: inline-block;
}

.log-title {
  color: #000;
  font-size: 26px;
  font-weight: bold;
}

.list_sidebar_available,
.article {
  flex: 1;
  padding-right: 20px;
  box-sizing: border-box;
  max-width: 100%;
  min-height: calc(100vh - 250px);
}

.side-bar {
  width: 430px;
  /* 侧边栏-图文列表*/
  /*侧边栏-链接*/
  /* 侧边栏-归档 */
  /* 侧边栏-分类 */
  /*侧边栏-热门文章*/
  /* 侧边栏-搜索 */
  /*侧边栏-日历*/
}
.side-bar .widget {
  margin-bottom: 15px;
  background: #fff;
  padding: 15px;
  border-radius: 6px;
}
.side-bar .widget li {
  padding: 10px 0;
  list-style-type: none;
}
.side-bar .widget h3 {
  margin-bottom: 15px;
}
.side-bar .widget ul {
  padding: 0;
}
.side-bar .widget .widget-inner {
  padding: 15px;
  line-height: 1.8;
}
.side-bar .widget .more {
  font-size: 12px;
  font-weight: normal;
  float: right;
}
.side-bar .widget-comment .widget-comment-info {
  display: flex;
  margin-bottom: 15px;
  align-items: center;
}
.side-bar .widget-comment .widget-comment-info .avatar {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  margin-right: 10px;
  margin-top: 5px;
  border-radius: 50%;
}
.side-bar .widget-comment .widget-comment-info .username {
  font-style: normal;
  font-weight: bold;
}
.side-bar .widget-comment .widget-comment-info .time {
  color: #aaacb6;
  flex: 1;
  text-align: right;
}
.side-bar .widget-comment .comment-inner .widget-comment-content {
  background: #f9f9f9;
  border-radius: 10px;
  position: relative;
}
.side-bar .widget-comment .comment-inner .widget-comment-content:hover {
  background: #eee;
}
.side-bar .widget-comment .comment-inner .widget-comment-content:hover:after {
  border-bottom-color: #eee;
}
.side-bar .widget-comment .comment-inner .widget-comment-content:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  position: absolute;
  bottom: 100%;
  left: 15px;
  border-bottom-color: #f9f9f9;
}
.side-bar .widget-comment .comment-inner .widget-comment-content a {
  padding: 12px;
  display: block;
}
.side-bar .widget-comment .comment-inner .comment-content {
  word-break: break-all;
  margin-bottom: 0;
  font-size: 14px;
}
.side-bar .widget-comment .comment-refer {
  margin: 5px 0 0;
  color: #b4b4b4;
  font-size: 12px;
}
.side-bar .widget-list-media li {
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  background: #fff;
  transition: all 0.2s;
}
.side-bar .widget-list-media li:hover h4 {
  color: var(--primary-color);
}
.side-bar .widget-list-media li a {
  display: flex;
  border-radius: 4px;
}
.side-bar .widget-list-media .media-img {
  width: 68px;
  padding-top: 3px;
  margin-right: 10px;
}
.side-bar .widget-list-media .media-img img {
  width: 100%;
}
.side-bar .widget-list-media.log_list_link .media-img {
  width: 48px;
}
.side-bar .widget-list-media.log_list_link .media-img img {
  border-radius: 48px;
}
.side-bar .widget-list-media .media-content {
  flex: 1;
  overflow: hidden;
}
.side-bar .widget-list-media h4 {
  overflow: hidden;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
}
.side-bar .widget-list-media .info {
  font-size: 14px;
}
.side-bar .widget-common ul {
  display: flex;
  flex-wrap: wrap;
}
.side-bar .widget-common li {
  width: 50%;
  box-sizing: border-box;
  padding: 5px;
}
.side-bar .widget-common li:hover, .side-bar .widget-common li.active {
  color: var(--primary-color);
}
.side-bar .widget-common a {
  padding: 10px;
  height: 100%;
  box-sizing: border-box;
  background: #f9f9f9;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.side-bar .widget-list-top li {
  display: flex;
  align-items: center;
}
.side-bar .widget-list-top a {
  flex: 1;
}
.side-bar .widget-list-top .index {
  display: inline-block;
  width: 20px;
  height: 18px;
  line-height: 18px;
  margin-right: 15px;
  text-align: center;
  color: #ff8200;
  border-radius: 4px;
}
.side-bar .widget-list-top .top-0, .side-bar .widget-list-top .top-1, .side-bar .widget-list-top .top-2 {
  font-weight: bold;
  color: #FF4949;
  font-size: 18px;
}
.side-bar .widget-list-top .view {
  width: 65px;
  text-align: right;
}
.side-bar .widget-user {
  background-size: 100% 130px;
  text-align: center;
  padding-top: 83px;
  position: relative;
  overflow: hidden;
}
.side-bar .widget-user .author_banner {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 130px;
  background: #f7f9ff url("../images/shan.png") no-repeat;
  z-index: 0;
  filter: brightness(0.6);
  opacity: 0.9;
}
.side-bar .widget-user .username {
  font-size: 22px;
  display: inline-block;
  margin-bottom: 0.5em;
}
.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;
  box-sizing: border-box;
  padding: 6px;
}
.side-bar .widget-user .avatar:hover {
  transform: rotate(360deg);
}
.side-bar .widget-user .iconfont {
  font-size: 20px;
  margin: 0 5px;
}
.side-bar .widget-search #logsearch {
  padding: 15px 0;
}
.side-bar .widget-search #logsearch label {
  width: 100%;
}
.side-bar #calendar .day,
.side-bar #calendar .day2 {
  position: relative;
  background: #f9f9f9;
}
.side-bar #calendar .day:after,
.side-bar #calendar .day2:after {
  position: absolute;
  top: -10px;
  left: 15px;
  width: max-content;
  font-size: 8px;
  padding: 3px 5px;
  border-radius: 13px;
  transform: rotate(-45deg);
  z-index: 1;
}
.side-bar #calendar .day {
  background: var(--primary-color);
  color: #fff;
}
.side-bar #calendar .day2:after {
  content: "有更新";
  color: #ccc;
}
.side-bar #calendar .calendartop {
  width: 100%;
  text-align: center;
}
.side-bar #calendar .calendartop td {
  width: 50%;
  padding: 16px 0;
}
.side-bar #calendar .calendar {
  width: 100%;
  padding: 0 20px 20px;
}
.side-bar #calendar .calendar td {
  text-align: center;
  padding: 6px 0;
}
.side-bar #calendar .calendar td a {
  font-weight: bold;
  display: block;
}

.comment-box {
  padding-top: 20px;
}
.comment-box .comment {
  padding: 20px 20px 20px 78px;
  border-bottom: 1px #f7f7f7 solid;
  overflow: hidden;
  height: 100%;
  zoom: 1;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  margin-bottom: 15px;
}
.comment-box .comment .avatar {
  position: absolute;
  left: 15px;
}
.comment-box .comment .avatar img {
  width: 48px;
  border-radius: 50%;
}
.comment-box .comment .poster {
  font-weight: bold;
}
.comment-box .comment:hover {
  transform: translateY(-1px);
  box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
}
.comment-box .comment .comment-children .avatar {
  left: 25px;
}
.comment-box .comment .comment-children .avatar img {
  width: 32px;
}
.comment-box .comment .comment-content {
  margin: 10px 0;
}

.comment-post {
  padding: 25px;
  background: #fff;
  border-radius: 6px;
}

.modal-mode {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-mode .modal-mode-body {
  width: 600px;
  max-width: 100%;
  padding: 20px;
}
.modal-mode .hash-title {
  background: #3a3a3a;
  padding-left: 20px;
  border-radius: 6px;
  line-height: 3;
  display: flex;
  margin-bottom: 5px;
}
.modal-mode .hash-title .respond, .modal-mode .hash-title:before {
  display: none;
}
.modal-mode #cancel-reply {
  font-size: 14px;
  color: #fff;
}

.pagination {
  margin: 25px auto;
  text-align: center;
  justify-content: center;
}
.pagination a,
.pagination span {
  display: inline-block;
  text-decoration: none;
  padding: 5px 15px;
  margin: 0 2px;
  color: #606266;
  min-width: 30px;
  border-radius: 6px;
  transition: all 0.3s;
}
.pagination span,
.pagination a:hover {
  background-color: var(--primary-color);
  color: #fff;
}
.pagination .total {
  background: transparent;
  color: #9a9a9a;
}

.site-tools {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 998;
  border-radius: 6px;
  box-shadow: 0 0 5px 0 rgba(158, 158, 158, 0.09);
  overflow: hidden;
}
.site-tools .item {
  display: block;
  background-color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid #ccc;
}
.site-tools .item:hover, .site-tools .item.active {
  background-color: var(--primary-color);
}
.site-tools .item:hover .iconfont, .site-tools .item.active .iconfont {
  color: #fff;
}
.site-tools .item .iconfont {
  font-size: 30px;
  color: #5a5a5a;
}
.site-tools .gotoup {
  display: none;
}

.link-items {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
}

.link-item {
  display: inline-block;
  font-size: 13px;
  transition: 0.3s;
}
.link-item a {
  display: block;
  padding: 10px;
}
.link-item:hover {
  border-radius: 6px;
  background: #f9f9f9;
}
.link-item .ico {
  width: 18px;
  border-radius: 50%;
}

.layout-fluid .layout-container {
  width: 100%;
  max-width: 100%;
}
.layout-fluid .layout-container.home .layout-left {
  top: 56px;
  left: 0;
  height: calc(100vh - 56px);
  border-radius: 0;
}
.layout-fluid .layout-container.home .layout-right {
  max-width: 1524px;
  margin: 0 auto;
}
.layout-fluid .layout-container.home .page-footer {
  padding-left: 0;
  padding-right: 0;
  background: initial;
}

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