@charset "UTF-8";
.forum {
  font-size: 14px;
  color: #5A45B0;
}
.forum .trans-loading {
  background-image: url("/static/101/images/trans-loading.gif");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  transform: translateX(-18px);
  margin-bottom: 6px;
  height: 1em;
}
.forum .comment {
  display: flex;
  padding: 0.25rem 0.25rem;
  gap: 1rem;
  border-bottom: 1px solid #C9C9C9;
}
.forum .comment:hover {
  background-color: rgba(255, 255, 255, 0.6);
}
.forum .comment:last-child {
  border-bottom: none;
}
.forum .comment .avatar-wp img {
  width: 2.5rem;
  height: 2.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
.forum .comment .comment-body {
  color: #34170F;
  flex: 1;
  width: 0;
  padding-top: 10px;
}
.forum .comment .comment-body .comment-status {
  font-size: 14px;
  display: flex;
  gap: 8px;
  position: relative;
}
.forum .comment .translate-btn {
  display: none;
  font-size: 12px;
}
.forum .comment .translate-close-btn {
  font-size: 12px;
  display: inline-block;
}
.forum .comment:hover .translate-btn {
  display: inline-block;
}
.forum .deleted-tip {
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
  margin: 1rem 0;
}
.forum .deleted-tip .success-tip {
  color: #129A00;
  margin-right: 1rem;
}
.forum .deleted-tip .spacer {
  border-left: 2px solid #C9C9C9;
  margin: 0 0.25rem;
}

.comment-content {
  margin-top: 4px;
  color: #34170F;
  line-height: 1.5em;
}
.comment-content .comment-content-inner {
  white-space: pre-wrap;
  overflow-wrap: break-word;
  word-break: break-all;
}
[data-theme=light] .comment-content.trans-text {
  color: #129A00;
}
[data-theme=black] .comment-content.trans-text {
  color: #226C2F;
}
[data-theme=light] .comment-content a {
  color: #5A45B0;
}
[data-theme=black] .comment-content a {
  color: #5A45B0;
}

.my-comment {
  color: #34170F;
}
.my-comment .my-comment-title {
  margin: 0.5rem 0;
  font-weight: bold;
}
.my-comment .comment-textarea {
  display: block;
  height: 6.58rem;
  border: 1px solid #129A00;
  padding: 3px;
  width: 100%;
  line-height: 25px;
  font-family: "微软雅黑", Verdana, Arial, sans-serif;
}
.my-comment .comment-textarea:hover {
  outline: none;
}
.my-comment .textarea-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  z-index: 999;
}
.my-comment .comment-addit {
  margin: 0.5rem 0;
}
.my-comment .comment-errors {
  color: orangered;
  margin: 0.5rem 0;
}
.my-comment .checkbox {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.my-comment .checkbox .checkbox-icon {
  width: 1em;
  height: 1em;
}
[data-theme=light] .my-comment .checkbox .checkbox-icon {
  border: 2px solid #00a47c;
}
[data-theme=black] .my-comment .checkbox .checkbox-icon {
  border: 2px solid #226C2F;
}
.my-comment .checkbox .checkbox-icon {
  border-radius: 4px;
}
[data-theme=light] .my-comment .checkbox .checkbox-icon.ok {
  background-color: #00a47c;
}
[data-theme=black] .my-comment .checkbox .checkbox-icon.ok {
  background-color: #226C2F;
}
.my-comment .checkbox .checkbox-icon.ok {
  background-image: url("/static/101/images/toggle-3.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.my-comment .dou-input {
  width: 3em;
  border-radius: 10em;
  border: 1px solid #129A00;
  color: #129A00;
  text-align: center;
}
.my-comment .dou-input::-webkit-inner-spin-button, .my-comment .dou-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.my-comment .dou-input {
  -moz-appearance: textfield;
}
.my-comment .comment-addit {
  display: flex;
  justify-content: space-between;
}

.dou-sheet {
  position: fixed;
  top: 100%;
  right: 0;
  width: -moz-max-content;
  width: max-content;
  padding: 12px 20px;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 5px 0;
  margin: 2px 0 0;
  text-align: left;
  z-index: 999999;
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  overflow-y: auto;
}
.dou-sheet .dou-item {
  padding: 2px 15px;
  cursor: pointer;
}
.dou-sheet .dou-item:hover {
  background-color: #f5f5f5;
}

.dou-label {
  cursor: pointer;
  color: #4f9533;
  font-size: 12px;
}

.comment-deletion {
  display: none;
}

.group:hover .comment-deletion {
  display: block;
}/*# sourceMappingURL=forum.css.map */