#navList a:hover{
       font-size: 17px;
       transition: font-size .3s;
       -moz-transition: font-size .3s;
       -webkit-transition: font-size .3s;
       -o-transition: font-size .3s;
}
a:hover{
       text-decoration: none;
}
.pager a{
       border:none;
}
#sidebar_shortcut{
       margin-top:20px;
}
#sidebar_search{
       display:none;
}
#btn_comment_submit{
       border-radius: 5px;
       outline: none;
       cursor: pointer;
}
/*雪花效果*/
@keyframes snow{
				0% {
					background-position: 0 0, 0 0;
				}
				100% {
					background-position: 500px 1000px, 500px 500px;
				}
			}
			@-webkit-keyframes snow{
				0% {
					background-position: 0 0, 0 0;
				}
				100% {
					background-position: 500px 1000px, 500px 500px;
				}
			}
			#snowMask {
				position: fixed;
				left: 0;
				top: 0;
				right: 0;
				bottom: 0;
				z-index: 999;
				background: url('https://2013.miaov.com/2013/img/snow1.png'),url('https://2013.miaov.com/2013/img/snow2.png');
				pointer-events: none;
				-webkit-animation: snow 15s linear infinite;
				animation: snow 15s linear infinite;
			}