.comment_line_box::-webkit-scrollbar {
       background-color: #F5F5F5;  /* 滚动条的背景颜色 */
    }

    .comment_line_box::-webkit-scrollbar-thumb {
       background-color: #888888;  /* 滚动条的颜色 */
       border-radius: 5px;  /* 滚动条圆角 */
    }
    .comment_box {
        display: block;
        height: auto !important;
        color: #333;
        font-weight: unset;
        font-size: 14px;
        line-height: 25px;
        width: 100%;
    }

    .comment_box div {
        word-wrap: break-word;
        overflow-wrap: break-word;
        position: relative;
        margin-bottom: 5px;
    }

    .comment_line span {
        padding-right: 5px;
        color: var(--btn-bg-color);
    }

    .comment_line {
        padding-left: 55px;
    }

    .comment_box img {
        position: absolute;
        left: 0;
        top: 0;
        max-width: 50px !important;
    }
    
    .zhibo_btn a {
  background-color: #ff9933;
  color: white;
  padding: 3px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border: none;
  transition: transform 0.5s;
  animation: spring-animation 1s infinite alternate;
}
 
.zhibo_btn a:active {
  transform: scale(0.9);
}
 
@keyframes spring-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}