.banner {
  width: 100%;
  margin-bottom: 20px;
}

.banner .slider {
  width: 100%;
  position: relative;
}

.banner .slider img {
  width: 100%;
}

.banner .slick-dots {
  position: absolute;
  bottom: 15px;
}

.banner .slick-dots li.slick-active button:before {
  color: #fff;
}

.banner .slick-dots li button:before {
  color: #fff;
}

.content_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 30px;
}

.content_block .side_menu {
  width: 20%;
}

.content_block .content_box {
  width: 80%;
}

@media screen and (max-width: 990px) {
  .content_block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .content_block .side_menu {
    width: 100%;
  }
  .content_block .content_box {
    width: 100%;
  }
}

.activity_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.activity_list .activity_card {
  margin: 10px 15px;
  width: calc(100% - 30px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  text-decoration: none;
  background: #fff;
  -webkit-box-shadow: 2px 2px 5px #d1d1d1;
          box-shadow: 2px 2px 5px #d1d1d1;
  padding: 5px;
  border-radius: 5px;
  -webkit-transition: .3s;
  transition: .3s;
}

.activity_list .activity_card .pic {
  width: 150px;
}

.activity_list .activity_card .pic img {
  width: 100%;
}

.activity_list .activity_card .inf {
  width: calc(100% - 150px);
  padding-left: 10px;
}

.activity_list .activity_card .inf p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  -webkit-transition: .3s;
  transition: .3s;
}

.activity_list .activity_card .inf p.neme {
  font-size: 18px;
  font-weight: bold;
  color: #c30d23;
  margin-bottom: 5px;
}

.activity_list .activity_card .inf p.time {
  color: #999;
}

.activity_list .activity_card:hover {
  background: #c30d23;
}

.activity_list .activity_card:hover .inf p {
  color: #fff;
}

.activity_list .activity_card:hover .inf p.neme {
  color: #c30d23;
  background: #fff;
  border-radius: 3px;
}

.activity_list .activity_card:hover .inf p.time {
  color: #fff;
}

@media screen and (max-width: 990px) {
  .activity_list .activity_card {
    width: 100%;
  }
}
/*# sourceMappingURL=activity.css.map */