.wrapper .info-container {
  display: flex;
  width: 100%;
}

.wrapper .item {
  display: flex;
  flex-direction: row-reverse;
  padding: 15px;
  margin-top: 20px;
  box-sizing: border-box;
  box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.1);
  border-bottom: 1.5px solid transparent;
  background-color: #fff;
}

.wrapper .item:first-child {
  margin-top: 0px;
}

.wrapper .item:hover {
  cursor: pointer;
}

.wrapper .item:hover .item-left .title {
  color: var(--primary);
}

.wrapper .item:hover .item-left .desc {
  color: var(--primary-dark);
}

.wrapper .item:hover .item-left .time {
  color: var(--primary-disabled);
}

.wrapper .item:hover .item-right img {
  transform: scale(1.2);
}

.wrapper .item .item-left {
  flex: 1;
  margin-left: 15px;
}

.wrapper .item .item-left .title {
  font-size: 20px;
  color: var(--main-color);
}

.wrapper .item .item-left .desc {
  margin: 8px 0px;
  font-size: 14px;
  color: var(--content-color);
}

.wrapper .item .item-left .time {
  font-size: 12px;
  color: var(--tips-color);
}

.wrapper .item .item-right {
  width: 135px;
}

.wrapper .item .item-right img {
  width: 100%;
  height: 100%;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transition: all .4s;
}

.wrapper .left {
  flex: 0.75;
  margin-right: 15px;
}

.wrapper .right {
  position: sticky;
  top: 140px;
  display: block;
  flex: 0.25;
  height: 100%;
}

.wrapper .right .block {
  padding: 10px;
  background-color: #fff;
}

.wrapper .right .item {
  background-color: var(--bg-color);
}

.wrapper .right .item .item-left .title {
  font-size: 14px;
}

.wrapper .right .item .item-left .time {
  margin-top: 10px;
}

.wrapper .right .item .item-right {
  width: 60px;
}

.wrapper-body {
	min-height: calc(100vh - 125px - 265px);
}
