.lot_list_box{
  display: flex;
}

.lot_tab {
  display: flex;
  flex-direction: column;
  background: #fff;
}

.lot_tab .tab_item{
  position: relative;
  display: flex;
  width: 220px;
  height: 60px;
  background-color: #E8F2FF;
  background-size: contain;
  background-repeat: no-repeat;
  justify-content: center;
  align-items: center;
  opacity: .6;
  cursor: pointer;
}

.lot_tab .tab_item.official {
  background-image: url(../images/OfficialGameplay.png);
}

.lot_tab .tab_item.credit {
  background-image: url(../images/CreditPlay.png);
}

.lot_tab .tab_item .title {
  font-size: 16px;
  font-weight: 900;
  color: #333;
}

.lot_tab .tab_item:hover,
.lot_tab .tab_item.active {
opacity: 1;
}

.lot_tab .tab_item:hover .title,
.lot_tab .tab_item.active .title {
  color: #1E80FF;
}

.lot_list_wrap {
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

.type_row {
  display: flex;
  width: 950px;
  padding: 12px 30px 12px 24px;
  height: 40px;
  overflow: hidden;
}

.type_row ~ .type_row {
  border-top: 1px solid #f0f0f0;
}

.type_row.open {
  height: auto;
}

.type_name {
  display: flex;
  width: 144px;
}

.typeicon{
  display: flex;
  align-items: flex-start;
  padding-top: 8px;
}

.typeicon img {
  width: 30px;
}

.typename {
  padding-left: 10px;
}

.lotlistintype {
  display: flex;
  gap: 16px 10px;
  width: 750px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-plus .lotlistintype .lot_item a{
  color: #666;
  border-radius: 8px;
  background: #f6f6f6;
  width: auto;
  height: auto;
  line-height: 17px;
  padding: 10px 15px 9px 15px;
}

.nav-plus .lotlistintype .lot_item a span{
  color: #666;
  font-size: 12px;
}

.arrow-down {
  cursor: pointer;
}

.arrow-down.r180 img{
  transform: rotate(180deg);
}

.arrow-down img {
  margin-left: 12px;
  transform: translateY(5px);
}