﻿* {
  padding: 0;
  margin: 0;
  box-sizing: border-box !important;
}
.container {
  width: 1200px;
  margin: auto;
}
.tl-5 {
  font-size: 20px;
}
.flex-list {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  list-style: none;
  padding: 0;
}
.flex-list .item {
  padding: 1rem;
}
.flex-3 > .item {
  width: calc(33.33333333% - 30px * 0.66666667);
  margin: 30px 30px 0 0;
}
.flex-3 > .item:nth-child(3n+3) {
  margin-right: 0;
}
.flex-list {
  padding: 30px 0;
}
.flex-list .item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-size: cover;
  border-radius: 5px;
  overflow: hidden;
  height: 115px;
}
.flex-list .item .text {
  width: 70% ;
  display: block;
  text-decoration: none;
}
.flex-list .item .text span {
  width: 60%;
  margin-right: 20px;
  color: #fff;
  font-weight: bold;
}
.flex-list .item .text .arrow {
  height: 16px;
  filter: brightness(7);
}
.flex-list .item .text:hover span {
  color: rgba(255, 255, 255, 0.8);
}
