// 默认样式去除
* {
  box-sizing: border-box;
}
// 标题样式
#header {
  
}
#blogTitle {
  box-sizing: border-box;
  width: 100%;
  height: 80px;
  line-height: 50px;
  color: #fff;
  background-color: #fff;
  padding: 0 15px;
}
.title {
  margin-top: 10px;
  width: 200px;
  height: 50px;
}
#Header1_HeaderTitle {
  font-size: 28px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
}


.animation {
    position: absolute;
    top: 40px;
    right: 10px;
    width: 100px;
    height: 80px;
    background: url(https://images.cnblogs.com/cnblogs_com/blogs/702985/galleries/2027099/o_210907065654a5258702c8cdda32dc9aea52074aa913.jpeg) no-repeat center;
    background-size: 90px 70px;
    animation: move 3s linear infinite alternate;
}

input {
    display: none;
}

@keyframes move {
    0% {
        transform: translate(-5px, -2px);
    }
    100% {
        transform: translate(5px, 0px);
    }
}
