.container {
  width: 1100px;
  margin: 30px auto 80px;
}
@media (max-width: 1120px) {
  .container {
    width: auto;
    margin: 20px 10px 60px;
  }
}
.container .comment_container .toast {
  background: rgba(0, 0, 0, 0.75);
  box-shadow: 0px 9px 28px 8px rgba(0, 0, 0, 0.05), 0px 6px 16px 0px rgba(0, 0, 0, 0.08), 0px 3px 6px -4px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  padding: 9px 24px;
  position: fixed;
  top: 50%;
  left: 50%;
  font-size: 14px;
  font-family: 'PingFangSC-Regular', 'PingFang SC';
  font-weight: 400;
  color: #ffffff;
  line-height: 22px;
  display: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.container .comment_container .send_comment {
  width: 100%;
  background: #f4f4f4;
  border-radius: 10px;
  border: 1px solid #c7c8c8;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.container .comment_container .send_comment .user_avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  flex: 0 0 50px;
}
.container .comment_container .send_comment .user_avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.container .comment_area {
  flex: 1;
  position: relative;
}
.container .comment_area .comment_input {
  width: 100%;
  height: 132px;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid #b8b9b9;
  padding: 14px 20px;
  box-sizing: border-box;
  font-size: 17px;
  font-family: 'Microsoft YaHei-Regular';
  font-weight: 400;
  color: #262626;
  line-height: 24px;
  outline: none;
  resize: none;
  word-wrap: break-word;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-user-modify: read-write-plaintext-only;
}
.container .comment_area .comment_input:empty:before {
  content: attr(data-placeholder);
  color: #b8b9b9;
  font-size: 15px;
}
.container .comment_area .comment_b {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container .comment_area .comment_b .openEmoji {
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.container .comment_area .comment_b button {
  width: 103px;
  height: 32px;
  background: #c01639;
  border-radius: 6px;
  border: none;
  font-size: 17px;
  font-family: 'Microsoft YaHei-Regular';
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 12px;
  padding-left: 18px;
  cursor: pointer;
}
.container .comment_area .emoji_container {
  width: 680px;
  max-width: 100%;
  height: 140px;
  background: url(//i0cloud.jrjimg.cn/cloud/images/general/emoji/emoji-bg.png);
  background-size: 680px 140px;
  background-repeat: no-repeat;
  position: absolute;
  left: -52px;
  padding: 20px;
  box-sizing: border-box;
  display: none;
  z-index: 9;
}
.container .comment_area .emoji_container .emoji_icon {
  display: inline-block;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  margin: 0 10px 10px 0;
  cursor: pointer;
}
.container .comment_area .emoji_container .emoji_icon:nth-child(17n) {
  margin-right: 0;
}
.container .user_comment_container {
  font-size: 17px;
  font-family: 'Microsoft YaHei-Regular';
  font-weight: 400;
  color: #262626;
  line-height: 24px;
}
.container .user_comment_container .title {
  font-size: 21px;
  line-height: 29px;
  margin: 0px 0 10px;
  padding-left: 15px;
  position: relative;
}
.container .user_comment_container .title::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 4px;
  height: 15px;
  background-color: #c01639;
}
.container .user_comment_container .title span {
  display: inline-block;
  margin-left: 5px;
  font-size: 17px;
}
.container .comment_list {
  width: 100%;
  padding: 0 20px;
  border-radius: 6px;
  border: 1px solid #b8b9b9;
  box-sizing: border-box;
}
.container .comment_list .comment_item {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #b8b9b9;
  padding: 20px 0;
}
.container .comment_list .comment_item.comment_item_f:last-child {
  border-bottom: none;
}
.container .comment_list .comment_item .user_avatar {
  width: 50px;
  height: 50px;
  position: relative;
  flex: 0 0 50px;
}
.container .comment_list .comment_item .user_avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.container .comment_list .comment_item .r-container {
  flex: 1;
  padding-left: 20px;
  min-width: 0;
}
.container .comment_list .comment_item .r-container .r-top {
  display: flex;
  justify-content: space-between;
  margin: 14px 0 28px 0;
  font-size: 15px;
  color: #b8b9b9;
  gap: 10px;
}
.container .comment_list .comment_item .r-container .r-top .send_time {
  margin-right: 30px;
  white-space: nowrap;
}
.container .comment_list .comment_item .r-container .r-top .user_name {
  width: 250px;
  color: #262626;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.container .comment_list .comment_item .r-container .r-top .desc {
  display: flex;
  white-space: nowrap;
}
.container .comment_list .comment_item .r-container .comment {
  text-align: justify;
  word-break: break-word;
  overflow: hidden;
}
.container .comment_list .comment_item .r-container .btn {
  display: flex;
  justify-content: space-between;
  margin: 27px 0 0 0;
  position: relative;
}
.container .comment_list .comment_item .r-container .btn button {
  border: none;
  cursor: pointer;
  font-size: 15px;
  line-height: 21px;
  background: none;
  padding: 0;
  display: flex;
  align-items: center;
}
.container .comment_list .comment_item .r-container .btn button img {
  display: block;
  margin-right: 10px;
  width: 20px;
  height: 20px;
}
.container .reply_list .comment_item {
  background: #f4f4f4;
  border-radius: 10px;
  border: 1px solid #b8b9b9;
  padding: 10px 40px 10px 20px;
  box-sizing: border-box;
  margin-top: 10px;
}
.container .reply_list .comment_item .r-container .r-top .user_name {
  width: 250px;
  color: #262626;
}
.container .reply_list .comment_item .r-container .r-top .user_name span {
  margin-left: 10px;
}
.container .reply_list .comment_item .r-container .r-top .user_name span i {
  color: #c01639;
}
.container .reply_list .comment_tip {
  cursor: pointer;
}
.container .reply_list .comment_tip img {
  width: 10px;
  height: 10px;
  margin-left: 5px;
}
.container .reply {
  display: none;
}
.container .reply .comment_area {
  position: relative;
}
.container .reply .comment_area .comment_input {
  width: 100%;
  margin-top: 10px;
}
.container .reply .comment_area .emoji_container {
  bottom: -80%;
  left: -52px;
}
.container .reply_list .reply .comment_area .emoji_container {
  bottom: -80%;
  left: -52px;
}
.container .report_modal {
  width: 551px;
  max-width: 100%;
  height: 287px;
  background: url(//i0cloud.jrjimg.cn/cloud/images/general/report-bg.png);
  position: absolute;
  top: 18px;
  right: -15px;
  padding: 30px 56px 36px;
  box-sizing: border-box;
  display: none;
  z-index: 14;
}
.container .report_modal .reason_list {
  font-size: 17px;
  font-family: 'Microsoft YaHei-Regular';
  color: #262626;
  line-height: 24px;
  text-align: center;
}
.container .report_modal .reason_list .rptitle {
  font-size: 20px;
  font-weight: bold;
  line-height: 28px;
  margin-bottom: 20px;
}
.container .report_modal .reason_list ul {
  display: flex;
  flex-wrap: wrap;
}
.container .report_modal .reason_list ul li {
  padding: 5px 24px;
  background: #f4f4f4;
  border-radius: 17px;
  margin: 0 20px 15px 0;
  cursor: pointer;
}
.container .report_modal .reason_list ul li:nth-child(4) {
  margin-right: 0;
}
.container .report_modal .reason_list .btn {
  padding: 0 100px;
  display: flex;
  justify-content: space-between;
}
.container .report_modal .reason_list .btn div {
  width: 103px;
  height: 32px;
  background: #f4f4f4;
  border-radius: 6px;
  line-height: 32px;
  cursor: pointer;
}
.container .report_modal .reason_list .active {
  color: #fff;
  background-color: #c01639;
}
.container .reported {
  font-size: 20px;
  font-family: 'Microsoft YaHei-Regular';
  font-weight: bold;
  color: #262626;
  line-height: 28px;
  display: none;
  text-align: center;
  margin-top: 100px;
}
.container .pager_wrapper {
  width: 100%;
}
.container .pager {
  padding: 0;
  display: flex;
  margin: 20px auto;
  height: 30px;
  line-height: 30px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #333;
}
.container .pager .totalPage {
  margin: 0 20px;
}
.container .pager li {
  width: 22px;
  height: 22px;
  line-height: 22px;
  margin: 0 3px;
  text-align: center;
  display: inline-block;
  list-style: none;
  border-radius: 4px;
  cursor: pointer;
}
.container .pager .pageNum {
  background-color: #000;
  color: #fff;
}
.container .pager .pageAct {
  background-color: #c01639;
}
.container .comment_tip {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-left: 90px;
  margin-top: 20px;
}
.container .comment_tip img {
  display: block;
  margin-left: 10px;
}
