
.blog-list {
  display: flex;
  margin-bottom: 50px; align-items: flex-start;
}
.blog-list-pic {
  position: relative;
  padding-bottom: 30%;
  width: 30%;
  transition: all 0.5s; 
}
.blog-list-content {
  width: 70%; padding-left: 4%;
}
.blog-list-pic .img-center a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;  
}
.blog-list-pic .img-center img {
  max-height: 100%;
  transition: all 0.5s;
}
.blog-list-pic:hover img {
  transform: scale(0.9);
}
.blog-list-title {
  font-size: 19px;
}
.blog-list-date {
  color: #bdbdbd;
}
.blog-list-text {
  color: #5d5d5d;
}
.blog-list-more {
  text-align: right;
}
.blog-list-more a {
  color: #89dc65;
}
.blog-list-more a:hover {
  text-decoration: underline;
}
.blog-list-tag a {
  color: #a1a1a1;
  background: #f5f5f5;
  border: 1px solid #dfdfdf;
  border-radius: 3px;
  padding: 3px 12px;
  transition: all 0.5s;
}
.blog-list-tag a:hover {
  color: #fff;
  background: #89dc65;
  border: 1px solid #89dc65;
}

.blog-divider {
  border-left: 1px solid #dfdfdf;
  padding-left: 30px;
}
@media only screen and (max-width: 992px) {
  .blog-divider {
    padding-left: 0px;
    border-left: none;
  }
}

.blog-article-title {
  font-size: 19px;
  margin-bottom: 10px;
}
.blog-article-search {
  position: relative;
}
.blog-article-search > input {
  width: 100%;
  border: 1px solid #dfdfdf;
  border-radius: 40px;
  padding: 0 40px 0 20px;
  transition: all 0.5s;
}
.blog-article-search:hover > input {
  border: 1px solid #89dc65;
}
.blog-article-search > a {
  position: absolute;
  right: 15px;
}
.blog-article-tag {
  margin-top: 30px;
}
.blog-article-tag a {
  color: #a1a1a1;
  background: #f5f5f5;
  border: 1px solid #dfdfdf;
  border-radius: 3px;
  padding: 3px 12px;
  transition: all 0.5s;  
}
.blog-article-tag a:hover {
  color: #fff;
  background: #89dc65;
  border: 1px solid #89dc65;
}
.blog-article-cate {
  margin-top: 30px;
}
.blog-article-cate > ul {
  padding-left: 0;
}
.blog-article-cate > ul > li {
  transition: all 0.5s;
  border-bottom: 1px solid #e6e6e6;
  list-style: none;
  padding: 5px 0 5px 10px;
}
.blog-article-cate > ul > li:hover {
  background-color: #89dc65;
}
.blog-article-cate > ul > li:hover * {
  color: #fff;
}
.blog-article-hot-box {
  border-bottom: 1px solid #e6e6e6;
}
.blog-article-hot-cate {
  color: #8b8b8b;
}
.blog-article-hot-text a {
  transition: all 0.5s;
}
.blog-article-hot-text a:hover {
  color: #89dc65;
}


.blog-detail-text {
  padding: 0 30px 20px 0;
}
.blog-detail-tag a {
  color: #a1a1a1;
  background: #f5f5f5;
  border: 1px solid #dfdfdf;
  border-radius: 3px;
  padding: 3px 12px;
  transition: all 0.5s;
}
.blog-detail-tag a:hover {
  color: #fff;
  background: #89dc65;
  border: 1px solid #89dc65;
}
.blog-detail-btn {
  margin-bottom: 30px;
}
.blog-detail-btn a {
  color: #fff;
  background-color: #5d7677;
  padding: 5px 30px;
  margin-top: 20px;
  display: inline-block;
  transition: all 0.5s;
}
.blog-detail-btn a:hover {
  background-color: #89dc65;
}


@media only screen and (max-width: 768px) {
  .blog-list {
    flex-direction: column;
  }
  .blog-list-pic {
    width: 100%;
    padding-bottom: 100%;
  }
  .blog-list-content {
    width: 100%; padding-left: 0; padding-top: 20px;
  }    
}