/*** 引入样式 ***/
@import url("https://cdnjs.cloudflare.com/ajax/libs/remixicon/4.6.0/remixicon.min.css");

/*** 隐藏广告 ***/
#ad_c1,
#ad_c2,
#bannerbar,
#ad_text_under_commentbox,
#under_post_news,
#cnblogs_ch,
#under_post_card1,
#under_post_card2,
.ad_text_commentbox,
.under-post-card {
    display: none !important;
}


/********** 基本样式 START **********/
/**********
@font-face {
  font-family: "CangErYuMoW02";
  src: url("https://geoisam.github.io/assets/fonts/CangErYuMoW02.ttf");
}
**********/
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/*** 隐藏次标题 ***/
#blogTitle h2 {
    display: none !important;
}

/*** 文字前加图标 ***
.links ul li:before {
    font-family: remixicon;
    content: "\ef5b";
    color: #1890ff;
}*/

/*** 取消图片居中 ***/
#mainContent .cnblogs-markdown img {
    margin: 10px !important;
}
#mainContent .cnblogs-markdown table img {
    margin: 10px auto !important;
}

/*** 首页置顶图片 ***/
.postBody.blogpost-body img {
    max-width: 100% !important;
}

/********** 加载动画 START **********/

/*** Preloader ***/
#preloader {
    background: #222;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 999999
}

#preloader .dot {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    width: 160px;
    height: 100px;
    margin-top: -50px;
    margin-left: -80px;
    border-radius: 5px;
    background-color: #000;
    animation: dot1 3s cubic-bezier(.55, .3, .24, .99) infinite;
}

#preloader .dot:nth-child(2) {
    z-index: 11;
    width: 150px;
    height: 90px;
    margin-top: -45px;
    margin-left: -75px;
    border-radius: 3px;
    background-color: #555;
    animation-name: dot2;
}

#preloader .dot:nth-child(3) {
    z-index: 12;
    width: 40px;
    height: 20px;
    margin-top: 50px;
    margin-left: -20px;
    border-radius: 0 0 5px 5px;
    background-color: #999;
    animation-name: dot3;
}

@keyframes dot1 {

    3%,
    97% {
        width: 160px;
        height: 100px;
        margin-top: -50px;
        margin-left: -80px;
    }

    30%,
    36% {
        width: 80px;
        height: 120px;
        margin-top: -60px;
        margin-left: -40px;
    }

    63%,
    69% {
        width: 40px;
        height: 80px;
        margin-top: -40px;
        margin-left: -20px;
    }
}

@keyframes dot2 {

    3%,
    97% {
        width: 150px;
        height: 90px;
        margin-top: -45px;
        margin-left: -75px;
    }

    30%,
    36% {
        width: 70px;
        height: 96px;
        margin-top: -48px;
        margin-left: -35px;
    }

    63%,
    69% {
        width: 32px;
        height: 60px;
        margin-top: -30px;
        margin-left: -16px;
    }
}

@keyframes dot3 {

    3%,
    97% {
        width: 40px;
        height: 20px;
        margin-top: 50px;
        margin-left: -20px;
    }

    30%,
    36% {
        width: 8px;
        height: 8px;
        margin-top: 49px;
        margin-left: -5px;
        border-radius: 8px;
    }

    63%,
    69% {
        width: 16px;
        height: 4px;
        margin-top: -37px;
        margin-left: -8px;
        border-radius: 10px;
    }
}