/* 主体 */
body{
    background-color: #EAEAEF;
    /* background: -webkit-linear-gradient(top,transparent 10px,#999 11px),-webkit-linear-gradient(left,transparent 10px,#999 11px);
    background-size: 11px 11px; */
    scroll-padding-block: ;
}
/* 滚动条样式 */
/* ::-webkit-scrollbar
{
    width:6px;
    border-radius:2px;
    background-color:#F5F5F5;
}
::-webkit-scrollbar-track
{
    -webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.3);
    border-radius:2px;
    background-color:#F5F5F5;
}
::-webkit-scrollbar-thumb
{
    /* border-radius:10px; */
    /* -webkit-box-shadow:inset 0 0 6px rgba(0,0,0,.3);
    background-color:#e67b00;
}  */

::-webkit-scrollbar {
  width: 3px;
  background: linear-gradient(
    to bottom,
    hsl(0deg, 100%, 50%, 0.4) 0%,
    hsl(40deg, 100%, 50%) 20%,
    hsl(80deg, 100%, 50%) 30%,
    hsl(120deg, 100%, 50%) 40%,
    hsl(180deg, 100%, 50%) 50%,
    hsl(250deg, 100%, 50%) 80%,
    hsl(320deg, 100%, 50%, 0.4) 100%
  );
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    to bottom,
    hsl(0deg, 100%, 50%, 0) 0%,
    hsl(0deg, 100%, 100%, 0.9) 20%,
    hsl(0deg, 100%, 100%, 0.9) 80%,
    hsl(0deg, 100%, 50%, 0) 200%
  );
  border-radius: 100%;
}

/* 鼠标选中文本样式 */
::selection{
    background-color: #62cffc;
    color: #e67b00;
}


/* 头部区域 */
#header{
    background-color: #666;
    height: 60px;
    box-shadow: 0px 10px 10px #999;
}
#Header1_HeaderTitle{
    padding: 12px 0 0 20px;
}
#blogTitle h2{
    font-size: 14px;
    margin: 16px 10px 0px -10px;
    color: #7FFF00;
    cursor: pointer;
    transition: all 0.66s;
}
#blogTitle h2:hover{
    color: #e67b00;
}
#navList{
    margin-top: 12px;
}
#navList a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 2px solid #7FFF00;
        transition: all .5s;
        animation: clippath 3s infinite linear;
    }

@keyframes clippath {
    0%,
    100% {
        clip-path: inset(0 0 95% 0);
    }
    
    25% {
        clip-path: inset(0 95% 0 0);
    }
    50% {
        clip-path: inset(95% 0 0 0);
    }
    75% {
        clip-path: inset(0 0 0 95%);
    }
}
/* 侧边栏部 */
#sideBar{
    /* background-color:#F5F5F5; */
    background-color: #E9EBFE;
}
#showTime{
    border:#000 solid;
    border-width:0 1px 1px 0;
    border-radius: 2px;
    background: linear-gradient(to right,#E9EBFE,#F5F5F5);
    box-shadow: 0px 0px 5px #999;
    margin-bottom: 10px;
}
#weather{
    width: 220px;
    margin: 10px;
}
#showWeather{
    width: 100%;
    margin-top: 10px;
    text-align: center;
}
#showCitysName{
    font-size: 18px;
    font-weight: bold;
    color: #e67b00;
}
#weatherIcon{
    font-size: 28px;
    color: #E6A23C;
}
#wenDu{
    font-size: 16px;
    font-weight: bold;
    color: #E6A23C;
}
#weatherInfo{
    font-size: 12px;
    color: #e67b00;
    font-weight: bold;
}
#futureWeather{
    font-size: 10px;
    width: 100%;
    margin-top: 5px;
    display: flex;
}

#futureWeather > span{
    width: 30%;
    flex: 1;
    margin: 0 2px;
    border: #e67b00 solid;
    border-width: 0 0 0 3px;
    transition: all .5s;
    position: relative;
    width: auto;
}
#futureWeather > span:hover{
    cursor: pointer;
    transform: scale(1.1);
    font-weight: bold;
    background-color: transparent;
    z-index: 1;
}
#futureWeather > span:after,
#futureWeather > span:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #e67b00;
    z-index: -2;
}
#futureWeather > span:before{
    transition: .8s;
    background-color: #e67b00;
    z-index: -1;
}
#futureWeather > span:hover:after,
#futureWeather > span:hover:before{
    width: 100%;
}

.layui-input, .layui-select, .layui-textarea {
    border-width: 0px;
    height: 26px;
}
.layui-form-select{
    width: 220px;
    border: #e67b00 1px solid;
    border-radius: 2px;
}
.layui-form-select .layui-input {
    background-color: #E9EBFE;
    font-size: 13px;
}
dl.layui-anim.layui-anim-upbit.layui-select-group{
    font-size: 13px;
    max-height: 200px;
}
dd.layui-select-tips.layui-this{
    background-color: #e67b00;
    color: #000;
}

/* 公告栏 */
#profile_block{
    font-size: 16px;
    padding-left: 16px;
    border: #e67b00 solid;
    border-width: 0 0 0 5px;
}
#profile_block a{
    transition: all 0.6s;
    font-weight: bold;
    color: #62cffc;
    width: 100%;
    position: relative;
}
#profile_block a:after{
    content: "";
    width: 0;
    height: 1px;
    background-color: #e67b00;
    position: absolute;
    top: 98%;
    left: 50%;
    transition: all .3s;
}

#profile_block a:hover:after{
    left: 0%;
    width: 100%;
    
}
#profile_block a:hover{
    color:#e67b00;
}
#showTime{
    margin-top: 40px;
}
/* 日历 */
#blogCalendar tr{
    height: 40px;
}
#blogCalendar td{
    cursor: pointer;
}
.CalTitle{
    font-size: 20px;
}
.CalWeekendDay{
    color: #7FFF00;
}
.CalTodayDay{
    color: #e67b00;
    border-radius: 60%;
    border: #e67b00 solid;
    border-width: 0 0 3px 0;
    font-weight: bold;
}
#blog-calendar u{
    color:#b62525;
    font-weight:600;
    text-decoration:none!important;
}
/* 日历下方区域 */
.catListTitle{
    padding-left: 16px;
    border: #e67b00 solid;
    border-width: 0 0 0 5px;
    transition: all 1s;
}
.catListTitle:hover{
    margin-left: -10px;
    cursor: pointer;
}
#sidebar_search{
    display: none;
}

.catListLink li{
    margin-top: 6px;
}
.catListLink li a{
    width: 100%;
    position: relative;
    color: #62cffc;
}
.catListLink li a:after{
    content: "";
    width: 0;
    height: 1px;
    background-color: #e67b00;
    position: absolute;
    top: 100%;
    left: 50%;
    transition: all .3s;
}
.catListLink li a:hover:after{
    left: 0%;
    width: 100%;
}
.catListLink li a:hover{
    color: #e67b00;
}

#sidebar_postcategory li{
    margin-top: 6px;
}
#sidebar_postcategory li a{
    width: 100%;
    position: relative;
    color: #62cffc;
}
#sidebar_postcategory li a:after{
    content: "";
    width: 0;
    height: 1px;
    background-color: #e67b00;
    position: absolute;
    top: 100%;
    left: 50%;
    transition: all .3s;
}
#sidebar_postcategory li a:hover:after{
    left: 0%;
    width: 100%;
}
#sidebar_postcategory li a:hover{
    color: #e67b00;
}

#sidebar_postarchive li{
    margin-top: 6px;
    
}
#sidebar_postarchive li a{
    width: 100%;
    position: relative;
    color: #62cffc;
}
#sidebar_postarchive li a:after{
    content: "";
    width: 0;
    height: 1px;
    background-color: #e67b00;
    position: absolute;
    top: 100%;
    left: 50%;
    transition: all .3s;
}
#sidebar_postarchive li a:hover:after{
    left: 0%;
    width: 100%;
}
#sidebar_postarchive li a:hover{
    color: #e67b00;
}

#TopViewPostsBlock li{
    margin-top: 6px;
}
#TopViewPostsBlock li a{
    width: 100%;
    position: relative;
    color: #62cffc;
}
#TopViewPostsBlock li a:after{
    content: "";
    width: 0;
    height: 1px;
    background-color: #e67b00;
    position: absolute;
    top: 100%;
    left: 50%;
    transition: all .3s;
}
#TopViewPostsBlock li a:hover:after{
    left: 0%;
    width: 100%;
}
#TopViewPostsBlock li a:hover{
    color: #e67b00;
}

/* 主体区域 */
.forFlow{
    margin-top: 50px;
}
.day{
    padding-top: 16px;
    /* background-color: #f5f5f5; */
    /* background-color:#FFFAFA; */
}
.dayTitle{
    margin: 5px 0;
}
.dayTitle a{
    color: #62cffc;
}
.dayTitle a:hover{
    color: #e67b00;
}
.post{
    /* background-color:#F0FFF0; */
     background-color: #EAEAEF;
}
.blogStats{
    color: #e67b00;
    padding-top: 14px;
}
.postTitle{
    padding-left: 16px;
    border: #e67b00 solid;
    border-width: 0 0 0 5px;
}
.postTitle a{
    width: 100%;
    position: relative;
}
.postTitle a:after{
    content: "";
    width: 0;
    height: 2px;
    background-color: #e67b00;
    position: absolute;
    top: 95%;
    left: 50%;
    transition: all .3s;
}
.postTitle a:hover:after{
    left: 0%;
    width: 100%;
}

#cnblogs_post_body h3{
    padding-left: 16px;
    border: #e67b00 solid;
    border-width: 0 0 0 3px;
    transition: all 1s;
}
#cnblogs_post_body h3:hover{
    padding-left: -6px;
}
.c_b_p_desc_readmore{
    color: #7FFF00;
}
.c_b_p_desc_readmore:hover{
    color: #e67b00;
}
.postDesc{
    color: #e67b00;
}
.postBody blockquote{
    background: none;
    padding-left: 10px;
}
.hljs{
    background-color: #faf6e6;
}
#BlogPostCategory a{
    text-decoration: none;
    color: #62cffc;
}
#BlogPostCategory a:hover{
    color: #e67b00;
}
#author_profile_info img{
    border-radius: 50%;
}
#author_profile_detail a{
    text-decoration: none;
    color: #62cffc;
}
#author_profile_detail a:hover{
    color: #e67b00;
}
#comment_nav a{
    color: #62cffc;
}
#comment_nav a:hover{
    color: #e67b00;
}
.commentbox_main{
    width: 800px;
}
#btn_comment_submit{
    background-color: #62cffc;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#btn_comment_submit:hover{
    background-color: #e67b00;
}
#commentbox_opt a{
    color: #62cffc;
}
#commentbox_opt a:hover{
    color: #e67b00;
}
.hljs{
    background-color: #f0f0f0;
    border-radius: 10px;
}
.hljs-ln{
    font-family: emoji;
    font-weight: 600;
}
.hljs-line-numbers{
    top: 10%!important;
}

/* 脚部 */
#footer{
    display: none;
}

#cnblogs_ch{
    display: none;
}
#under_post_card2{
    display: none;
}
#cnblogs_c2{
    display: none;
}