.forum {
  width: 100%;
  background-color: #fff;
}
.forum-content {
  position: relative;
  width: 90%;
  margin: 0 auto;
}
.forum-content .title {
  position: relative;
  font-size: 24px;
  color: #b50005;
  padding: 55px 0 72px 22px;
}
.forum-content .title::before {
  position: absolute;
  top: 57px;
  left: 0;
  content: "";
  width: 8px;
  height: 20px;
  background-color: #931013;
}
.forum-content .post-new {
  position: absolute;
  top: 55px;
  right: 78px;
  width: 196px;
  height: 70px;
  background-color: #b50005;
  border-radius: 5px;
  font-size: 24px;
  color: #fff;
  line-height: 70px;
  text-align: center;
}
.forum-wrap .item {
  border-bottom: 1px #e4e4e4 dashed;
  display: flex;
  justify-content: space-between;
  margin-bottom: 34px;
}
.forum-wrap .item .forum-detail {
  width: 87%;
}
.forum-wrap .item .forum-avator {
  width: 110px;
  height: 110px;
  background-color: #fff;
  border: 1px #dcdcdc solid;
  border-radius: 50%;
  text-align: center;
}
.forum-wrap .item .forum-avator img {
  width: 90%;
  height: 90%;
  margin-top: 5%;
}
.forum-wrap .item .forum-detail .forum-title {
  display: block;
  font-size: 24px;
  color: #333;
  padding-bottom: 10px;
}
.forum-wrap .item .forum-detail .introduction {
  font-size: 14px;
  color: #666;
  line-height: 26px;
}
.forum-wrap .item .forum-detail .other {
  display: flex;
  justify-content: space-between;
  padding: 22px 0 34px 0;
}
.forum-detail .other .other-left {
  display: flex;
  justify-content: start;
}
.forum-detail .other .other-right {
  display: flex;
  justify-content: start;
}
.forum-detail .other .other-left .key {
  font-size: 14px;
  color: #333;
}
.forum-detail .other .other-left .value {
  font-size: 14px;
  color: #b50005;
}
.forum-detail .other .other-left .time .value {
  color: #666;
}
.forum-detail .other .other-left .count {
  margin: 0 30px 0 30px;
}
.forum-detail .other .other-right .looked img {
  width: 20px;
  height: 12px;
}
.forum-detail .other .other-right .reply {
  padding: 0 30px 0 14px;
}
.forum-detail .other .other-right .reply img {
  width: 20px;
  height: 20px;
}
.forum-detail .other .other-right span {
  font-size: 14px;
  color: #666;
}
