.font-change-wrap {
  position: absolute;
  top: 134px;
  right: 90px;
  border: 1px solid rgba(220, 220, 220, 1);
}

.font-change-wrap ul {
  display: flex;
  align-items: baseline;
  height: 40px;
  overflow: hidden;
}

.font-change-wrap ul li {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}

.font-change-wrap .choosed {
  color: #003C7D;
}

.font-change-wrap ul li:not(:last-child)::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: -10px;
  height: 50px;
  width: 1px;
  background-color: rgba(220, 220, 220, 1);
}