

*{
    box-sizing: border-box;
}
body{
    margin: 0;

}
#home{
    margin: 0;
    width: 100%;
    min-width: 950px;
    background-color: #fff;
    padding: 0;
}
#header{

    height: 200px;
    background-color: #da3c31 ;
    background-image: url("https://img2018.cnblogs.com/common/1934070/202002/1934070-20200210013831987-569035159.png");
    background-position: left top;
    background-size: 1920px 200px;
    background-origin: border-box;
    background-clip: content-box;
    background-repeat: no-repeat;

}
#blogTitle h1{
    padding: 30px 0px 40px 50px;
    font-size: 3em;
    opacity: 0.7;
    letter-spacing: 15px;
    margin: 0;
    text-shadow: 1px 1px 22px  rgba(255,43,29,0.46);
}


#navigator .blogStats{
    color: black;
    float: right;
    margin-top: 19px;
    margin-right: 22px;
    text-align: right;
}


#navList{
    margin-left: 40px;
    min-width: 1200px;
}
#navList li{
    display: inline-block;
    list-style-type: none;
    margin-right: 20px;
    margin-top: 2.5px;
    border: 2px solid black;
    border-radius: 30px;
    padding: 10px 30px 10px 30px;
    transition: 0.8s;
    background: rgba(255,255,255,0.7);

    /*配置横向展开2D动画*/
    /*-webkit-transform: translate(-50%,-50%);*/
    /*-moz-transform: translate(-50%,-50%);*/
    /*-ms-transform: translate(-50%,-50%);*/
    /*-o-transform: translate(-50%,-50%);*/
    /*transform: translate(-50%,-50%);*/
}
#navList li a{
    height: 20px;
    padding-top: 0px;
    text-decoration: none;
    color:black !important;
    font-weight: bold;

}
#navList li:hover{
    background: #da867c;
    border-radius: 0px;
    font-size: 111%;
    padding: 10px 35px 10px 35px /*配合transform: translate使用，横向展开*/
}

