/*快速点赞*/
#div_digg {
  position: fixed;
  bottom: 30px;
  right: 10%;
  border: 2px solid #B6B3B3;
  padding: 10px;
  width: 140px;
  background-color: #fff;
  border-radius: 5px 5px 5px 5px !important;
  box-shadow: 0 0 0 1px #5F5A4B, 1px 1px 6px 1px rgba(10, 10, 0, 0.5);
}
/* 小火箭css */
#gotop1 {
    width: 50px;
    height:50px;
    position: fixed;
    bottom: 180px;
    cursor: pointer;
    z-index: 99998;
    right: 18%;
}
/* 小火箭悬停特效 */

#gotop1:hover {
    animation: rubberBand 1s;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, .95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
/* end 小火箭 */

#MySignature p {
    margin: 10px 0 10px 0px;
    padding: 10px 10px 10px 140px;
    border: 1px dashed #25b5b0;
    color: #e01d2f;
    font-size: 13px;
    background-color: ghostwhite;
    background: url('https://files.cnblogs.com/files/hohoa/wKiom1NWK0Whszx9AAD_GyJVjNA483.gif') no-repeat;
    background-position: 20px 5px;
    background-size: 120px 120px;
}
#MySignature p span {
    display: block;
}
#MySignature a {
    text-decoration: none;
}

 #main,
  #topics,
  #mainContent,
  .postBody {
    overflow: visible;
  }
  #mainContent .forFlow {
    overflow: visible;
  }
  .zoom-overlay {
    background: transparent;
  }
img[data-action="zoom"] {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
}
.zoom-img,
.zoom-img-wrap {
  position: relative;
  z-index: 666;
  -webkit-transition: all 300ms;
       -o-transition: all 300ms;
          transition: all 300ms;
}
img.zoom-img {
  cursor: pointer;
  cursor: -webkit-zoom-out;
  cursor: -moz-zoom-out;
}
.zoom-overlay {
  z-index: 420;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  filter: "alpha(opacity=0)";
  opacity: 0;
  -webkit-transition:      opacity 300ms;
       -o-transition:      opacity 300ms;
          transition:      opacity 300ms;
}
.zoom-overlay-open .zoom-overlay {
  filter: "alpha(opacity=100)";
  opacity: 1;
}
.zoom-overlay-open,
.zoom-overlay-transitioning {
  cursor: default;
}