/*z字体*/
@font-face{
    font-family:'Candyhome' ;  /* 字体名自定义即可 */
    src:url('/fonts/Candy.ttf'); /* 字体文件路径 */
    font-display : swap;
  }
  h1#site-title {
    font-family: 'Candyhome', sans-serif;
  }
@font-face{
    font-family:'deyi' ;  /* 字体名自定义即可 */
    src:url('/fonts/dy.ttf'); /* 字体文件路径 */
    font-display : swap;
  }
body {
    font-family: 'deyi', sans-serif;
  }
  /*阿里图标*/
  svg.icon {
    width: 1em; height: 1em;
    /* width和height定义图标的默认宽度和高度*/
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
 }  
 /*aplayer吸附*/
.aplayer.aplayer-fixed.aplayer-narrow .aplayer-body {
  left: -66px !important;
  /* 默认情况下缩进左侧66px，只留一点箭头部分 */
}

.aplayer.aplayer-fixed.aplayer-narrow .aplayer-body:hover {
  left: 0 !important;
  /* 鼠标悬停是左侧缩进归零，完全显示按钮 */
}
/*一图流*/
/* 页脚透明 */
#footer{
  background: transparent!important;
}
/* 页脚黑色透明玻璃效果移除 */
#footer::before{
    background: transparent!important;
  }
/* 头图透明 */
#page-header{
  background: transparent!important;
}
/* 头图遮罩层透明 */
#page-header::before{
  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;
    }
/* 文章页背景 */
.layout_post>#post {
  /* 以下代表透明度为0.5 可以自行修改*/
  background: rgba(255,255,255,.5);
}

/* 所有页面背景 */
#aside_content .card-widget, #recent-posts>.recent-post-item, .layout_page>div:first-child:not(.recent-posts), .layout_post>#page, .layout_post>#post, .read-mode .layout_post>#post{
  /* 以下代表透明度为0.5 */
  background: rgba(255,255,255,.5);
}

/*文章的整体背景，渐变色设置*/
#web_bg {
  background-image: linear-gradient(to top, #fff1eb 0%, #ace0f9 100%);
  background: #FFEFBA;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #FFFFFF, #FFEFBA);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #FFFFFF, #FFEFBA);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background: #2BC0E4;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #EAECC6, #2BC0E4);
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #EAECC6, #2BC0E4);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
/* 主页所有文章页面背景 */
#aside_content .card-widget,
#recent-posts>.recent-post-item,
.layout_page>div:first-child:not(.recent-posts),
.layout_post>#page,
.layout_post>#post,
.read-mode .layout_post>#post {
  /* 以下代表透明度为0.5 */
  background: rgba(255, 255, 255, .5);
}
/*侧边栏页面*/
#aside-content>.card-widget {
  background: rgba(255, 255, 255, .6);
}
#aside-content>.sticky_layout>.card-widget {
  background: rgba(255, 255, 255, .6);
}
/*文章页面*/
.layout>#post {
  background: rgba(255, 255, 255, .6);
}
/*分类页面*/
.layout>#page {
  background: rgba(255, 255, 255, .6);
}
/*时间轴页面*/
.layout>#archive {
  background: rgba(255, 255, 255, .6);
}

/* 博主昵称颜色 */
.author-info__name {
  color: #2b9be6;
}

/* 鼠标样式 */
body {
  cursor: url(https://cdn.jsdelivr.net/gh/sviptzk/HexoStaticFile@latest/Hexo/img/default.cur),
      default;
}

a,
img {
  cursor: url(https://cdn.jsdelivr.net/gh/sviptzk/HexoStaticFile@latest/Hexo/img/pointer.cur),
      default;
}
