/* 引入字体路径 */
@font-face{
    font-family:'ssdh' ;  /* 字体名自定义即可 */
    src:url('/fonts/LanmanhaibaoHT.ttf'); /* 字体文件路径 */
    font-display : swap;
  }

/* 页脚透明 */
#footer{
    background: transparent!important;
  }
/* 头图透明 */
#page-header{
    background: transparent!important;
  }
  /*top-img黑色透明玻璃效果移除，不建议加，除非你执着于完全一图流或者背景图对比色明显 */
#page-header.post-bg:before {
    background-color: transparent!important;
  }
/*夜间模式伪类遮罩层透明*/
[data-theme="dark"]
    #footer::before{
        background: transparent!important;
      }
[data-theme="dark"]
    #page-header::before{
      background: transparent!important;
      }
/* 底部版权美化 */
#post .post-copyright {
  box-shadow: 2px 2px 5px;
}
[data-theme="dark"]
  #post .post-copyright {
    background-color: rgb(7 8 10);
    /* text-shadow: #bfbeb8 1px 0 4px; */
    text-shadow: #bfbeb8 0 0 2px;
    box-shadow: 0 0 5px #1478d2;
    animation: flashlight 1s linear infinite alternate;
  }
[data-theme="dark"]
  #post .post-copyright {
    border: 1px solid rgb(19 18 18 / 35%);
  }
[data-theme="dark"]
  .post-copyright-info {
    color: #e0e0e4;
  }
#post .post-copyright__title{
    font-size:22px;
}
#post .post-copyright__notice{
    font-size:15px;
}
/* 版权结束 */
/* 目录图标360旋转 */
#search-button:hover i.fa-search{
  transform: rotate(360deg) !important;
}
i.fa-search{
  padding: 4px;
  transition: transform .3s
}
#nav .menus_items .menus_item:hover i.dir-rotation{
  transform: rotate(360deg) !important;
}
i.dir-rotation{
  padding: 4px;
  transition: transform .3s
}
/* 列表图标360旋转 */
#nav .menus_item_child .site-page:hover i.list-rotating {
  transform: rotate(360deg) !important;

}
i.list-rotating{
  padding: 4px;
  transition: transform .3s
/*    animation: rotate 3s linear infinite; */
}
/* 图标360结束 */