/*屏蔽广告*/
#ad_t2,#under_post_card1,#under_post_card2,#cnblogs_c1,#cnblogs_c2 {
    display: none;
}
.c_ad_block {
    display: none;
}

/* 推荐及反对 */
#div_digg {
    position: fixed;
    bottom: 165px;
    right: 48px;
    width: 45px;
    margin-bottom: 0;
    margin-right: 0;
}

/* 推荐 */
.ripple{
    border: 1px solid #76bee2;
}

/* 反对 */
.buryit {
    display: none;
    margin-top: 45px;
    border: 1px solid #e27687;
    padding-top: 0;
}

/* 版权 */
#MySignature {
    border: #e0e0e0 1px dashed;
    padding: 10px;
    font-family: 微软雅黑;
    font-size: 11px;
    background-color: #fcffe3;
    line-height: 25px;
    display: block;
}

/*隐藏搜索*/
#sidebar_search{
	display: none;
}

/*隐藏常用链接*/
#sidebar_shortcut{
	display: none;
}

/*自动生成目录
#navCategory{
    background-color: rgba(255, 255, 255, 0.68);
    bottom: 125px;
    right: 40px;
    width: 125px;
    border-radius: 5px;
    padding: 10px;
    position: fixed;
    font-size: 14px;
    border: 2px solid #CBCFD2;
}*/
#navCategory ul{
    line-height: 1.8;
}

/*回到顶部*/
#rocket-to-top div {
    left: 0;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    top: 0;
    width: 149px;
}
#rocket-to-top .level-2 {
    background: url("https://images.cnblogs.com/cnblogs_com/mq0036/508398/o_rocket_button_up.png") no-repeat scroll -149px 0 transparent;
    display: none;
    height: 250px;
    opacity: 0;
    z-index: 1;
}
#rocket-to-top .level-3 {
    background: none repeat scroll 0 0 transparent;
    cursor: pointer;
    display: block;
    height: 150px;
    z-index: 2;
}
#rocket-to-top {
    background: url(https://images.cnblogs.com/cnblogs_com/mq0036/508398/o_rocket_button_up.png) no-repeat scroll 0 0 transparent;
    height: 250px;
    margin: -125px 0 0;
    overflow: hidden;
    padding: 0;
    position: fixed;
    right: 0%;
    top: 97%;
    width: 145px;
    z-index: 11;
    display: none;
}

/* web弹窗 */
.tip-msg {
	background-color: rgba(61, 61, 61, 0.93);
	color: #ffffff;
	opacity: 0;
	max-width: 200px;
	position: fixed;
	text-align: center;
	line-height: 25px;
	border-radius: 30px;
	padding: 5px 15px;
	display: inline-block;
}

.tip-shade {
	z-index: 9999;
	background-color: rgb(0, 0, 0);
	opacity: 0.6;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.tip-dialog {
	z-index: 10000;
        position: fixed;
	display: block;
	background: #e9e9e9;
	border-radius: 5px;
	opacity: 0;
	border: 1px solid #dad8d8;
	box-shadow: 0px 1px 20px 2px rgb(255, 221, 221);
}

.tip-title {
	cursor: move;
	padding: 5px;
	position: relative;
	height: 25px;
	user-select: none;
}

.tip-title-text {
	margin: 0;
	padding: 0;
	font-size: 15px;
}

.tip-title-btn {
	position: absolute;
	top: 5px;
	right: 5px;
}

.tip-content {
	padding: 8px;
	position: relative;
	word-break: break-all;
	font-size: 14px;
	overflow-x: hidden;
	overflow-y: auto;
	border-bottom: 1px solid #dad8d8;
	border-top: 1px solid #dad8d8;
}

.tip-resize {
	position: absolute;
	width: 15px;
	height: 15px;
	right: 0;
	bottom: 0;
	cursor: se-resize;
}

  /* 涟漪扩散效果 */
  .ripple {
    box-sizing:border-box;
    position:relative;
  }
  .ripple:before
  {  animation:ripple 2s ease-out infinite;
    border:solid 1px #09c;
    bottom:0;
    box-sizing:border-box;
    content:"";
    left:0;
    position:absolute;
    right:0;
    top:0;
  }
  .ripple:after {
    animation:ripple 2s 1s ease-out infinite;
    border:solid 1px #09c;
    bottom:0;
    box-sizing:border-box;
    content:"";
    left:0;
    position:absolute;
    right:0;
    top:0;
  }
  @keyframes ripple {
    0% {    opacity:.25;  }
    100% {     opacity:0;    transform:scale(3);  }
  }