@charset"utf-8";
/*暗夜模式下处理图片反白或混合模式*/
[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(--hn-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(--hn-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(--hn-header-height) + 2.3rem);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  transition: all .3s ease-in-out;
  border:none;
  box-shadow:var(--hn-box-shadow-deep);
  border-radius: calc(var(--hn-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(--hn-text-color);
  border-radius: calc(var(--hn-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(--hn-gray-bg);
}
.header .navbar li.active a:before{
  content: '';
  position: absolute;
  bottom: 1.16rem;
  width: .8rem;
  border-radius: var(--hn-border-radius);
  height: 3px;
  left: calc(50% - .8rem / 2);
  overflow: hidden;
  z-index: 1;
  background-color: rgb(var(--hn-warning-rgb));
  box-shadow: rgba(var(--hn-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(--hn-border-radius) / 1.5);
  box-shadow: var(--hn-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(--hn-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(--hn-border-radius) / 2);
}
.header .navbar .sub a:hover{
  background: var(--hn-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;
}
.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(--hn-gray-bg);
  color: var(--hn-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;
}
.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(--hn-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(--hn-box-shadow-deep);
}
.article .more{
  width:3rem;
  font-size:25px;
  color:var(--hn-text-secondary-color);
  text-align: center;
  transform: rotate(-135deg);
  transition: all 0.3s ease;
}
.dark-lighter-box{
  background: var(--hn-dark-lighter-bg);
  box-shadow: var(--hn-dark-lighter-shadow);
}
.article p{
  color:var(--hn-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 .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(--hn-article-color);
}
.blog-post .article-content img{
  max-width: 100%;
  border-radius: var(--hn-border-radius);
  padding:.3rem;
  border:var(--hn-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(--hn-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(--hn-text-secondary-color);
  align-items: center;
}
.blog-post .data-bar .main .info .sep{
  opacity: .5;
}
.blog-post .data-bar .misc .comment{
  background: var(--hn-gray-bg);
  padding: .2rem .2rem .2rem .7rem;
  text-align: center;
  align-items: center;
}
.blog-post .data-bar .misc .comment .num{
  background: var(--hn-gray-bg);
  box-shadow: var(--hn-box-tint-shadow);
  border:3px solid var(--hn-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(--hn-gray-bg);
  border-radius: calc(var(--hn-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(--hn-gray-bg);
  transform: scale(1.05);
}
.blog-post .tag-group i{
  background: var(--hn-gray-bg);
  box-shadow: var(--hn-box-tint-shadow);
  border: 3px solid var(--hn-box-bg);
  border-radius: calc(var(--hn-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(--hn-gray-bg) 0,
  var(--hn-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(--hn-gray-bg);
}
.next-log{
  width: 50%;
  text-align: center;
}
.footer{
  justify-content: center;
  align-items: center;
  position: relative;
  color:var(--hn-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(--hn-page-width) / 2 - 3.5rem);
  bottom:6rem;
  width: 3rem;
  height:3rem;
  line-height: 3rem;
  text-align: center;
  cursor: pointer;
  background:var(--hn-box-bg);
  box-shadow: var(--hn-box-shadow);
  border-radius: calc(var(--hn-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 span {
  margin: 0 .2rem;
  background: var(--hn-primary);
  border-radius: calc(var(--hn-border-radius)  / 1.5);
  box-shadow:var(--hn-box-shadow-deep);
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  color: var(--hn-box-bg);
}
.pagination a {
  margin: 0 .2rem;
  background: var(--hn-box-bg);
  box-shadow: var(--hn-box-tint-shadow);
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: calc(var(--hn-border-radius)  / 1.5);
  transition: all .3s ease-in-out; 
}
.pagination a:hover {
  box-shadow:var(--hn-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(--hn-border-radius)  / 1.5);
  color: #000;
}
#pagenavi a {
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: calc(var(--hn-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(--hn-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(--hn-gray-bg);
	border-radius:var(--hn-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(--hn-text-secondary-color);
	  border-left: var(--hn-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(--hn-text-color);
}
.comment-form-body {
	padding: 1em;
	border-top: var(--hn-box-border);
}
.comment-form-body textarea {
	resize: none;
	width: 100%;
	color: var(--hn-text-color);
}
textarea::-webkit-scrollbar-track {
	box-shadow: none;
	background-color: transparent;
}
textarea::-webkit-scrollbar-thumb {
	background-color: var(--hn-gray-bg);
}
.comment-post-code .captcha,
.comment-post-code .input-post-code {
	height: 30px;
}
.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(--hn-border-radius) / 1.5);
	border:2px solid var(--hn-gray-bg);
  background-image: repeating-linear-gradient( 145deg, var(--hn-gray-bg) 0, var(--hn-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(--hn-gray-bg);
}

/*响应式*/
@media (max-width:1200px) {
  .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(--hn-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(--hn-border-radius);
    background: var(--hn-box-bg);
    box-shadow: var(--hn-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;
  }
  .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;
  }  
}  