#post_feedback {
  padding: 24px 32px 32px 32px;
  background: #fff;
  position: fixed;
  bottom: 36px;
  right: 36px;
  min-height: 176px;
  width: 368px;
  z-index: 99;
  border-radius: 8px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.10);
}

.closed_icon {
  display: flex;
  margin-bottom: 8px;
  justify-content: flex-end;
}

.closed_icon i {
  width: 24px;
  height: 24px;
  background: url(../../img/Close.svg) no-repeat center;
  cursor: pointer;
}

.closed_icon i:hover {
  background: url(../../img/Close_hover.svg) no-repeat center;
}

.feedback_title {
  position: relative;
  width: 100%;
}

.feedback_title_child {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding-bottom: 16px; */
}

.feedback_title b {
  font-size: 12px;
  vertical-align: top;
  font-family: NotoSans-Bold;
  color: #101125;
  height: 24px;
}

.feedback_title p {
  padding-bottom: 0;
  cursor: pointer;
  max-height: 72px;
  font-size: 20px;
  line-height: 24px;
  font-family: NotoSans-Bold;
  color: #101125;
  margin-left: 4px;
  /* text-indent: 2em; */
  /* display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  /* 最多显示三行 */
  /* overflow: hidden;
  text-overflow: ellipsis;  */
  /* 添加省略号 */
}

.star-rating {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}

.star-rating .star {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-image: url('../../img/full-star.svg');
  /* 使用实心星星图片作为背景 */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  margin-right: 16px;
  outline: none;
  /* 去除点击时的外部轮廓线条 */
  -webkit-tap-highlight-color: transparent;
  /* 去除点击时的高亮颜色（仅适用于某些浏览器）*/
}

.card-content-fd {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.card-content-fd .img-box img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 0;
  border-radius: 8px;
}

.content-box-fd {
  margin-left: 8px;
  width: calc(100% - 56px);
  color: #101125;
}

.content-box-fd .nav-line {
  font-size: 14px;
  line-height: 18px;
  height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0;
}

.content-box-fd .time-line {
  margin-top: 4px;
  font-size: 14px;
  line-height: 18px;
  height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0;
  color: #6C6F95;
}

@media (max-width: 768px) {
  #post_feedback {
    padding: 0;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    top: unset;
    border-radius: 12px 12px 0px 0px;
  }

  .closed_icon {
    border-radius: 12px 12px 0 0;
    width: 100%;
    padding: 12px 16px;
    background: #F7F8FA;
  }

  .feedback_title {
    width: 100%;
    padding: 24px 16px;
  }

  .star-rating .star {
    width: 40px;
    height: 40px;
  }

  .card-content-fd {
    padding: 0 16px;
    padding-top: 16px;
    margin-bottom: 0;
  }
}