@charset"utf-8";
/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*主题变量*/
:root,[data-theme=light] {
  --hl-page-width:60%;
  --hl-header-height:4.75rem;
  
  --hl-body-bg:#f0f0f0;
  --hl-gray-bg:#f6f6f6;
  --hl-text-color:#333;
  --hl-text-secondary-color:#777;
  --hl-article-color:#424244;
  --hl-primary:#111;
  --hl-primary-hover:#000;
  
  --hl-warning-rgb:255, 80, 41;
  --hl-success-rgb:189, 255, 28;
  --hl-success-rgb-hover:107, 151, 0;
  
  --hl-border-radius:12px;
  --hl-dark-lighter-bg:#fff;
  --hl-dark-lighter-shadow:rgba(10, 10, 10, 0.06) 0px 1.2px 1.2px 0px, rgba(10, 10, 10, 0.04) 0px 5px 10px 0px; 

  --hl-black:#000;  
  --hl-white:#fff;
  --hl-box-bg:#fff;
  --hl-box-shadow:rgba(10, 10, 10, 0.06) 0px 1.2px 1.2px 0px, rgba(10, 10, 10, 0.04) 0px 5px 10px 0px;
  --hl-box-shadow-inset: 0 0 0 2px #e0e0e0 inset;
  --hl-box-shadow-deep:0 1.3436836425447838px .5374734570179134px -.625px #00000017,0 3.184767494094558px 1.273906997637823px -1.25px #00000016,0 5.80934510345105px 2.3237380413804196px -1.875px #00000015,0 9.658024572418071px 3.8632098289672276px -2.5px #00000014,0 15.596922177565284px 6.238768871026112px -3.125px #00000012,0 25.530614085937845px 10.212245634375137px -3.75px #00000010,0 43.96199341069441px 17.58479736427776px -4.375px #0000000a,0 80px 31.999999999999993px -5px #0000;
  --hl-img-border:1px solid #f0f0f0;
  --hl-box-border:1.6px solid #eee;
  --hl-box-tint-bg:#f9f9f9;
  --hl-box-tint-shadow:rgba(0, 0, 0, 0.08) 0px 0.8px 0.8px 0px, rgba(0, 0, 0, 0.04) 0px 3.2px 6.4px 0px;
  --hl-box-tint-border:1px solid #f0f0f0;
  
  --hl-cursor-default: url(../img/cursor/default.svg) 8 6, default;
  --hl-cursor-pointer: url(../img/cursor/pointer.svg) 6 6, pointer;
  --hl-cursor-active: url(../img/cursor/active.svg) 6 6, pointer;
  --hl-cursor-not-allowed: url(../img/cursor/default.svg) 8 6, not-allowed;
  --hl-cursor-help: url(../img/cursor/help.svg) 6 6, help;
  --hl-cursor-grab: url(../img/cursor/grab.svg) 6 6, grab;
  --hl-cursor-grabbing: url(../img/cursor/grabbing.svg) 6 6, grabbing;
  --hl-cursor-special: url(../img/cursor/special.svg) 10 5, pointer;  
}
[data-theme=dark] {
  color-scheme:dark;
  --hl-body-bg:#161616;
  --hl-gray-bg:#2b2b2b;
  --hl-text-color:#aaa;
  --hl-text-secondary-color:#bbb;
  --hl-article-color:#ccc;
  --hl-primary:#aaa;
  --hl-primary-hover:#eee;
  
  --hl-border-radius:12px;
  
  --hl-dark-lighter-bg:#383838;
  --hl-dark-lighter-shadow:rgba(10, 10, 10, 0.2) 0px 1.2px 1.2px 0px, rgba(10, 10, 10, 0.1) 0px 5px 10px 0px;
  
  --hl-box-bg:#212121;
  --hl-box-shadow:rgba(0, 0, 0, 0.6) 0px 1.2px 1.2px 0px, rgba(0, 0, 0, 0.5) 0px 5px 10px 0px;
  --hl-box-shadow-inset: 0 0 0 2px #393838 inset;
  --hl-img-border:1px solid #444;
  --hl-box-border:1.6px solid #222;
  --hl-box-tint-bg:#444;
  --hl-box-tint-shadow:rgba(0, 0, 0, 0.08) 0px 0.8px 0.8px 0px, rgba(0, 0, 0, 0.04) 0px 3.2px 6.4px 0px;
  --hl-box-tint-border:1px solid #454545;  
  
}
/*页面基础*/
html {
  scroll-behavior: smooth;
}
html {
  cursor:var(--hl-cursor-default);
}
html .back-to-top,
html .back-to-top i,
html a *,
html a,
html button,
html label {
  cursor:var(--hl-cursor-pointer);
}
html a:active *,
html a:active,
html button:active,
html label:active {
  cursor:var(--hl-cursor-active);
}
html[data-theme],
a:hover{
  transition: all .3s ease-in-out; 
}
*, *::before, *::after {
  box-sizing: border-box;
}
body{
  color:var(--hl-text-color);
  background: var(--hl-body-bg);
  font-size:.875rem;
  line-height: 1.4;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol','Noto Color Emoji';
}
a{
  color:var(--hl-primary);
  text-decoration: none;
}
a:hover{
  color:var(--hl-primary-hover);
}
.underline a{
  text-decoration: none;
  border-bottom: 1px dotted rgba(0,0,0,0.0);
  padding-bottom: 1px;
  transition: all .3s ease-in-out; 
}
.underline a:hover{
  text-decoration: none;
  padding-bottom: 1px;
  border-bottom: 1px dotted var(--hl-text-secondary-color);
}
h1,h2,h3,h4,h5,h6{
  font-weight:bold;
}
h2{
  font-size:1.1rem;
}
/*全局样式*/
.ellipsis-line-1 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis!important;
}
.page-width{
  width:var(--hl-page-width);
  margin: 0 auto;
}
.btn{
  color:var(--hl-box-bg);
  background-color: var(--hl-primary);
  height: 100%;
  padding: .5rem 1rem;
  border-radius: calc(var(--hl-border-radius) / 2);
  box-shadow:var(--hl-box-shadow-deep);
  transition: all 0.3s ease; 
}
.btn:hover{
  transform: scale(1.05);
  color:var(--hl-box-bg);
  background-color: var(--hl-primary-hover);
  box-shadow: var(--hl-box-shadow-deep),
  2px 2px 0 2px rgba(23, 23, 23, 0.06),
  -2px -2px 0 2px rgba(23, 23, 23, 0.06),
  2px -2px 0 2px rgba(23, 23, 23, 0.06),
  -2px 2px 0 2px rgba(23, 23, 23, 0.06);
}
.btn-light{
  color:var(--hl-primary);
  background-color: var(--hl-gray-bg);
  height: 100%;
  padding: .5rem 1rem;
  border-radius: calc(var(--hl-border-radius) / 2);
  box-shadow:  var(--hl-box-shadow-inset),var(--hl-box-shadow);
  transition: all 0.3s ease; 
}
.btn-light:hover{
  transform: scale(1.05);
  box-shadow: 0 0 0 1px #e0e0e0 inset,
  1px 1px 0 1px rgba(23, 23, 23, 0.06),
  -1px -1px 0 1px rgba(23, 23, 23, 0.06),
  1px -1px 0 1px rgba(23, 23, 23, 0.06),
  -1px 1px 0 1px rgba(23, 23, 23, 0.06);
}
input, button,textarea {
  border: .5px solid var(--hl-text-secondary-color);
  border-radius: calc(var(--hl-border-radius) / 2);
  outline: none;
  color:var(--hl-text-secondary-color);
}
button {
  cursor: pointer;
}
.flex{
  display: flex;
}
.space-between{
  justify-content: space-between;
}
.flex-wrap{
  flex-wrap:wrap;
}
.flex-nowrap{
  flex-wrap:nowrap;
}
.box{
  background: var(--hl-box-bg);
  border-radius: var(--hl-border-radius);
  border: var(--hl-box-border);
  box-shadow: var(--hl-box-shadow);
}
.box-tint{
  background: var(--hl-box-tint-bg);
  border: var(--hl-box-tint-border);
  box-shadow: var(--hl-box-tint-shadow);
}
.radius{
  border-radius: var(--hl-border-radius);
}
.radius-full{
  border-radius: 100rem;
}
.w-100{
  width: 100%;
}
.gray-bg{
  background: var(--hl-gray-bg);
}
.flink-bar{
  justify-content: space-between;
  align-items: center;
}
.py-2{
  padding: 0.5rem 0!important;
}
.p-1{
  padding: 0.25rem!important;
}
.p-2{
  padding: 0.5rem!important;
}
.p-3{
  padding: 1rem!important;
}
.p-4{
  padding: 1.5rem!important;
}
.p-5{
  padding: 3rem!important;
}
.pl-1{
  padding-left: 0.25rem!important;
}
.pl-2{
  padding-left: 0.5rem!important;
}
.pl-4{
  padding-left: 1.5rem!important;
}
.pr-1{
  padding-right: 0.25rem!important;
}
.pr-2{
  padding-right: 0.5rem!important;
}
.pr-3{
  padding-right: 1rem!important;
}
.pr-4{
  padding-right: 1.5rem!important;
}
.pt-1{
  padding-top: 0.25rem!important;
}
.pt-2{
  padding-top: 0.5rem!important;
}
.pt-3{
  padding-top: 1rem!important;
}
.pb-2{
  padding-bottom: 0.5rem!important;
}
.pb-3{
  padding-bottom: 1rem!important;
}
.pb-4{
  padding-bottom: 1.5rem!important;
}
.pb-5{
  padding-bottom: 3rem!important;
}
.ml-1{
  margin-left:0.25rem!important;
}
.ml-2{
  margin-left:0.5rem!important;
}
.mr-2{
  margin-right:0.5rem!important;
}
.mr-5{
  margin-right:3rem!important;
}
.mr-3{
  margin-right:1rem!important;
}
.mt-2{
  margin-top:0.5rem!important;
}
.mt-3{
  margin-top:1rem!important;
}
.mt-4{
  margin-top:1.5rem!important;
}
.mt-5{
  margin-top:3rem!important;
}
.mb-2{
  margin-bottom:.5rem!important;
}
.mb-3{
  margin-bottom:1rem!important;
}
.mb-4{
  margin-bottom:1.5rem!important;
}
.mb-5{
  margin-bottom:3rem!important;
}
.fixed-h{
  position: sticky;
  top:.5rem;
  z-index: 9;
}
.gradient-text{
  background: linear-gradient(120deg, #409BFB, #8FA4F7, #F991BD);
  background-clip: border-box;
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
}
.gradient-text-animation {
  background: linear-gradient(120deg, #409BFB, #8FA4F7, #FFA5CB, #9C7DE1, #5795F7);
  background-clip: border-box;
  -webkit-background-clip: text; 
  color: transparent;
  display: inline-block;
  background-size: 300% 300%;
  animation: gradient-animation 8s ease infinite;
}
@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.ribbon {
  position: absolute;
  top: 0;
  z-index:1;
  --f: 10px; /* 控制折叠部分*/
  font-size: .825rem;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  color: var(--hl-black);
  padding: .1rem 2rem;
  background: rgba(var(--hl-success-rgb),.8);
  border-bottom :var(--f) solid rgba(var(--hl-success-rgb-hover),.3);
  clip-path: polygon(
    100% calc(100% - var(--f)),100% 100%,calc(100% - var(--f)) calc(100% - var(--f)),var(--f) calc(100% - var(--f)), 0 100%,0 calc(100% - var(--f)),999px calc(100% - var(--f) - 999px),calc(100% - 999px) calc(100% - var(--f) - 999px))
}
.ribbon.top-left {
  left: 0;
  transform: rotate(-45deg);
  transform-origin: 0% 100%;
  top: 2rem;
}
/* modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  /*backdrop-filter: blur(30px);*/
  transition: all .3s ease-in-out;
  justify-content: center;
  align-items: center;
  z-index: 99;
}
.modal img{
  display: inline-block;
}
.modal-content {
  min-width:10rem;
  background-color:var(--hl-white);
  padding: 1rem;
  border-radius: calc(var(--hl-border-radius) / 1.6);
  box-shadow: var(--hl-box-shadow-deep);
  text-align: center;
}
.modal-close {
  margin-top: 10px;
  padding: .3rem 1rem;
  background-color: var(--hl-primary);
  color: var(--hl-box-bg);
  border: none;
  border-radius: calc(var(--hl-border-radius) / 1.6);
  cursor: pointer;
}
/*toast*/
.toast {
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--hl-white);
  padding: .8rem 1.5rem;
  border-radius: calc(var(--hl-border-radius) / 2);
  z-index: 13;
  transition: opacity 0.3s, transform 0.3s;
}
.toast i{
  color: rgba(var(--hl-success-rgb),1);
}

/*暗夜模式下处理图片反白或混合模式*/
[data-theme=dark] .header .logo img,
[data-theme=dark] .about-me h2 img,
[data-theme=dark] .blog-post .data-bar .avatar img,
[data-theme=dark] .about-me .illu img{
  /*mix-blend-mode: darken;*/
  opacity: .9;
}
/*页面css*/
.page-bg{
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image:url(dot-bg.svg);
  background-repeat: repeat;
  background-position: center;
  background-size: 2rem auto;
  opacity:0.06;
  display: none;
}
.header{
  justify-content: space-between;
  align-items: center;
  height: var(--hl-header-height);
}
.header .text-logo{
  font-size: 1.2rem;
}
.header .logo img {
  vertical-align: middle;
  height: 1.95rem;
}
.header .misc .search,
.header .auto-mode,
.header .m-menu{
  display: block;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
}
.header .misc .search:hover,
.header .auto-mode:hover{
  background: var(--hl-gray-bg);
}
.header .misc .search .iconfont-hellno,
.header .auto-mode .iconfont-hellno,
.header .m-menu{
  font-size:1.5rem;
  display: block;
}
.header .misc .search-box{
  opacity: 0;
  visibility: hidden;
  width: 30rem;
  height:3.8rem;
  justify-content: space-between;
  position: fixed;
  top:calc(var(--hl-header-height) + 2.3rem);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  transition: all .3s ease-in-out;
  border:none;
  box-shadow:var(--hl-box-shadow-deep);
  border-radius: calc(var(--hl-border-radius) / 1.5);
}
.header .overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  /*backdrop-filter: blur(30px);*/
  transition: all .3s ease-in-out;
  z-index: 10;
}
.header .overlay.show {
  display: block;
}
.header .misc .search-box.show{
  opacity: 1;
  visibility: visible;
}
.header .misc .search-box input{
  width: 100%;
  height: 100%;
  border:none;
  font-size:0.9375rem;
  text-indent: .5rem;
}
.header .misc .search-box .search-button{
  width: 25%;
  border:none;
  align-items: center;
  justify-content: center;
}
.header .navbar a{
  padding: .7rem .8rem;
  font-size:0.9375rem;
  color: var(--hl-text-color);
  border-radius: calc(var(--hl-border-radius) / 2);
  font-weight: 500;
}
.header .navbar,
.header .navbar ul,
.header .navbar ul li{
  height: 4.75rem;
  line-height: 4.75rem;
}
.header .navbar ul li{
  margin: .1rem .2rem;
}
.header .navbar ul{
  align-items: center;
}
.header .navbar .has-sub{
  position: relative;
}
@media (min-width:1200px) {
  .header .navbar li.has-sub:hover .sub{
    display: block!important;
  }
  .m-toggle-icon{
    display: none;
  }
}
@media (max-width:1200px) {
  .m-toggle-icon{
    font-size:1rem;
    width:2.8rem;
    height:2.8rem;
    line-height: 2.8rem;
    text-align: center;
    border-radius: 100rem;
    position: absolute;
    top:.1rem;
    right:0;
    z-index: 1;
  }
  .header .navbar .has-sub > a::after{
    display: none!important;
  }  
}
.header .navbar li.active > a,
.header .navbar a:hover{
  background:var(--hl-gray-bg);
}
.header .navbar li.active a:before{
  content: '';
  position: absolute;
  bottom: 1.16rem;
  width: .8rem;
  border-radius: var(--hl-border-radius);
  height: 3px;
  left: calc(50% - .8rem / 2);
  overflow: hidden;
  z-index: 1;
  background-color: rgb(var(--hl-warning-rgb));
  box-shadow: rgba(var(--hl-warning-rgb), 0.5) 0px 0px 16px 3px;
}
.header .navbar .sub a:before {
  display: none;
}
.header .navbar li{
  position: relative;
}
.header .m-menu{
  display:none;
}
.header .navbar .sub{
  display: none;
  position: absolute;
  top:4.58rem;
  left:-.6rem;
  min-width:9rem;
  flex-direction:column;
  padding: .5rem;
  white-space: nowrap;
  border-radius: calc(var(--hl-border-radius) / 1.5);
  box-shadow: var(--hl-box-shadow-deep);
}
.header .navbar .sub:before {
  content: '';
  position: absolute;
  top: -1rem;
  left: 1rem;
  width: 0;
  height: 0;
  border-left: .8rem solid transparent;
  border-right: .8rem solid transparent;
  border-bottom: .8rem solid var(--hl-box-bg);
  transform: translateY(50%);
  z-index: 12;
  border-radius: 2rem;
  filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.1));
}
.header .navbar .has-sub > a:after {
  font-family: "iconfont-hellno" !important;
  content: '\e608';
  font-size: 13px;
  display: inline-block;
  transition: transform 0.2s ease-in-out;
  padding-left:.2rem;
  transform-origin: calc(50% + .1rem) 50%;
}
.header .navbar .has-sub.active:hover > a:after{
  transform: rotate(180deg);
}
.header .navbar .sub a{
  height: 2rem;
  line-height: 2rem;
  display: block;
  padding: 0 1.3rem;
  border-radius: calc(var(--hl-border-radius) / 2);
}
.header .navbar .sub a:hover{
  background: var(--hl-gray-bg);
}
.navbar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  /*backdrop-filter: blur(30px);*/
  transition: all .3s ease-in-out;
  z-index: 1;
}
.navbar-overlay.active {
  display: block;
}
.header .navbar.active + .navbar-overlay {
  display: block;
}
.about-me{
  justify-content: space-around;
  align-items: center;
}
.about-me h2 img{
  width: 2.6rem;
  height: 2.6rem;
}
.about-me h2.name{
  font-size:2rem;
  align-items: center;
  flex-wrap: wrap;
  filter: grayscale(10%);
}
.about-me .info{
  text-align: justify;
  font-size:0.9375rem;
}
.about-me .illu img{
  max-height:15rem;
}
.qr-code{
  max-width: 10rem;
}
.about-me .marquee-container {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: .5rem; /* 行间距 */
}
.about-me .tag-wrap {
  position: relative;
  width: 292px;/*90*3+10*2=290*/
  height:2rem;
  align-items: center;
  overflow: hidden;
}
.about-me .tag-wrap .tag.show {
  opacity: 1;
  transform: scale(1);
}
.about-me .tag-wrap .tag {
  position: absolute;
  left: 0;
  opacity: 0;
  width:90px;
  height:1.5rem;
  line-height: 1.5rem;
  text-align: center;
  transform: scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease;
  margin-right: 1rem;
  background-color: var(--hl-gray-bg);
  color: var(--hl-primary);
  font-size: 0.75rem;
}
.about-me .tag-wrap .tag .iconfont-hellno{
  font-size:.6rem;
}
.about-me .tag-wrap .tag:nth-child(6n + 1) {
  background: #fff2e8;
  color: #ff7a45;
  border: .5px solid #ffd8bf;
}
.about-me .tag-wrap .tag:nth-child(6n + 2) {
  background: #f6ffed;
  color: #237804;
  border: .5px solid #d9f7be;
}
.about-me .tag-wrap .tag:nth-child(6n + 3) {
  background: #f9f0ff;
  color: #9254de;
  border: .5px solid #efdbff;
}
.about-me .tag-wrap .tag:nth-child(6n + 4) {
  background: #e6fffb;
  color: #08979c;
  border: .5px solid #b5f5ec;
}
.about-me .tag-wrap .tag:nth-child(6n + 5) {
  background: #e6f4ff;
  color: #4096ff;
  border: .5px solid #bae0ff;
}
.about-me .tag-wrap .tag:nth-child(6n + 6) {
  background: #fff0f6;
  color: #f759ab;
  border: 1px solid #ffd6e7;
}
/*微语*/
.weiyu{
  padding: 2.1rem;
  padding-top: 0;
}
.weiyu .widget{
  width:100%;
}
.weiyu-list{
  gap: 1rem;
}
.weiyu-list li{
  position: relative;
  flex-direction: column;
  flex: 0 0 calc(33.333% - 1rem * 2 / 3);
  background: var(--hl-dark-lighter-bg);
  border: var(--hl-box-border);
  border-width: 1px;
  box-shadow: var(--hl-dark-lighter-shadow);
  border-radius: var(--hl-border-radius);
  transition: all 0.3s ease;
  padding: 1.5rem 2rem 1.5rem 2rem;
  /*background-image: repeating-linear-gradient( 145deg, var(--hl-gray-bg) 0, var(--hl-gray-bg) 1px, transparent 1px, transparent 3px );*/
}
.weiyu-list li:hover {
  box-shadow: 2px 2px 0 2px rgba(23, 23, 23, 0.04), -2px -2px 0 2px rgba(23, 23, 23, 0.02), 2px -2px 0 2px rgba(23, 23, 23, 0.02), -2px 2px 0 2px rgba(23, 23, 23, 0.02);
}
.weiyu-list li .info {
  margin-top: auto; /*推到底端*/
  margin-left: auto;/*推到右侧*/
  align-self: flex-end;
  align-items: center;
  opacity: .7;
  font-size: .75rem;
}
.weiyu-list li .weiyu-quote{
  position: absolute;
  top: 0;
  left: 0.5rem;
  font-size: 2.5rem;
  opacity: .07;
}
.weiyu-list li p{
  font-size:0.9375rem;
  text-align: justify;
  padding-left: 1.2rem;
}
.weiyu-list li .info i{
  font-size: 1.5rem;
  display: none;
}
.weiyu-list li .info small{
  font-size:.875rem;
  opacity: .5;
}
.article{
  position: relative;
}
.article a{
  justify-content: space-between;
  align-items: center;
}
.article figure{
  width:4.5rem;
  height:4.5rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .3s ease-in-out;
  flex: 0 0 auto;
}
.article figure img{
  width:3.5rem;
  height:3.5rem;
  object-fit: cover;
  border-radius: calc(var(--hl-border-radius) / 1.6);
  transition: all .3s ease-in-out;
}
.article:last-child{
  margin-bottom: 0!important;
}
.article .content{
  width:calc(100% - 4rem - 3rem - 1rem);
}
.article{
  transition: all 0.3s ease;
}
.article:hover{
  box-shadow:
  2px 2px 0 2px rgba(23, 23, 23, 0.04),
  -2px -2px 0 2px rgba(23, 23, 23, 0.02),
  2px -2px 0 2px rgba(23, 23, 23, 0.02),
  -2px 2px 0 2px rgba(23, 23, 23, 0.02);
}
.article:hover figure{
  box-shadow:var(--hl-box-shadow-deep);
}
.article .more{
  width:3rem;
  font-size:25px;
  color:var(--hl-text-secondary-color);
  text-align: center;
  transform: rotate(-135deg);
  transition: all 0.3s ease;
}
.dark-lighter-box{
  background: var(--hl-dark-lighter-bg);
  box-shadow: var(--hl-dark-lighter-shadow);
}
.article p{
  color:var(--hl-text-secondary-color);
}
.article .info,
.article .info span{
  justify-content: start;
  align-items: center;
}
.article .info .iconfont-hellno{
  font-size:20px;
}
.article:hover .more{
  transform: rotate(-90deg) scale(1.1);
  color:#666;
}
.article:hover figure{
  transform: rotate(0deg) scale(1.05);
}
.article:hover figure img{
  transform: rotate(0deg) scale(1.05);
}
.breadcrumb{
  justify-content: start;
  align-items: center;
}
.breadcrumb ol{
  justify-content: start;
  align-items: center;
}
.breadcrumb .iconfont-hellno{
  opacity: .5;
  font-size: .875rem;
}
/*文章页*/
.blog-post .title{
  font-size: 1.8rem;
}
.blog-post video{
  max-width:100%;
  margin:1rem 0;
  border-radius: var(--hl-border-radius);
  padding: .3rem;
  border: var(--hl-img-border);
  box-shadow: 0 1px 1px #666d8014,0 4px 8px #666d8014,0 0 #fff,0 0 0 3px #35384900;
}
.blog-post .article-content h1,
.blog-post .article-content h2,
.blog-post .article-content h3,
.blog-post .article-content h4,
.blog-post .article-content h5,
.blog-post .article-content h6{
  padding: 1rem 0 .5rem 0;
  line-height: 1.4;
  font-weight:bold;
}
.blog-post .article-content h1{
  font-size:2.2rem;
}
.blog-post .article-content h2{
  font-size:2rem;
}
.blog-post .article-content h3{
  font-size:1.8rem;
}
.blog-post .article-content h4{
  font-size:1.6rem;
}
.blog-post .article-content h5{
  font-size:1.4rem;
}
.blog-post .article-content h6{
  font-size:1.2rem;
}
.blog-post .article-content p{
  padding-bottom:1rem;
}
.blog-post .article-content,
.blog-post .article-content p{
  font-size: 1rem;
  line-height: 1.8rem;
  font-weight: 400;
  text-align: justify;
  color:var(--hl-article-color);
}
.blog-post .article-content img{
  max-width: 100%;
  height: auto;
  border-radius: var(--hl-border-radius);
  padding:.3rem;
  border:var(--hl-img-border);
  box-shadow: 0 1px 1px #666d8014,0 4px 8px #666d8014,0 0 #fff,0 0 0 3px #35384900;
}
.blog-post .data-bar{
  border-top:var(--hl-img-border);
  justify-content: space-between;
  align-items: center;
}
.blog-post .data-bar .main{
  justify-content: flex-start;
  align-items: center;
}
.blog-post .data-bar .avatar img{
  width: 3rem;
  height:3rem;
  vertical-align: middle;
}
.blog-post .data-bar .author,
.blog-post .data-bar .main .info{
  color: var(--hl-text-secondary-color);
  align-items: center;
}
.blog-post .data-bar .main .info .sep{
  opacity: .5;
}
.blog-post .data-bar .misc .comment{
  background: var(--hl-gray-bg);
  padding: .2rem .2rem .2rem .7rem;
  text-align: center;
  align-items: center;
}
.blog-post .data-bar .misc .comment .num{
  background: var(--hl-gray-bg);
  box-shadow: var(--hl-box-tint-shadow);
  border:3px solid var(--hl-box-bg);
  font-size: .75rem;
  padding: 0 .35rem;
  margin-top:-1px;
}
.blog-post .tag-group a{
  height: 2rem;
  line-height: 2rem;
  display: block;
  background: var(--hl-gray-bg);
  border-radius: calc(var(--hl-border-radius)  / 2);
  margin: .5rem .5rem .5rem 0;
  padding: 0 1rem 0 .7rem;
  transition: all .3s ease-in-out; 
}
.blog-post .tag-group a:hover{
  background: var(--hl-gray-bg);
  transform: scale(1.05);
}
.blog-post .tag-group i{
  background: var(--hl-gray-bg);
  box-shadow: var(--hl-box-tint-shadow);
  border: 3px solid var(--hl-box-bg);
  border-radius: calc(var(--hl-border-radius)  / 4);
  font-size: .75rem;
  margin-right:.2rem;
  margin-top: -1px;
}
/*上下篇*/
.prev-next-log{
  justify-content: space-between;
  align-items:center;
  font-size:1rem;
}
.prev-next-log .disable{
  opacity: .3;
}
.prev-next-log .icon{
  font-size:.75rem;
}
.prev-next-log a{
  transition: all .3s ease-in-out; 
  overflow: hidden;
}
.prev-next-log a:hover{
  background-image: repeating-linear-gradient(
  145deg,
  var(--hl-gray-bg) 0,
  var(--hl-gray-bg) 2px, /* 斜线宽度 */
  transparent 1px,
  transparent 5px /* 斜线间隔 */
  );
}
.prev-next-log a .title,
.prev-next-log a .icon{
  transition: all .3s ease-in-out; 
}
.prev-next-log a:hover .icon{
  
}
.prev-next-log a:hover .title{
  transform: scale(1.05);
}
.prev-next-log a:hover .icon{
  transform: scale(.8);
}
.prev-log{
  width: 50%;
  text-align: center;
  border-right:2px solid var(--hl-gray-bg);
}
.next-log{
  width: 50%;
  text-align: center;
}
.f-link img{
  border-radius: 10rem;
}
.f-link ul{
  flex-wrap: wrap;
}
.f-link ul li{
  height: 20px;
  line-height: 20px;
  align-items: center;
  margin-bottom: .3rem;
}
.footer{
  justify-content: center;
  align-items: center;
  position: relative;
  color:var(--hl-text-secondary-color);
}
.footer .info,
.footer .copyright{
  text-align: center;
  font-size:.825rem;
}
.footer .info{
  justify-content: center;
}
.back-to-top{
  position: fixed;
  right:calc(50% - var(--hl-page-width) / 2 - 3.5rem);
  bottom:6rem;
  width: 3rem;
  height:3rem;
  line-height: 3rem;
  text-align: center;
  cursor: pointer;
  background:var(--hl-box-bg);
  box-shadow: var(--hl-box-shadow);
  border-radius: calc(var(--hl-border-radius) / 1.5);
}
.back-to-top i{
  font-size:1.5rem;
  cursor: pointer;
}
/*分页*/
.pagination {
  font-size: 0.875rem;
  padding: 1rem;
  text-align: center;
  justify-content: center;
  padding-bottom: .5rem;
  padding-top:0;
  margin-bottom: 0 !important;
}
.pagination em{
  padding: .4rem .5rem;
}
.pagination span {
  margin: .2rem .2rem .2rem 0;
  background: var(--hl-primary);
  border-radius: calc(var(--hl-border-radius)  / 1.5);
  box-shadow:var(--hl-box-shadow-deep);
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  color: var(--hl-box-bg);
}
.pagination a {
  margin:.2rem .2rem .2rem 0;
  background: var(--hl-box-bg);
  box-shadow: var(--hl-box-tint-shadow);
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: calc(var(--hl-border-radius)  / 1.5);
  transition: all .3s ease-in-out; 
}
.pagination a:hover {
  box-shadow:var(--hl-box-shadow-deep);
}
#pagenavi {
  text-align: center;
  font-size: 0.875rem;
}
#pagenavi span {
  margin: 0 .2rem;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: calc(var(--hl-border-radius)  / 1.5);
  color: #000;
}
#pagenavi a {
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: calc(var(--hl-border-radius)  / 2);
}
/*评论*/
.flex-v-center{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.text-nowrap {
  white-space: nowrap !important;
}
.ms-auto {
  margin-left: auto !important;
}
.list-split-dot{
  font-size: .75rem;
  flex-wrap: wrap;
}
.list-split-dot svg{
  margin-right:3px;
}
.list-split-dot .iconfont-sys{
  font-size: .875rem;
  padding-right: 3px;
}
.list-split-dot li:not(:first-child)::before {
  content: "•";
  color: inherit;
  padding-left: 0.5em;
  padding-right: 0.5em;
  opacity: 0.8;
}
.comment-zone {
  scroll-margin-top: calc(var(--hl-header-height) + 1rem); /* 设置遮挡的高度 */
}
.sys-icon {/* iconfont svg图标 */
  width: .875rem;
  height: .875rem;
  vertical-align: -0.15rem;
  fill: currentColor;
  overflow: hidden;
}
.comment-zone .h3,
.comment-zone .h5{
  font-weight:bold;
}
.comment-zone .text-muted,
.comment-zone .comment-reply{
  opacity: .6;
}
.comment-zone img.avatar{
  display: inline-block;
  overflow: hidden;
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
  border-radius: 100%;
}
.comment-post {
	background-color: var(--hl-gray-bg);
	border-radius:var(--hl-border-radius);
	overflow: hidden;
}
.comment-form input:not(.form-control),
.comment-form button:not(.btn),
.comment-form textarea:not(.form-control) {
	outline: 0;
	border: 0;
	background-color: transparent;
	font-size: .875rem;
}
.comment-form-head .input-box {
	flex: 1;
}
.comment-form-head {
	border-bottom: 1px solid var(--bs-border-color);
}
@media (min-width: 768px) {
	.comment-form-head .input-box:not(:first-child)::before {
		content: '';
		color: var(--hl-text-secondary-color);
	  border-left: var(--hl-box-border);
	}
}
@media (max-width: 768px) {
  .comment-zone {
    padding:1rem!important;
  }
  .comment-zone .comment-item-client{
    margin-left:0!important;
    font-size:.75rem;
    width: 100%;
    padding: .3em 0;
    order:1;
  }
  .comment-zone .comment-item-time{
    order:2;
  }
  .comment-zone .comment-reply{
    order:3;
  }
	.comment-form-head {
		flex-direction: column !important;
	}
}
.comment-form-head input {
	width: 100%;
	padding: 1em;
	color: var(--hl-text-color);
}
.comment-form-body {
	padding: 1em;
	border-top: var(--hl-box-border);
}
.comment-form-body textarea {
	resize: none;
	width: 100%;
	color: var(--hl-text-color);
}
textarea::-webkit-scrollbar-track {
	box-shadow: none;
	background-color: transparent;
}
textarea::-webkit-scrollbar-thumb {
	background-color: var(--hl-gray-bg);
}
.comment-post-code .captcha,
.comment-post-code .input-post-code {
	height: 30px;
	border-radius: calc(var(--hl-border-radius) / 2);
}
.comment-post-code .input-post-code {
	padding: 0 0.5em;
}
.comment-list .comment-item {
	border-top: 1px solid var(--bs-border-color);
	padding-top: 1em;
	margin-top: 1em;
}
.comment-list .comment-item > .avatar {
	margin-right: 10px;
}
@media (min-width: 768px) {
	.comment-list > .comment-list-children {
		margin-left: 50px;
	}
}
.comment-item-box {
	flex: 1;
}
.comment-item-box .comment-post {
	margin-top: 1em;
}
.comment-item-content {
	position: relative;
	border-radius:calc(var(--hl-border-radius) / 1.5);
	border:2px solid var(--hl-gray-bg);
  background-image: repeating-linear-gradient( 145deg, var(--hl-gray-bg) 0, var(--hl-gray-bg) 1px, transparent 1px, transparent 3px );	
}
.comment-item-content::before {
	content: '';
	position: absolute;
	top: -7px;
	left: 1.5em;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid var(--hl-gray-bg);
}

/*响应式*/
@media (max-width:1250px) {
  .page-width{
    width:calc(100% - 20px);
  }
  main.content,.f-link,.footer{
    margin-top:.5rem!important;
  }
  .footer{
    margin-bottom:.5rem!important;
  }
  .blog-list{
    padding: 0!important;
  }
  .box{
    border:none;
  }
  .header.fixed-h {
    top:0;
  }
  .header .m-menu{
    display: block;
  }
  .header .navbar{
    display: none;
    position: absolute;
    top:calc(var(--hl-header-height) + .2rem);
    right:0;
    width:50%;
    padding:1.5rem 1rem;
    max-height:70vh;
    height:auto;
    overflow-y: scroll;
    overflow-x:hidden ;
    border-radius: var(--hl-border-radius);
    background: var(--hl-box-bg);
    box-shadow: var(--hl-box-tint-shadow);
  }
  .header .navbar li.active a::before,
  .header .navbar li:not(.has-sub):hover a::before{
    transform: rotate(90deg);
    bottom: 1.4rem;
    width: 1rem;
    left:-.4rem;
  }
  .header .navbar li.has-sub:hover a::before{
    box-shadow: none;
    width: 0;
  }
  .header .navbar a{
    display:block;
    padding: 0 1rem;
  }
  .header .navbar ul{
    display:block;
  }
  .header .navbar ul, .header .navbar ul li{
    height: auto;
    line-height: 3rem;
  }
  .header .navbar.active{
    display:block;
  }
  .header .navbar .sub{
    position: static;
    box-shadow: none;
  }
  .header .navbar .sub::before{
    display:none;
  }
  .header .misc .search{
    margin-right:0!important;
  }
  .header .misc .search-box .search-button{
    width: 30%;
  }
  .header .misc .search-box{
    width:calc(100% - 20px);
  }
  .header .misc .login{
    border-radius: 100rem;
    padding: 0;
  }
  .header .misc .login .name{
    display: none;
  }
  .header .misc .login .iconfont-hellno{
    padding-right:0!important;
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
  }
  .about-me{
    flex-wrap:wrap;
  }
  .about-me .illu{
    order:1;
  }
  .about-me .main{
    order:2;
    margin-right:0!important;
    margin-top:2rem;
  }
  .about-me h2.name,
  .about-me .action{
    justify-content: center;
  }
  .weiyu{
    padding: 1rem;
  }
  .weiyu-list li{
    flex: 0 0 100%;
    padding: 1rem 1.5rem 1rem 1.5rem;
  } 
  .weiyu-list li .weiyu-quote{
    font-size: 2rem;
  }  
  .weiyu-list li p {
    padding-left: 1.5rem;
  }  
  .blog-list .main{
    padding: 1rem!important;
  }
  .blog-list .article{
    padding: .5rem!important;
  }
  .blog-list .more{
    width:2.5rem;
  }
  .blog-list .article .title{ 
    padding-bottom: .05rem!important;
  }
  .blog-list .article figure{
    margin-right: .5rem!important;
  }
  .blog-post .data-bar .avatar{
    padding-right:.5rem!important;
  }
  .blog-post .data-bar .avatar img{
    width:2.5rem;
    height: 2.5rem;
    vertical-align: middle;
  }
  .blog-post .data-bar .main .info .sep{
    padding: 0 .25rem!important;
  }
  .blog-post .data-bar .main .info .sep:last-of-type,
  .blog-post .data-bar .main .info .sep:nth-last-of-type(1),
  .blog-post .data-bar .read-time,
  .blog-post .data-bar .main .info .edit,
  .blog-post .data-bar .misc .comment span,
  .footer .icp-ga{
    display: none;
  }
  .prev-next-log a{
    font-size:.875rem;
    padding:1rem .5rem!important;
  }
  .article-wrap{
    padding: 1rem!important;
  }
  .back-to-top{
    right:10px;
  }
}
@media (max-width:768px) {
  .about-me{
    padding:2rem!important;
  } 
  .blog-list .article .comment{
    display: none;
  }
  .blog-list .article{
    margin-bottom:.5rem!important;
  }
  .blog-post .title {
    font-size: 1.4rem;
  }
  .article .more{
    display:none;
  }
  .blog-list .article .title{
    font-size:.875rem;
  }  
  .article .content {
    width: calc(100% - 4rem - 1.2rem);
  }
  .f-link ul{
    flex-wrap: wrap;
    font-size: .75rem;
  }  
}  