/*boby调节背景图片*/
body {
    background:url("https://images.cnblogs.com/cnblogs_com/Kxia/1417723/o_1545694105428.jpg");
    background-position:center left;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment:fixed
}

/*这是首页标签，就是博客园、首页、联系那些    a:hover是鼠标移过去的悬浮显示效果*/
#navList a {
    display: block;
    width: 11em;
    height: 22px;
    float: left;
    text-align: center;
    padding-top: 13px;
    font-size: initial;
    font-style: italic;
}
#navList a:hover {
    color: #fa6e6f;
    text-decoration: none;
}

/*Title是你的id:狂霞霞    a:hover是鼠标移过去的悬浮显示效果*/
#blogTitle h1 {
    font-size: 40px;
    font-weight: bold;
    line-height: -0.5em;
}
#blogTitle h1 a:hover {
    color: #f66;
}

/*opacity里面可以调节透明度，但是如何让图片不透明我还不知道，第二个margin top可以剪断上部分的刘海*/
#home {
    margin: 0 auto;
        margin-top: 0px;
        margin-bottom: 0px;
    width: 80%;
    min-width: 949px;
    background-color: #fff;
    padding: 30px;
    margin-top: 10px;
    margin-bottom: 50px;
    box-shadow: 0 2px 6px rgba(77, 77, 77, 0.3);
    opacity: 0.87;
}

body {
    color: #f66;
    font-family: "Helvetica Neue",Helvetica,Verdana,Arial,sans-serif;
    font-size: 12px;
}

/*这个是文章的点赞系统，据说会影响手机版用户的使用，但是我这个辣鸡目前也每人看*/
#div_digg{
  position:fixed;
  bottom:5px;
  width:140px;
  right:30px;
  border:2px solid #085;
  padding:10px;
  background-color:#fff;
  opacity:0.3;
  border-radius:5px 5px 5px 5px !important;
  box-shadow:0 0 0 1px #5F5A4B, 1px 1px 6px 1px rgba(10, 10, 0, 0.5);
  transition-duration: 0.5s;
}

#div_digg:hover{
  opacity:1;
}