.filter,
.select {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #eee;
  padding: 20px 40px;
  margin-top: 30px;
}
.filter .block,
.select .block {
  display: flex;
  width: 100%;
  margin: 5px 0;
}
.filter .block .title,
.select .block .title {
  width: 150px;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 40px;
}
.filter .block .con,
.select .block .con {
  flex-grow: 1;
}
.filter .block .con .list,
.select .block .con .list {
  flex-grow: 1;
  display: flex;
  font-size: 16px;
  flex-wrap: wrap;
}
.filter .block .con .list .item,
.filter .block .con .list .item2,
.select .block .con .list .item {
  padding: 5px 10px;
  cursor: pointer;
  margin: 5px 0;
  display: flex;
}
.filter .block .con .list .active,
.select .block .con .list .active {
  background-color: #005BAC;
  color: #fff;
}
.filter .block .con .other .item,
.filter .block .con .other .item2,
.select .block .con .other .item,
.select .block .con .other .item2
{
  border: 1px solid #ddd;
  margin-right: 15px;
}
.filter .block .con .other .item .iconfont,
.filter .block .con .other .item2 .iconfont,
.select .block .con .other .item .iconfont,
.select .block .con .other .item2 .iconfont
{
  transform: rotate(90deg);
  display: inline-block;
}
.filter .block .con .otherList,
.select .block .con .otherList {
  display: none;
}
.filter .block .con .other .show,
.select .block .con .other .show {
  display: flex;
  background-color: #005bac;
  color: #fff;
}
.filter .block .con .otherList.show,
.select .block .con .otherList.show {
  display: flex;
}
.filter .block .con .searchIpt,
.select .block .con .searchIpt {
  border: 1px solid #ccc;
  border-radius: 0;
  height: 40px;
  width: 400px;
  outline-color: #EF8200;
  text-indent: 2em;
}

.filter_list {
  width: 100%;
  border: 1px solid #eee;
  margin-top: 30px;
  font-size: 18px;
}
.filter_list .header,
.filter_list .body .body_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.filter_list .header {
  font-weight: 700;
  background-color: #005bac;
  color: #fff;
}
.filter_list .header .header_item {
  width: 12%;
  height: 40px;
  line-height: 40px;
}
.filter_list .header .title {
  width: 35%;
}
.filter_list .header .area {
  width: 20%;
}
.filter_list .body .body_item {
  border-top: 1px solid #eee;
  cursor: pointer;
}
.filter_list .body .body_item:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.filter_list .body .body_item .item {
  width: 12%;
  padding: 10px;
}
.filter_list .body .body_item .title {
  width: 35%;
  position: relative;
}
.filter_list .body .body_item .title .center {
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.filter_list .body .body_item .title .center .Englist {
  font-size: 14px;
}
.filter_list .body .body_item .area {
  width: 20%;
}

.m_filter_list .header .header_item {
  width: 25%;
}
.m_filter_list .header .title {
  width: 50%;
}
.m_filter_list .body .body_item .item {
  width: 25%;
}
.m_filter_list .body .body_item .title {
  width: 50%;
}
.m_filter_list .body .body_item .title .center .Englist {
  font-size: 12px;
  /*white-space: nowrap;*/
  word-break: break-all;
}

.route {
  width: 100%;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
}
.route .route-left {
  cursor: pointer;
}
.route .route-left .iconfont {
  color: #666;
}

@media screen and (max-width: 768px) {
  .select,
.filter {
    border: none;
    margin-top: 0;
  }
  .select .block,
.filter .block {
    flex-wrap: wrap;
  }
  .select .block .title,
.filter .block .title {
    font-size: 16px;
    width: 100%;
  }
  .select .block .con .list,
.filter .block .con .list {
    font-size: 16px;
    line-height: 1;
  }
  .select .block .con .list .item,
  .select .block .con .list .item2,
.filter .block .con .list .item,
.filter .block .con .list .item2
  {
    padding-top: 7px;
  }
  .select .block .con .searchIpt,
.filter .block .con .searchIpt {
    width: 80%;
  }

  .filter_list {
    margin-top: 0;
  }

  .filter {
    padding: 0 20px;
    box-sizing: border-box;
  }
  .filter .block {
    margin: 0;
    margin-bottom: 10px;
  }
  .filter .block .title {
    line-height: 30px;
    margin-top: 10px;
    font-size: 18px;
  }

  .select {
    padding: 0 20px;
  }
}
@media screen and (max-width: 576px) {
  .route {
    padding: 10px;
  }

  .filter_list {
    font-size: 14px;
  }
}