.comment_mod {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
  box-sizing: border-box;
  padding: 0.32rem;
  padding-bottom: 0.96rem;
  background-color: #FFFFFF;
}
.comment_mod .comment_mod_hd {
  display: flex;
  align-items: center;
  gap: 1em;
}
.comment_mod .comment_mod_hd::before {
  content: '';
  display: inline-block;
  width: 0.12rem;
  background-color: #285A8F;
  height: 0.32rem;
}
.comment_mod .comment_mod_hd .title {
  font-weight: 600;
  font-size: 0.36rem;
  line-height: 0.36rem;
  color: #333;
  padding: 0;
}
.comment_mod .comment_mod_bd {
  font-size: 0;
}
.comment_mod .comment_list {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}
.comment_mod .comment_item {
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 0.28rem;
  border-bottom: 0.02rem solid #d4d4d4;
  display: flex;
  gap: 0.12rem;
}
.comment_mod .comment_item .comment_avatar {
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 50%;
}
.comment_mod .comment_item .box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.comment_mod .comment_item .name {
  font-size: 0.28rem;
  color: #285A8F;
  line-height: 0.36rem;
}
.comment_mod .comment_item .start_box {
  display: inline-flex;
  align-items: center;
  position: relative;
  height: 0.28rem;
}
.comment_mod .comment_item .start_source {
  height: 100%;
  width: auto;
}
.comment_mod .comment_item .start_inner {
  height: 100%;
  display: inline-block;
  background: url("../img/five_stars_fill.svg") no-repeat;
  background-size: auto 100%;
  background-position: left center;
  position: absolute;
  left: 0;
  top: 0;
}
.comment_mod .comment_item .text {
  margin: 0.2rem 0 0;
  font-size: 0.28rem;
  color: #666;
  line-height: 0.36rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.comment_mod .comment_item .time {
  margin: 0.12rem 0 0;
  font-size: 0.28rem;
  color: #999;
  line-height: 0.44rem;
}
.comment_mod .comment_show_more {
  width: 4.4rem;
  line-height: 0.56rem;
  font-size: 0.28rem;
  color: #285A8F;
  border: 0.02rem solid #285A8F;
  text-align: center;
  border-radius: 0.08rem;
  margin: 0.28rem auto;
  cursor: pointer;
}
.comment_mod .comment_write {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
}
.comment_mod .comment_write .comment_input_box {
  position: relative;
}
.comment_mod .comment_write .comment_write_text {
  display: block;
  white-space: word-break;
  font-size: 0.24rem;
  line-height: 0.36rem;
  height: 2.2rem;
  border-radius: 0.08rem;
  border: 0.02rem solid #d4d4d4;
  width: 100%;
  resize: none;
  box-sizing: border-box;
  padding: 0.12rem;
}
.comment_mod .comment_write .comment_write_other {
  display: flex;
  border: 0.02rem solid #d4d4d4;
  border-radius: 0.08rem;
  padding: 0.24rem;
  margin-top: -0.08rem;
  justify-content: space-between;
  align-items: center;
  border-top: none;
  box-sizing: border-box;
  background-color: #f2f5f9;
}
.comment_mod .comment_write .comment_write_emoji {
  font-size: 0.48rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.comment_mod .comment_write .start_box {
  display: inline-flex;
  align-items: center;
  position: relative;
  height: 0.28rem;
  cursor: pointer;
}
.comment_mod .comment_write .start_source {
  height: 100%;
  width: auto;
}
.comment_mod .comment_write .start_inner {
  height: 100%;
  display: inline-block;
  background: url("../img/five_stars_fill.svg") no-repeat;
  background-size: auto 100%;
  background-position: left center;
  position: absolute;
  left: 0;
  top: 0;
}
.comment_mod .comment_write_msg {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0.2rem auto;
}
.comment_mod .comment_write_msg .user_box {
  display: flex;
  align-items: center;
  gap: 0.12rem;
}
.comment_mod .comment_write_msg .user_img {
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 50%;
}
.comment_mod .comment_write_msg .name {
  font-size: 0.28rem;
  color: #333;
  line-height: 0.48rem;
  border: none;
  padding: 0;
  width: 6rem;
  border-bottom: 1px solid #d4d4d4;
}
.comment_mod .comment_write_msg .submit_btn {
  padding: 0 0.16rem;
  line-height: 0.44rem;
  border-radius: 0.08rem;
  font-size: 0.28rem;
  color: #285A8F;
  border: 0.02rem solid #285A8F;
  display: inline-flex;
  align-items: center;
  transition: all linear 0.2s;
  gap: 0.08rem;
  cursor: pointer;
  position: absolute;
  right: 0.24rem;
  bottom: 0.16rem;
}
.comment_mod .comment_write_msg .submit_btn::after {
  content: "";
  width: 0.2rem;
  height: 0.2rem;
  clip-path: polygon(100% 100%, 0% 100%, 100% 0);
  background-color: #285A8F;
  display: inline-block;
  transform: rotate(-45deg);
  border-radius: 0.08rem;
  transition: all linear 0.2s;
}
.comment_mod .comment_write_emoji_list {
  border: 0.02rem solid transparent;
  border-radius: 0.08rem;
  width: 100%;
  height: 0;
  overflow: hidden;
  display: flex;
  font-size: 0.48rem;
  line-height: 1;
  background-color: #ffffff;
  flex-wrap: wrap;
  gap: 0.2rem;
  box-sizing: border-box;
  transition: all linear 0.2s;
}
.comment_mod .comment_write_emoji_list.is_active {
  padding: 0.4rem;
  height: 5.04rem;
  border-color: #d4d4d4;
}
.comment_mod .comment_write_emoji_list .emoji_item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 0.08rem;
  box-sizing: border-box;
  padding: 0.1rem;
  transition: all ease-in 0.1s;
}
.comment_mod .comment_write_emoji_list .emoji_item:hover {
  background-color: #285A8F;
}
.new_apps_detail {
  box-sizing: border-box;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.new_apps_detail .hd {
  display: flex;
  align-items: center;
  gap: 10px;
}
.new_apps_detail .app_img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  flex: 0 0 auto;
}
.new_apps_detail .app_box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 1px;
  flex: 1 1 auto;
}
.new_apps_detail .title {
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 20px;
  font-size: 14px;
  color: #333;
  font-weight: bold;
  width: 100%;
}
.new_apps_detail .desc {
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  line-height: 16px;
  color: #999999;
  width: 100%;
}
.new_apps_detail .msg_list {
  display: flex;
  align-items: center;
}
.new_apps_detail .msg_item {
  flex: 1 1 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 0 6px;
  align-items: center;
  line-height: 1;
  gap: 6px;
}
.new_apps_detail .msg_item + .msg_item {
  border-left: 1px solid #e5e5e5;
}
.new_apps_detail .name {
  font-size: 12px;
  color: #333333;
  font-weight: bold;
}
.new_apps_detail .value {
  font-size: 12px;
  color: #999999;
}
.new_apps_detail .start_box {
  display: inline-flex;
  align-items: center;
  position: relative;
  height: 6px;
}
.new_apps_detail .start_source {
  height: 100%;
  width: auto;
}
.new_apps_detail .start_inner {
  height: 100%;
  display: inline-block;
  background: url("../img/five_stars_fill.svg") no-repeat;
  background-size: auto 100%;
  background-position: left center;
  position: absolute;
  left: 0;
  top: 0;
}
.new_apps_detail .downbtn {
  margin: 0;
  width: auto;
  padding: 0;
}
.new_apps_detail .downbtn p {
  padding: 0 12px;
}
