<!--标题样式begin-->
<style>
.loading {
  text-transform: uppercase;
  font-family: 'Cabin Condensed', sans-serif;
  font-weight: bold;
  font-size: 40pt;
  text-align: center;
  height: 47px; /*字体高度 默认博客园样式标题高度47px*/
  line-height: 47px;
  vertical-align: bottom;
  position: absolute;
  left: 0;
  right: 0;
  top: 50px;
  bottom: 0;
  display: block;
}

@keyframes wave-animation {
  0% {
    background-position: 0 bottom;
  }
  100% {
    background-position: 100px bottom;
  }
}
@keyframes loading-animation {
  0% {
    background-size: 100px 0px;
  }

  100% {
    background-size: 100px 100px;
  }
}
.wave {
  background-image: url("https://img.wenhairu.com/images/2018/11/26/22.png");
  -moz-background-clip: text;
  -o-background-clip: text;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0px 0px rgba(255, 0, 0, 0.06);  /*无水流遮罩的字体颜色*/
  animation: wave-animation 2s infinite linear, loading-animation 10s infinite linear alternate;
  background-size: 100px 100px;
  background-repeat: repeat-x;
  opacity: 1;
}
</style>

<!--CSS3免写前缀兼容各大浏览器的JS插件-->
 <script src="https://leaverou.github.com/prefixfree/js/prefixfree.min.js"></script>
<link href='https://fonts.googleapis.com/css?family=Cabin+Condensed:700' rel='stylesheet' type='text/css'>
<!--标题水流动效果样式end-->