
/*  loading**************************************************/
.fakeloader{
  position: fixed;
   width: 100%;
   height: 100%;
   top: 0;
   left :0;
   z-index:  9999;
   background-color:  #0db5bf;
}
.spinner1 {
  width: 80px;
  height: 80px;
  position: relative;
    top: 30%;
    left: 48%;
}
.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color:  #f51f1f;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: bounce 2.0s infinite ease-in-out;
  animation: bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}


/*页面******************************************************************************************************************************************************/
#main {
    padding: 0 150px;
}
#sideBar{
    border: none;
}
h3.catListTitle{
    background-color: #0f84d0;
    color: white;
    border-radius: 3px;
    letter-spacing: 2px;
    padding-left: 10px;
}

/*日期**************************************/
td.CalTodayDay{
    color: #cb6619;
    text-decoration: underline;
}

/*设置网页背景******************************/
body {
    background: #fff url(https://www.cnblogs.com/images/cnblogs_com/unique1319/1410778/o_bg2-0.6.png) no-repeat left top;
    background-size: cover;
    background-attachment: fixed;
}

/*影藏推荐及广告DIV******************************************************/
#cnblogs_c1, #HistoryToday, #under_post_kb, #cnblogs_c2, #under_post_news, #ad_t2 {
    display: none;
}

/* 设置盒模型 **********************************************************/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* 设置整个滚动条的一些属性，宽度针对垂直滚动条，高度针对水平滚动条 */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* 整个滚动条去除button剩下的部分 */
::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #d8dce5
}

/* 滚动条可拖拽的部分 */
::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #adadad;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #929292;
}

::-webkit-scrollbar-thumb:active {
    background-color: #666363;
}

::-webkit-scrollbar-corner {
    background-color: #535353
}

::-webkit-scrollbar-resizer {
    background-color: #ff6e00
}

/* 头部 **********************************************************/
#header {
    position: relative;
    height: 180px;
    margin: 0;
    background: #0f84d0;
    background: -moz-linear-gradient(45deg, #0f84d0 0, #0affa5 100%);
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #0f84d0), color-stop(100%, #0affa5));
    background: -webkit-linear-gradient(45deg, #0f84d0 0, #0affa5 100%);
    background: -o-linear-gradient(45deg, #0f84d0 0, #0affa5 100%);
    background: -ms-linear-gradient(45deg, #0f84d0 0, #0affa5 100%);
    background: linear-gradient(45deg, #0f84d0 0, #0affa5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#020031', endColorstr='#6d3353', GradientType=1);
    -webkit-box-shadow: inset 0 3px 7px rgba(0, 0, 0, .2), inset 0 -3px 7px rgba(0, 0, 0, .2);
    -moz-box-shadow: inset 0 3px 7px rgba(0, 0, 0, .2), inset 0 -3px 7px rgba(0, 0, 0, .2);
    box-shadow: inset 0 3px 7px rgba(0, 0, 0, .2), inset 0 -3px 7px rgba(0, 0, 0, .2);
}



/*博客标题******************************************************/
div#blogTitle {
    position: relative;
    z-index: 2;
    padding-top: 30px;
    text-align: center;
}

#blogTitle div a#Header1_HeaderTitle {
    font-size: 56px;
    color: white;
    -webkit-transition: all .3s;
    transition: all .3s;
}

#blogTitle div a#Header1_HeaderTitle:hover {
    color: #ff1e66;
}

#blogTitle div.subtitle {
    font-size: 18px;
    color: white;
}

#blogTitle h1 {
    width: 100%;
    margin: 30px 0;
    text-align: center;
    font-size: 60px;
}

#blogTitle h2 {
    width: 100%;
    margin: 0px 0;
    text-align: center;
    font-size: 22px !important;
}

#blogTitle h1 a, #blogTitle h2 {
    font-size: inherit;
    margin-bottom: 10px;
    text-shadow: 1px 1px 5px #1E1E1E;
}

/* 顶部导航 ******************************************/
#navigator {
    background-color: rgba(18, 126, 186, 0);
    position: absolute;
    z-index: 2;
    top: 0;
    margin-top: 10px;
    border: none !important;
}

.blogStats {
    display: none;
}

/* 顶部导航文字 */
#navList a {
    font-size: 16px;
    color: white;
    text-shadow: 1px 1px 1px #000 !important;
    margin-top: 14px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

#navList a:hover {
    text-decoration: none;
    color: #ff1e66;
}

/*文章标题***********************************************************/
.postTitle {
    border-left: 5px solid #1fa6e6;
    padding-left: 10px;
}

.postTitle a:link, .postTitle a:visited, .postTitle a:active {
    font-size: 18px;
    font-family: 'Microsoft Yahei';
    color: #cb6619;
}

.postTitle a:hover {
    color: #329B00;
    text-decoration: underline;
}

.postDesc {
    color: #cb6619;
}

.entrylistPosttitle a:link, .entrylistPosttitle a:visited, .entrylistPosttitle a:active {
    font-size: 18px;
    font-family: 'Microsoft Yahei';
    color: #cb6619;
}

.entrylistPosttitle a:hover {
    color: #329B00;
    text-decoration: underline;
}

.entrylistItemPostDesc {
    color: #cb6619;
}


/*进入到文章页面*/
#topics .postTitle {
    border: none;
    text-align: center;
    font-weight: normal;
    margin-bottom: 20px;
}

#topics .postTitle .postTitle2 {
    font-family: 'Microsoft Yahei';
    font-size: 42px;
}

/*分页***********************************************/
/* 隐藏顶部的分页按钮  */
div#homepage_top_pager {
    display: none;
}

div#homepage1_HomePageDays_homepage_bottom_pager div.pager {
    float: right;
}

div#homepage1_HomePageDays_homepage_bottom_pager div.pager a {
    padding: 4px 10px;
    background: #0f84d0;
    border: solid 1px white;
    border-radius: 3px;
    color: white;
}

/* markdown 样式开始 ***********************************************/
#cnblogs_post_body ol {
    border: 1px dotted #000066;
    line-height: 150%;
    word-break: break-word;
    font-family: Consolas, Verdana !important;
    border-radius: 5px;
    width: 90%;
    background-color: #E3E3FF;
    list-style-position: outside;
    margin-left: 0px;
}

#cnblogs_post_body ol font {
    font-size: 12px !important;
}

#cnblogs_post_body ol li {
    background-color: #fff;
    padding-left: 5px;
    border-left: 1px solid #8A8AFF;
    margin-left: 5px !important;
}

#cnblogs_post_body ol li:nth-child(even) {
    background-color: #f5f5f5;
}

#cnblogs_post_body {
    font-family: 'Microsoft Yahei';
    font-size: 16px;
}

#cnblogs_post_body h1 {
    font-size: 28px;
    font-weight: bold;
    background-color: #3199E4;
    border-radius: 5px;
    color: #FFF;
    padding-left: 8px;
    text-shadow: 1px 1px 1px #000;
}

/* 修改引用样式 */
.cnblogs-markdown blockquote {
    padding: 10px 15px;
    color: #747474;
    border-left: 2px solid #41ABF7;
    background: #F7F7F7;
}

/* 覆盖H2的样式 */
.cnblogs-markdown h2 {
    border-bottom: 1px solid #41ABF7;
    color: #3199E4;
}

/* 给ul和ol添加简单的背景色 */
#cnblogs_post_body ul, #cnblogs_post_body ol {
    border-left: solid 2px #41ABF7;
    background: #FAFAFA;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-left: 0;
    padding-left: 30px;
}

/* 使用CSS给h1添加索引，h2-h6无法通过CSS生成，只能交由JS来处理 */
.cnblogs-markdown h1 {
    counter-increment: markdown-body-h1;
}

.cnblogs-markdown h1:before {
    content: counter(markdown-body-h1) ". ";
}

/* code样式 */
.cnblogs-markdown p code, .cnblogs-markdown ul li code {
    border: none !important;
    line-height: 18px;
    text-indent: 0px;
    padding: 0.2em 0.3em !important;
    margin: 0 5px;
    font-size: 100% !important;
    color: #c7254e;
    background: #f9f2f4 !important;
    margin: 0 2px;
    font-weight: normal;
}

.cnblogs-markdown a {
    color: #4183c4;
    text-decoration: none;
    margin: 0 4px;
}

.cnblogs-markdown a:hover, .cnblogs-markdown a:active {
    text-decoration: underline;
    color: #E57019;
}

#cnblogs_post_body p {
    text-indent: 2em;
}

#cnblogs_post_body blockquote > p:first-child {
    margin: 0;
}

#cnblogs_post_body blockquote > p:last-child {
    margin: 0;
}

#cnblogs_post_body img {
    max-width: 100%;
    height: auto !important;
}

/* markdown 样式结束*/

/*代码高亮**********************************************************/
pre {
    /*控制代码不换行*/
    white-space: pre;
    word-wrap: normal;
}

.cnblogs-markdown .hljs {
    display: block;
    overflow-x: auto;
    background: #272822 !important;
    color: #FFF;
    white-space: pre;
    word-break: normal;
    padding: 10px 15px !important;
    font-size: 16px !important;
    max-height: 720px;
}

.hljs,
.hljs-tag,
.hljs-subst {
    color: #f8f8f2;
}

.hljs-strong,
.hljs-emphasis {
    color: #a8a8a2;
}

.hljs-bullet,
.hljs-quote,
.hljs-number,
.hljs-regexp,
.hljs-literal,
.hljs-link {
    color: #ae81ff;
}

.hljs-code,
.hljs-title,
.hljs-section,
.hljs-selector-class {
    color: #a6e22e;
}

.hljs-strong {
    font-weight: bold;
}

.hljs-emphasis {
    font-style: italic;
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-name,
.hljs-attr {
    color: #f92672;
}

.hljs-symbol,
.hljs-attribute {
    color: #66d9ef;
}

.hljs-params,
.hljs-class .hljs-title {
    color: #f8f8f2;
}

.hljs-string,
.hljs-type,
.hljs-built_in,
.hljs-builtin-name,
.hljs-selector-id,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-addition,
.hljs-variable,
.hljs-template-variable {
    color: #e6db74;
}

.hljs-comment,
.hljs-deletion,
.hljs-meta {
    color: #75715e;
}

/*黑色主题皮肤结束*/
#cnblogs_c1, #HistoryToday, #under_post_kb, #cnblogs_c2, #under_post_news {
    display: none;
}


/*评论**************************************************/
/* 楼层 */
.feedbackListSubtitle a.layer {
    background: #B2E866;
    color: #414141 !important;
    padding: 2px 4px;
    border-radius: 2px;
    margin-right: 4px;
    /*display: none;*/
}
/* 评论人 */
.feedbackListSubtitle a[target="_blank"] {
    color: #FF6969 !important;
}
/* 评论时间 */
.feedbackItem .comment_date {
    color: #cb6619;
    margin-right: 4px;
}
/* 楼主颜色 */
.feedbackListSubtitle {
    color: #0AB300;
}
/* 评论内容颜色 */
.feedbackItem {
    color: #464646;
    position: relative;
}
/* 评论背景色 */
.blog_comment_body {
    background: #B2E866;
    float: left;
    padding: 14px 10px;
    border-radius: 5px;
    position: relative;
    overflow: visible;
    margin-left: 33px;
    max-width: 700px;
}
/*!* 评论三角形 *!*/
.blog_comment_body:before {
    content: '';
    display: block;
    position: absolute;
    left: -17px;
    top: 9px;
    width: 0;
    height: 0;
    border-right: solid 18px #B2E866;
    border-top: solid 6px rgba(0, 0, 0, 0);
    border-bottom: solid 10px rgba(0, 0, 0, 0);
}
/*!* 评论头像 *!*/
/*.blog_comment_body:after {*/
    /*content: attr(data-louceng);*/
    /*display: none;*/
    /*width: 48px;*/
    /*height: 48px;*/
    /*position: absolute;*/
    /*left: -72px;*/
    /*top: 0px;*/
    /*text-align: center;*/
    /*line-height: 48px;*/
    /*font-size: 18px;*/
    /*color: #FFF;*/
    /*text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.42);*/
    /*font-family: 'Microsoft Yahei';*/
    /*background: linear-gradient(top , rgb(116, 218, 45) 12% , rgb(135, 255, 75) 35% , rgb(71, 179, 28) 86%);*/
    /*background: -o-linear-gradient(top , rgb(116, 218, 45) 12% , rgb(135, 255, 75) 35% , rgb(71, 179, 28) 86%);*/
    /*background: -ms-linear-gradient(top , rgb(116, 218, 45) 12% , rgb(135, 255, 75) 35% , rgb(71, 179, 28) 86%);*/
    /*background: -moz-linear-gradient(top , rgb(116, 218, 45) 12% , rgb(135, 255, 75) 35% , rgb(71, 179, 28) 86%);*/
    /*background: -webkit-linear-gradient(top , #74DA2D 12% , #87FF4B 35% , #47B31C 86%);*/
    /*background-size: contain;*/
/*}*/

/* 清除浮动 */
.feedbackCon:after {
    content: '';
    display: block;
    clear: both;
}
.comment_vote{
    clear: both;
}
.feedbackItem{
    border-bottom: 2px dotted #1fa6e6;
}

.feedback_area_title{
    font-size: 24px;
    border-bottom: solid 2px white;
}

/* fork me on github**************************************************/
.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}


