.slider {
  display: none;
}

.slider_wrap {
  width: 1200px;
  height: 300px;
  box-sizing: border-box;
  margin: 0 auto;
}

.slider_wrap a:hover {
  text-decoration: none;
}

.slider_wrap .slider {
  height: 100%;
}

.slider_wrap .slider li {
  box-sizing: border-box;
  background: white;
  border-radius: 2px;
  position: relative;
}

.slider_wrap .post-date {
  padding: 0 16px;
  text-decoration: none;
  color: #999999;
  font-size: 13px;
  position: absolute;
  bottom: 10px;
  left: 0;
}

.slick-slide div {
    width: 300px;
    height: calc(100% - 40px);
    margin: 20px 5px;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.16), 0 0 0 1px rgba(0,0,0,0.08);
    border-radius: 3px;
}

.slick-list, .slick-track, .slick-slide, .slider_wrap .slider li  {
    height: 100%;
}

.slide_text_wrap {
    width: 100%;
    height: 5em;
    box-sizing: border-box;
    overflow: hidden;
    padding: 16px 16px 5px 16px;
    line-height: 1.375em;
    font-weight: bold;
}

.slide_text {
    width: 100%;
    box-sizing: border-box;
    height: 100%;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    text-overflow: ellipsis;
}

.slick-slide img {
  width: 100%;
  height: calc(100% - 8.5em);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.slider {
  position: relative;
}

button.slick-prev.slick-arrow, button.slick-next.slick-arrow {
    position: absolute;
    height: 100%;
    width: 40px;
    background: none;
    top: 0;
    z-index: 10;
    border: none;
    color: white;
}

.slider button:focus {
  outline: 0;
}

button.slick-prev.slick-arrow {
    left: 0;
    background-image: -webkit-linear-gradient(left,rgba(63, 63, 63, 0.62) 0,rgba(0,0,0,.0001) 100%);
    background-image: -o-linear-gradient(left,rgba(63, 63, 63, 0.62) 0,rgba(0,0,0,.0001) 100%);
    background-image: -webkit-gradient(linear,left top,right top,from(rgba(63, 63, 63, 0.62)),to(rgba(0,0,0,.0001)));
    background-image: linear-gradient(to right,rgba(63, 63, 63, 0.62) 0,rgba(0,0,0,.0001) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
    background-repeat: repeat-x;
}

button.slick-next.slick-arrow {
    right: 0;
    background-image: -webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(63, 63, 63, 0.62) 100%);
    background-image: -o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(63, 63, 63, 0.62) 100%);
    background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(63, 63, 63, 0.62)));
    background-image: linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(63, 63, 63, 0.62) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
    background-repeat: repeat-x;
}


.slick-dots {
    margin: 0 auto;
    text-align: center;
    height: 25px;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
}

.slider_wrap .slick-dots li {
    width: 25px;
    float: left;
    margin: 2px;
    background: none;
}

.slick-dots button {
  position: relative;
  background: none;
  border: none;
  text-indent: -99999px;
}

.slick-dots button:before {
    content: "\f10c";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: initial;
    text-align: center;
    background: none;
    font-family: FontAwesome;
    color: white;
    text-shadow: 0 0 6px #000000a8;
    opacity: 0.4;
}

.slick-dots .slick-active button:before {
  content: "\f111";
}

.background_image {
  width: 100%;
  height: calc(100% - 7.5em);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


@media (max-width: 720px) {

}
@media (max-width: 480px) {
  .slider_wrap {
    width: 100%;
  }
  .slick-dots {
    display: none;
  }

  button.slick-prev.slick-arrow {
    background: none;
    background-image: -webkit-linear-gradient(left,rgb(63, 63, 63) 0,rgba(0,0,0,.0001) 100%);
    background-image: -o-linear-gradient(left,rgb(63, 63, 63) 0,rgba(0,0,0,.0001) 100%);
    background-image: -webkit-gradient(linear,left top,right top,from(rgb(63, 63, 63)),to(rgba(0,0,0,.0001)));
    background-image: linear-gradient(to right,rgb(63, 63, 63) 0,rgba(0,0,0,.0001) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
    background-repeat: repeat-x;
  }

  button.slick-next.slick-arrow {
    background: none;
    background-image: -webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgb(63, 63, 63) 100%);
    background-image: -o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgb(63, 63, 63) 100%);
    background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgb(63, 63, 63)));
    background-image: linear-gradient(to right,rgba(0,0,0,.0001) 0,rgb(63, 63, 63) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
    background-repeat: repeat-x;
  }
}