/* Markdown列表 */
#article-container.post-content ul > li {
    list-style-type: unset;
}

#article-container.post-content li::marker {
    color: #8db4c7;
    font-size: 1.15em;
}
/* /Markdown列表 */




/* ---------------------| 倒计时 |---------------------- */
#ggw_countdown {
    text-align: center;
    color: #ff0000;
    font-size: 32px;
    font-weight: 800;
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}
/* ---------------------| /倒计时 |---------------------- */




/* ---------------------| H1~H6样式修改 |---------------------- */

/* https://blog.guole.fun/posts/butterfly-custom/#%E6%96%87%E7%AB%A0%E9%A1%B5H1-H6%E6%A0%B7%E5%BC%8F%E4%BF%AE%E6%94%B9 */
/* 文章页H1-H6图标样式效果 */
h1::before, h2::before, h3::before, h4::before, h5::before, h6::before {
    -webkit-animation: ccc 1.6s linear infinite ;
    animation: ccc 1.6s linear infinite ;
}
h1, h2, h3, h4, h5, h6 {
  padding-left: 0px!important;
}
/* 移动设备样式 */

@media only screen and (max-width: 768px) {

  h1, h2, h3, h4, h5, h6 {
    padding-left: 26px!important;
  }
  
}


@-webkit-keyframes ccc {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(-1turn);
        transform: rotate(-1turn)
    }
}
@keyframes ccc {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(-1turn);
        transform: rotate(-1turn)
    }
}
/* ---------------------| /H1~H6样式修改 |---------------------- */



#article-container .code-expand-btn i {
  color: #fff;
}

/* ---------------------| 行内代码块 样式修改 |---------------------- */
#article-container code {
  color: #7da6c2;
}
/* ---------------------| /行内代码块 样式修改 |---------------------- */


/* ---------------------| 分割线 样式修改 |---------------------- */

hr {
  border: 2px dashed #8db4c7;
}

/* ---------------------| /分割线 样式修改 |---------------------- */




/* ---------------------| 顶部进度条 |---------------------- */
/* 顶部小进度条start */
.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    z-index: 2000;
    position: fixed;
    margin: auto;
    top: 10px;
    left: 0;
    right: 0;
    height: 8px;
    border-radius: 8px;
    width: 4rem;
    background: #eaecf2;
    border: 1px #e3e8f7;
    overflow: hidden;
  }
  .pace-inactive .pace-progress {
    opacity: 0;
    transition: 0.3s ease-in;
  }
  .pace .pace-progress {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    max-width: 200px;
    position: absolute;
    z-index: 2000;
    display: block;
    top: 0;
    right: 100%;
    height: 100%;
    width: 100%;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    animation: gradient 1.5s ease infinite;
    background-size: 200%;
  }
  .pace.pace-inactive {
    opacity: 0;
    transition: 0.3s;
    top: -8px;
  }
  @keyframes gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  /* 顶部小进度条end */
/* ---------------------| /顶部进度条 |---------------------- */



/* ---------------------| 标签页 |---------------------- */
#aside-content .card-tag-cloud a {
  border: 1px solid;
  line-height: 1.5;
  border-radius: 6px;
  margin: 3px;
  padding: 0 5px;
}

.tag-cloud-list a {
  border: 1px solid;
  line-height: 1.5;
  border-radius: 6px;
  padding: 5px 15px;
  font-size: 1.2rem;
  margin: 5px;
}
/* ---------------------| /标签页 |---------------------- */


/* ---------------------| 标签外挂 |---------------------- */

details.toggle {
  border-width: 2px!important;
}

/* ---------------------| /标签外挂 |---------------------- */
