body {
    background: #ebebeb;
    font-size: 14px;
}
/* 头部 */
#header {
    position: relative;
    height: 280px;
    margin: 0;
    background: #020031;
    background: -moz-linear-gradient(45deg,#020031 0,#6d3353 100%);
    background: -webkit-gradient(linear,left bottom,right top,color-stop(0%,#020031),color-stop(100%,#6d3353));
    background: -webkit-linear-gradient(45deg,#020031 0,#6d3353 100%);
    background: -o-linear-gradient(45deg,#020031 0,#6d3353 100%);
    background: -ms-linear-gradient(45deg,#020031 0,#6d3353 100%);
    background: linear-gradient(45deg,#020031 0,#6d3353 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);
}
#header:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /*background: url(//static.bootcss.com/www/assets/img/bs-docs-masthead-pattern.png) repeat center center;*/
    opacity: .4;
}

/* 顶部header2个大文字 */
div#blogTitle {
    position: relative;
    z-index: 2;
    padding-top: 30px;
    background: none;
    width: 100%;
    height: auto; 
}
#blogTitle h1 {
    width: 100%;
    margin: 30px 0;
    text-align: center;
    font-size: 60px;
    top: 0;
}
#blogTitle h2 {
    width: 100%;
    margin: 0px 0;
    text-align: center;
    font-size: 22px !important;
    top: 0;
    line-height: 1.5em;
  height: auto;
}
#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: 0px;
    margin-top: 0px;
    border: none;
}
#navList li {
    float: left;
    height: auto;
    line-height: 25px;
    list-style-type: none;
}
/* 顶部导航文字 */
#navList a {
    font-size: 16px;
    text-shadow: 1px 1px 1px #000 !important;
    margin-top: 14px;
    -webkit-transition: all .3s;
    transition: all .3s;
}
#navList a:hover {
    text-decoration: none;
    color: #169fe6;
    background: none;
}