<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

.comment_l,
.comment_r {
  display: table;
  overflow: hidden;
  width: 100%;
  margin-bottom: 2.8rem;
}

.comment_l:not(:first-child),
.comment_r:not(:first-child) {
  margin-top: 2.8rem;
}

.faceicon {
  display: table-cell;
  width: 65px;
  text-align: center;
  vertical-align: top;
  line-height: 1em;
}

.comment_txt_box {
  display: table-cell;
  width: calc(100% - 65px);
}

.comment_r .faceicon {
  padding-left: 0;
  padding-right: 20px;
}

.comment_l .faceicon {
  padding-right: 0;
  padding-left: 20px;
}

.faceicon img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.faceicon span {
  display: inline-block;
  margin-top: 0.4rem;
  font-size:  9px;
  color: #444;
}

.chatting {
  display: table-cell;
  position: relative;
  width: calc(100% - 100px);
  vertical-align: top;
}

.comment_r .comment_txt_box {
  text-align: right;
}

.comment_txt {
  width: 100%;
  position: relative;
  display: inline-block;
  padding: 0.9rem 1.1rem;
  margin-bottom: 0 !important;
  border-radius: 12px;
  background: #b1fcb1;
  word-break: break-all;
  text-align: left;
  font-size: 15px;
  color: #001f00;
}

.comment_r .comment_txt:before {
  display: inline-block;
  position: absolute;
  top: 18px;
  left: -23px;
  border: 12px solid transparent;
  border-right: 12px solid #b1fcb1;
  content: "";
}

.comment_r .comment_txt:after {
  display: inline-block;
  position: absolute;
  top: 18px;
  left: -20px;
  border: 12px solid transparent;
  content: "";
}

.comment_l .comment_txt {
  background: #ffe3e8;
  color: #240007;
}

.comment_l .comment_txt:before {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: -23px;
  border: 12px solid transparent;
  border-left: 12px solid #ffe3e8;
  content: "";
}

.comment_l .comment_txt:after {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: -20px;
  border: 12px solid transparent;
  content: "";
}

@media only screen and (min-width:480px){

  .faceicon {
    width: 80px;
  }

  .faceicon span {
    font-size:  11px;
  }

  .comment_txt_box {
    width: calc(100% - 80px);
  }

  .comment_txt {
    padding: 0.9rem 1.4rem;
  }
  
}

@media screen and (min-width: 768px){

  .comment_l,
  .comment_r {
    padding-right: 35px;
    padding-left: 35px;
  }
  
  .faceicon {
    width: 100px;
  }

  .comment_txt_box {
    width: calc(100% - 100px);
  }

  .comment_txt {
    padding: 1rem 1.5rem;
  }

}
</pre></body></html>