.comment-box {
  margin: 14px 0;
}
.comment-box .box-normal {
  display: flex;
  height: 65px;
  transition: 0.2s;
}
.comment-box .box-normal .avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 50px;
}
.comment-box .box-normal .avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.comment-box .box-normal .wrap {
  position: relative;
  flex: 1;
}
.comment-box .box-normal .wrap textarea {
  width: 100%;
  height: 100%;
  padding: 5px 10px;
  border: 1px solid var(--pv-border-color);
  border-radius: 6px;
  background-color: var(--pv-body-secondary-background-color);
  font-family: inherit;
  font-size: 12px;
  line-height: normal;
  color: var(--pv-body-color);
  resize: none;
  outline: none;
}
.comment-box .box-normal .send {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-basis: 70px;
  margin-left: 10px;
  border-radius: 4px;
  cursor: pointer;
  background-color: var(--pv-primary-color);
}
.comment-box .box-normal .send:hover {
  background-color: var(--pv-primary-dark-color);
}
.comment-box .box-normal .send .text {
  position: absolute;
  z-index: 1;
  font-size: 16px;
  color: var(--pv-primary-text-color);
}
.comment-box .box-expand {
  display: flex;
  align-items: center;
  margin-left: 80px;
  margin-top: 5px;
}
.comment-box .box-expand .emoji i {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  color: var(--pv-body-secondary-color);
}
.comment-box .box-expand .emoji i svg {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.comment-box .box-expand .emoji i svg path {
  fill: currentColor;
}

.comment-list {
  margin-top: 0;
}
.comment-list .comment-item {
  position: relative;
}
.comment-list .comment-item .resource-comment-container {
  padding: 22px 0 0 80px;
}
.comment-list .comment-item .resource-comment-container .avatar {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  width: 80px;
  cursor: pointer;
}
.comment-list .comment-item .resource-comment-container .avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.comment-list .comment-item .resource-comment-container .content-warp {
  position: relative;
}
.comment-list .comment-item .resource-comment-container .content-warp .user-info {
  font-size: 14px;
  margin-bottom: 4px;
}
.comment-list .comment-item .resource-comment-container .content-warp .user-info .user-name {
  font-weight: 500;
  color: var(--pv-body-secondary-color);
  cursor: pointer;
}
.comment-list .comment-item .resource-comment-container .content-warp .resource-comment {
  font-size: 16px;
  line-height: 24px;
}
.comment-list .comment-item .resource-comment-container .content-warp .resource-comment .comment-content {
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-word;
  white-space: pre-wrap;
  color: color-mix(in srgb, var(--pv-body-secondary-color), var(--pv-body-background-color) 25%);
}
.comment-list .comment-item .resource-comment-container .content-warp .resource-comment .comment-info {
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 4px;
  font-size: 13px;
  color: var(--pv-body-secondary-color);
}
.comment-list .comment-item .resource-comment-container .content-warp .resource-comment .comment-info .like, .comment-list .comment-item .resource-comment-container .content-warp .resource-comment .comment-info .dislike {
  display: flex;
  align-items: center;
  margin-right: 20px;
  cursor: pointer;
}
.comment-list .comment-item .resource-comment-container .content-warp .resource-comment .comment-info .like i, .comment-list .comment-item .resource-comment-container .content-warp .resource-comment .comment-info .dislike i {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
.comment-list .comment-item .resource-comment-container .content-warp .resource-comment .comment-info .like i:hover, .comment-list .comment-item .resource-comment-container .content-warp .resource-comment .comment-info .dislike i:hover {
  color: var(--pv-link-hover-color);
}
.comment-list .comment-item .resource-comment-container .content-warp .resource-comment .comment-info .like i svg, .comment-list .comment-item .resource-comment-container .content-warp .resource-comment .comment-info .dislike i svg {
  width: 100%;
  height: 100%;
}
.comment-list .comment-item .resource-comment-container .content-warp .resource-comment .comment-info .like i svg path, .comment-list .comment-item .resource-comment-container .content-warp .resource-comment .comment-info .dislike i svg path {
  fill: currentColor;
}
.comment-list .comment-item .resource-comment-container .content-warp .resource-comment .comment-info .reply {
  cursor: pointer;
}
.comment-list .comment-item .resource-comment-container .content-warp .resource-comment .comment-info .reply:hover {
  color: var(--pv-link-hover-color);
}
.comment-list .comment-item .child-comment-container {
  padding-top: 8px;
  padding-left: 72px;
}
.comment-list .comment-item .child-comment-container .child-comment-list .child-comment-item {
  font-size: 16px;
  line-height: 24px;
  position: relative;
  padding: 8px 0 8px 42px;
}
.comment-list .comment-item .child-comment-container .child-comment-list .child-comment-item .user-info {
  display: inline-flex;
  align-items: center;
  line-height: 24px;
  vertical-align: baseline;
  white-space: nowrap;
  font-size: 14px;
}
.comment-list .comment-item .child-comment-container .child-comment-list .child-comment-item .user-info .avatar {
  position: absolute;
  left: 8px;
  cursor: pointer;
}
.comment-list .comment-item .child-comment-container .child-comment-list .child-comment-item .user-info .avatar img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.comment-list .comment-item .child-comment-container .child-comment-list .child-comment-item .user-info .user-name {
  color: var(--pv-body-secondary-color);
  cursor: pointer;
}
.comment-list .comment-item .child-comment-container .child-comment-list .child-comment-item .reply-info {
  font-size: 14px;
}
.comment-list .comment-item .child-comment-container .child-comment-list .child-comment-item .reply-info .reply-to {
  color: var(--pv-body-secondary-color);
}
.comment-list .comment-item .child-comment-container .child-comment-list .child-comment-item .comment-content {
  margin-left: 5px;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-word;
  white-space: pre-wrap;
  vertical-align: baseline;
}
.comment-list .comment-item .child-comment-container .child-comment-list .child-comment-item .comment-info {
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 4px;
  font-size: 13px;
  color: var(--pv-body-secondary-color);
}
.comment-list .comment-item .child-comment-container .child-comment-list .child-comment-item .comment-info .time {
  margin-right: 20px;
}
.comment-list .comment-item .child-comment-container .child-comment-list .child-comment-item .comment-info .like, .comment-list .comment-item .child-comment-container .child-comment-list .child-comment-item .comment-info .dislike {
  display: flex;
  align-items: center;
  margin-right: 20px;
  cursor: pointer;
}
.comment-list .comment-item .child-comment-container .child-comment-list .child-comment-item .comment-info .like i, .comment-list .comment-item .child-comment-container .child-comment-list .child-comment-item .comment-info .dislike i {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
.comment-list .comment-item .child-comment-container .child-comment-list .child-comment-item .comment-info .like i:hover, .comment-list .comment-item .child-comment-container .child-comment-list .child-comment-item .comment-info .dislike i:hover {
  color: var(--pv-link-hover-color);
}
.comment-list .comment-item .child-comment-container .child-comment-list .child-comment-item .comment-info .like i svg, .comment-list .comment-item .child-comment-container .child-comment-list .child-comment-item .comment-info .dislike i svg {
  width: 100%;
  height: 100%;
}
.comment-list .comment-item .child-comment-container .child-comment-list .child-comment-item .comment-info .like i svg path, .comment-list .comment-item .child-comment-container .child-comment-list .child-comment-item .comment-info .dislike i svg path {
  fill: currentColor;
}
.comment-list .comment-item .child-comment-container .child-comment-list .child-comment-item .comment-info .reply {
  cursor: pointer;
}
.comment-list .comment-item .child-comment-container .child-comment-list .child-comment-item .comment-info .reply:hover {
  color: var(--pv-link-hover-color);
}
.comment-list .comment-item .child-comment-container .view-more {
  padding: 8px 0 8px 8px;
  font-size: 13px;
  color: #9499A0;
}
.comment-list .comment-item .child-comment-container .view-more .view-more-btn {
  cursor: pointer;
}
.comment-list .comment-item .child-comment-container .view-more .view-more-btn:hover {
  color: var(--pv-link-hover-color);
}
.comment-list .comment-item .bottom-line {
  margin-left: 80px;
  border-bottom: 1px solid var(--pv-border-color);
  margin-top: 14px;
}

.resource-comment-pagination {
  padding: 15px 0 10px 80px;
}

.child-comment-pagination {
  padding: 10px 0;
}

.my-spinner-border {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  vertical-align: -0.125em;
  border-radius: 50%;
  animation: 0.75s linear infinite spinner-border;
  border: 0.15em solid currentcolor;
  border-right-color: transparent;
}

div.disabled {
  pointer-events: none;
}

.f-d-n {
  display: none;
}

/*# sourceMappingURL=comment.css.map */
