textarea {
  /* 移除默认边框 */
  border: none;
  /* 移除默认内边距 */
  padding: 0;
  /* 移除默认外边距 */
  margin: 0;
  /* 移除默认背景 */
  background: transparent;
  /* 移除默认的 resize 手柄（可选） */
  resize: none;
  /* 移除默认的轮廓（聚焦时） */
  outline: none;
  /* 确保字体与周围一致 */
  font: inherit;
  /* 移除默认阴影 */
  box-shadow: none;
  /* 设置默认尺寸（可选，防止尺寸异常） */
  width: 100%;
  min-height: 100px;
  /* 移除默认的圆角（如果浏览器有） */
  border-radius: 0;
  /* 确保文本换行行为正常 */
  white-space: pre-wrap;
  /* 移除滚动条（可选，视需求而定） */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
input:focus {
  outline: none;
  border: 1px solid #BDBDBD;
}

.commentBox {
  padding: 30px 16px 50px;
  box-sizing: border-box;
}
.commentBox .commentTitle {
  color: #1ABC9C;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px; /* 133.333% */
  margin-bottom: 11px;
}
.textareaBox {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #757575;
  margin-bottom: 11px;
  color: #fff;
  padding: 10px;
  font-size: 14px;
  line-height: 20px;
}
.inputBox {
  width: 100%;
  height: 32px;
  border-radius: 5px;
  border: 1px solid #757575;
  background: #000;
  color: #fff;
  font-size: 14px;
  text-align: left;
  padding:  0 10px;
  box-sizing: border-box;
  margin-bottom: 11px;
}
.replyexTareaBox {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #757575;
  margin-bottom: 11px;
  color: #fff;
  padding: 10px;
  font-size: 14px;
  line-height: 20px;
  display: none;
}
.replyInputBox {
  width: 100%;
  height: 32px;
  border-radius: 5px;
  border: 1px solid #757575;
  background: #000;
  color: #fff;
  font-size: 14px;
  text-align: left;
  padding:  0 10px;
  box-sizing: border-box;
  margin-bottom: 11px;
  display: none;
}
.subBtn {
  width: 100%;
  height: 48px;
  border-radius: 5px;
  background: linear-gradient(90deg, #4760FF 0%, #0DCCFF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 36px;
}
.replySubBtn {
  width: 100%;
  height: 48px;
  border-radius: 5px;
  background: linear-gradient(90deg, #4760FF 0%, #0DCCFF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 36px;
  display: none;
}
.commentLevel1 {
  display: flex;
  align-items: flex-start;
}
.commentCount {
  color: #FAFAFA;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px; /* 140% */
  margin-bottom: 36px;
}


.commentLevel1 .userAvatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 12px;
  
}
.commentContent {
  flex: 1;
}
.commentLevel1 .commentContent .userName{
  color: #1ABC9C;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 10px;
}
.commentLevel1 .commentContent .commentText {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 10px;
}
.commentLevel1 .dateBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 12px;
}
.commentLevel1 .commentDay {
  color: #E0E0E0;
}
.commentLevel1 .reply {
  color: #1ABC9C;
}
.commentLevel2 {
  display: flex;
  align-items: flex-start;
}
.commentLevel2 .userAvatar {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.moreCommentBox {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #9E9E9E;
  font-weight: 500;
  line-height: 18px;
}
.moreCommentBox .commentLine {
  width: 20px;
  height: 1px;
  border-radius: 0.5px;
  background: #9E9E9E;
  margin-right: 6px;
}
.moreCommentBox .commentArrow {
  width: 18px;
  height: 18px;
  margin-left: 6px;
}
.show {
  display: block;
}
.tooltip {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 8px 16px;
  border-radius: 4px;
  background: rgba(0,0,0,0.4);
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  display: none;
  z-index: 99;
}
.showTip {
  display: block;
}