.banner-wrap {
  text-align: center;
}

.join-desc-wrap {
  margin: 80px 0;
}
.join-desc-wrap .container {
  /*height: 465px;*/
  background: #009EA1;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  padding: unset;
}
.join-desc-wrap .container .left {
  width: 490px;
  box-sizing: border-box;
  padding: 40px;
}
.join-desc-wrap .container .left h2 {
  margin: 0 0 30px;
  color: #fff;
  font-size: 30px;
}
.join-desc-wrap .container .left small {
  line-height: 1;
  font-size: 14px;
  color: #fff;
  line-height: 2;
  opacity: .9;
}
.join-desc-wrap .container .right {
  flex: 1;
}
.join-desc-wrap .container .right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 640px) {
  .join-desc-wrap {
    margin: 40px 0;
  }
  .join-desc-wrap .container {
    display: block;
    height: unset;
    padding: unset;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 20px;
  }
  .join-desc-wrap .container .left {
    width: unset;
    padding: 30px 20px 15px;
  }
  .join-desc-wrap .container .right img {
    display: block;
  }
}



.tag-wrap ul {
  display: flex;
  justify-content: center;
  margin: 60px 0 0;
}
.tag-wrap li {
  padding: 10px 30px;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  margin-right: 15px;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
  color: #4D4D4D;
  cursor: pointer;
  transition: all .3 ease;
  background: #fff;
}
.tag-wrap li.active,
.tag-wrap li:hover {
  background: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}
@media screen and (max-width: 600px) {
  .tag-wrap {
    width: 92%;
    overflow-x: scroll;
    margin:0  auto;
  }
  .tag-wrap ul {
    display: block;
    justify-content: left;
    margin: unset;
  }
  .tag-wrap ul li {
    display: inline-block;
    padding: 10px 15px;
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .tag-wrap ul li:last-child {
    margin-right: unset;
  }
}




.list-wrap {
  margin-top: 40px;
  margin-bottom: 60px;
}
.list-wrap .panel-wrap {
  display: block;
  background: #F5F7FA;
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 20px;
}
.list-wrap .panel-wrap:hover h2 {
  color: var(--main-color);
}
.list-wrap .panel-wrap h2 {
  font-size: 20px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #333333;
  margin: 0 0 15px;
}
.list-wrap .panel-wrap small {
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #808080;
}
.list-wrap .panel-wrap .price {
  font-size: 20px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #FF7012;
  margin-bottom: 26px;
}
.list-wrap .panel-wrap .time {
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #808080;
}
@media screen and (max-width: 640px) {
  .list-wrap {
    margin: 15px 0 50px;
  }
  .list-wrap .left,
  .list-wrap .right {
    float: unset;
  }
  .list-wrap .panel-wrap .price {
    margin-bottom: 10px;
    margin-top: 30px;
  }
}
