@keyframes spin3D {
    from {
        transform: rotate3d(0.5, 0.5, 0.5, 360deg);
    }
    to {
        transform: rotate3d(0deg);
    }
}
#loading {
    height: 100%;
    background-color: #1d2630;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 99999999;
}

#home {
     font-size: 16px;
     color: #3e3e3e;
     line-height: 1.6;
     word-spacing:1.5px; /*更改默认的词间距*/
     letter-spacing:1.5px;/*更改默认的字符间距*/
     font-family: "Helvetica Neue",Helvetica,"Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;  
}

/* 主内容的无序列表 */
#mainContent li
{
    margin: 0.0em 40px;
} 

/* 主内容的有序列表 */
#mainContent ol li
{
    margin: 0.0em 10px;
} 

/* 代码块 */
pre code
{        
    font-family: Consolas, Inconsolata, Courier, monospace;
    line-height: 18px;
    font-size: 14px; 
    font-weight:normal;
    word-spacing:0px; 
    letter-spacing:0px; 
}

/* 超链接 */
.link-info {
  text-decoration: none;
  color: #1e6bb8;
  word-wrap:break-word;
}

.spinner-box {
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}
.leo {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.blue-orbit {
    width: 165px;
    height: 165px;
    border: 1px solid #91daffa5;
    animation: spin3D 3s linear 0.2s infinite;
}
.green-orbit {
    width: 120px;
    height: 120px;
    border: 1px solid #91ffbfa5;
    animation: spin3D 2s linear 0s infinite;
}
.red-orbit {
    width: 90px;
    height: 90px;
    border: 1px solid #ffca91a5;
    animation: spin3D 1s linear 0s infinite;
}
.white-orbit {
    width: 60px;
    height: 60px;
    border: 2px solid #fff;
    animation: spin3D 10s linear 0s infinite;
}
.w1 {
    transform: rotate3D(1, 1, 1, 90deg);
}
.w2 {
    transform: rotate3D(1, 2, 0.5, 90deg);
}
.w3 {
    transform: rotate3D(0.5, 1, 2, 90deg);
}

h1,h2,h3,h4,h5,h6 {
  margin: 1.5em 0px;
  font-weight:bold;
  color:#159957;      /*改变了其默认的标题颜色*/
}

/* 搜索栏文字不显示 */
#sidebar_search .catListTitle
{
    display:none;
}

#mainContent blockquote { /*引用块*/
  display: block;
  padding: 10px 1rem;
  font-size: 0.9em;
  padding-right: 15px;
  margin: 1em 0;
  
  /*更改默认值*/
  color: #000000;
  border-left: 6px solid #dce6f0;
  background: #EFEBE9;
  
  overflow: auto;
  overflow-scrolling: touch; 
  word-wrap: normal;
  word-break: normal;  
}
blockquote p {
    margin: 0px;
}

#cnblogs_post_body a { /*超链接*/
  text-decoration: none;
  color: #1e6bb8;
  word-wrap:break-word;
}