@charset "UTF-8";
.content .list {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.content .list .videoItem {
  width: 31%;
  border: 1px solid #e3e6e6;
  margin-top: 30px;
  height: auto;
  border-radius: 5px;
  margin-right: 3.5%;
}
.content .list .videoItem .line {
  height: 1px;
  background-color: #005bac;
  width: 26px;
  margin-top: 16px;
  margin-bottom: 25px;
}
.content .list .videoItem:nth-of-type(3n) {
  margin-right: 0;
}
.content .list .videoItem .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px 5px 0px 0px;
  position: absolute;
}
.content .list .videoItem .imgBox {
  position: relative;
  width: 100%;
}
.content .list .videoItem .imgBox::before {
  content: "";
  padding-top: 52%;
  float: left;
}
.content .list .videoItem .imgBox::after {
  content: "";
  display: block;
  clear: both;
}
.content .list .videoItem .main {
  padding: 25px 15px;
}
.content .list .videoItem .main .name {
  font-size: 20px;
  color: #333;
  font-weight: 500;
  margin-bottom: 20px;
}
.content .list .videoItem .main .mainItem1 {
  font-size: 12px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.content .list .videoItem .main .mainItem1 .mainItem1_item {
  color: #969799;
  margin-right: 10px;
}
.content .list .videoItem .main .mainItem1 .mainItem1_item .iconItem {
  font-size: 13px;
  color: #969799;
}
.content .list .videoItem .main .detailButton {
  background-color: #005bac;
  color: #ffffff;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  width: 106px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  display: block;
}
.content .list .videoItem:hover .main .detailButton {
  background-color: #ef8200;
}

.side .menu .ul .liBody {
  display: none;
}

.route-side {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.5s;
  transform: translateX(101%);
}
.route-side .mask {
  background: rgba(0, 0, 0, 0);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.route-side .mask .content {
  width: 80%;
  height: 100%;
  overflow: auto;
  position: absolute;
  right: 0;
  background-color: #fff;
  top: 0;
  margin-top: 0;
  padding: 20px;
  transition: all 1s;
}
.route-side .mask .content .header {
  font-weight: 700;
  font-size: 18px;
}
.route-side .mask .content .body {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  margin-bottom: 20px;
}
.route-side .mask .content .body .btn {
  padding: 5px 10px;
  margin-right: 20px;
  background-color: #f1f2f6;
  font-size: 16px;
  margin-bottom: 10px;
}

.show {
  transform: translateX(0);
}
.show .mask {
  background: rgba(0, 0, 0, 0.5);
}

.swiper-container2 {
  overflow: hidden;
}
.swiper-container2 .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.swiper-container2 .swiper-slide a img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 992px) {
  .content .list {
    justify-content: space-between;
  }
  .content .list .videoItem {
    width: 49%;
    margin-right: 0;
  }
}
@media screen and (max-width: 576px) {
  .content .list {
    justify-content: center;
  }
  .content .list .videoItem {
    width: 90%;
  }
}
.icons img {
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  /* IE 9 */
  -moz-transform: rotate(90deg);
  /* Firefox */
  -webkit-transform: rotate(90deg);
  /* Safari 和 Chrome */
  -o-transform: rotate(90deg);
}

.filter,
.select {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #eee;
  padding: 0 30px;
  margin-top: 30px;
}
.filter .block,
.select .block {
  display: flex;
  width: 100%;
  margin: 10px 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,
.select .block .con .list .item {
  padding: 5px 20px;
  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,
.select .block .con .other .item {
  border: 1px solid #ddd;
  margin-right: 15px;
}
.filter .block .con .other .item .iconfont,
.select .block .con .other .item .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%;
  height: 60px;
  line-height: 60px;
}
.filter_list .body .body_item .title {
  width: 35%;
  position: relative;
}
.filter_list .body .body_item .title .center {
  line-height: 1.4;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.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,
  .filter .block .con .list .item {
    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;
  }
}
