.poster{
  width: 1226px;
  height: 170px;
  display: flex;
  /* background-color: beige; */
  margin: 0 auto;
  margin-top: 14px;
}

.poster .fastLink{
  width: 234px;
  height: 100%;
  /* background-color: aquamarine; */
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background: #5f5750;
}

.poster .fastLink .item{
  flex-basis: calc(100% / 3);
  height: calc(100% / 2);
  /* background-color: bisque; */
  box-sizing: border-box;
  /* border: 1px solid rgb(206, 143, 143); */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity .2s;
  color: #fff;
  font-size: 12px;
}

.poster .fastLink .item:hover .icon, .poster .fastLink .item:hover p{
  opacity: 1;
}

.poster .fastLink .item .box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.poster .fastLink .item .icon{
  width: 24px;
  height: 24px;
  opacity: .7;
}

.poster .fastLink .item .icon img{
  width: 100%;
  height: 100%;
}

.poster .fastLink .item p{
  opacity: .7;
}

.poster .pics{
  flex: 1;
  height: 100%;
  /* background-color: blueviolet; */
  display: flex;
  flex-direction: row;
}

.poster .pics .item{
  margin-left: 14px;
  flex-basis: calc(100% / 3);
  box-sizing: border-box;
  /* border: 1px solid forestgreen; */
  transition: box-shadow .2s linear,-webkit-box-shadow .2s linear;
  cursor: pointer;
}

.poster .pics .item:hover{
  box-shadow: 0 15px 30px rgb(0 0 0 / 10%);
}

.poster .pics .item img{
  width: 100%;
  height: 100%;
}