* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.comment {
  margin: 10px 0px 30px;
}

.comment-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 48px;
  /* background-color: skyblue; */
}

.comment-top .top-left {
  display: flex;
  align-items: center;
  margin-left: 0px;
}

.top-left img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  border-radius: 50%;
}

.top-left span {
  font-size: 14px;
  color: #202124;
}

.top-right i {
  color: rgb(95, 99, 104);
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block; /* 让宽高生效 */
}

.top-right i:hover {
  background-color: rgb(245, 245, 245);
}

.comment .top-right i:active {
  background-color: rgb(224, 224, 224);
}

.comment-date {
  display: flex;
  align-items: center;
  margin-top: 16px;
}

.comment-date .start {
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}

.comment-date .fa-star {
  margin-right: 6px;
  color: #01875f;
  font-size: 9px;
}

.ios .comment-date .fa-star {
  color: #0070c9;
}

.comment-date span {
  margin-left: 6px;
  color: #5f6368;
  font-size: 12px;
}

.comment-content {
  margin-top: 10px;
}
.comment-content span {
  font-size: 14px;
  color: #5f6368;
}

.comment-help {
  color: #5f6368;
  font-size: 12px;
}

.comment-help .help-top {
  margin-top: 16px;
}

.comment-help .help-button {
  margin-top: 12px;
}

.comment-help .help-button span {
  margin-right: 24px;
}

.comment-help .help-button button {
  height: 22px;
  padding: 0px 16px;
  margin-right: 8px;
  border: 1px solid rgb(207, 212, 219);
  border-radius: 20px;
  background-color: #fff;
  font-size: 13px;
  font-weight: 600;
  color: rgb(120, 124, 129);
  cursor: pointer;
}

.comment-help .help-button button:hover {
  background-color: rgb(224, 224, 224);
}

.comment .comment-help .help-button button:active {
  background-color: #cecfcf;
}