.blog-page {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.blog-title {
  font-weight: 600;
  font-size: 26px;
}

@media screen and (max-width: 576px) {
  .blog-title {
    margin-bottom: 30px;
  }
}

.blog-article-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.blog-article-info .info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-article-info .info-item.quote-info {
  margin-bottom: 10px;
}

.blog-article-info .info-item.status-info .item {
  color: #7C7C7C;
}

.blog-article-info .info-item .item {
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  color: #1E1E1E;
}

.blog-article-info .info-item .item ul {
  margin-bottom: 0;
  margin-left: 24px;
}

.blog-article-info .info-item .item ul li {
  list-style-type: disc;
}

.blog-article-info .info-item .item ul li .item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-article-info .info-item .item ul li span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-article-info .info-item .item ul li span+span {
  margin-left: 10px;
}

.blog-article-info .info-item .item ul li span img {
  margin-right: 8px;
}

.blog-article-title {
  margin: 25px 0 20px;
  font-weight: 600;
  font-size: 50px;
  line-height: 70px;
}

@media screen and (max-width: 576px) {
  .blog-article-title {
    font-size: 30px;
    line-height: 42px;
  }

  .blog-article-p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
}

.blog-article-p {
  font-weight: 400;
  font-size: 20px;
  color: #1E1E1E;
  overflow: hidden;
}

.blog_card {
  position: relative;
  overflow: hidden;
  display: block;
  border: 1px solid #ccc;
  border-radius: 20px;
  margin-bottom: 30px;
  transition: all ease-in-out 0.5s;
  height: calc(100% - 30px);
}

.thumb_blog {
  position: relative;
  z-index: 1;
  cursor: pointer;
  height: 136px;
  transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
  overflow: hidden;
}

.blog_des {
  padding: 10px;
}

.btn-black {
  background: #1E1E1E;
  color: #fff;
}

.btn-black:hover {
  color: #fff !important;
  opacity: 0.7;
}

.btn:hover {
  color: #fff !important;
  text-decoration: none;
}

img.blog-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}

.blog_des h5 {
  padding-top: 15px;
  font-size: 18px;
  color: #303030;
  font-weight: 400;
}
.blog-meta span.meta-date{
      font-weight: 700;
}

.blog-meta span {
  display: inline-block;
  vertical-align: middle;
  text-transform: capitalize;
      color: #592A80;
    font-weight: 500;
}

.blog_des h5 a {
  -webkit-transition: all 0.5s ease-in-out;
  cursor: pointer;
  text-decoration: none;
  color: #303030;
}

.fliter-tag-box {
  margin: 10px 0;
  background-color: #eaeaea;
  padding: 40px 50px;
}

@media screen and (max-width: 576px) {
  .fliter-tag-box {
    padding: 40px 20px;
  }
}

.fliter-tag-box.no-bg {
  background: transparent;
}

.fliter-tag-box .tag-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.fliter-tag-box .tag-box .tag-item {
  background: white;
  color: #1E1E1E;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 20px;
  border-radius: 50px;
  margin: 3px;
  -webkit-transition: all .5s;
  transition: all .5s;
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 10px;
}

.fliter-tag-box .tag-box .tag-item a {
  color: #1E1E1E !important;
}

.fliter-tag-box .tag-box .tag-item:hover {
  color: white;
  background-color: #1E1E1E;
}

.fliter-tag-box .tag-box .tag-item:hover a {
  color: white !important;
}

.fliter-tag-box .tag-box .tag-item.is-choose {
  background-color: #7C7C7C;
  color: white;
}

.fliter-tag-box .tag-box .tag-item.select-box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.fliter-tag-box .tag-box .tag-item.select-box:hover {
  background: white;
  color: #1E1E1E;
}

.fliter-tag-box .tag-box .tag-item.select-box select {
  width: 100%;
  border: none;
}

.fliter-tag-box .tag-input-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 20px 10px;
  background: rgba(255, 255, 255, 1);
  border-radius: 50px;
}

.fliter-tag-box .tag-input-box .input-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.fliter-tag-box .tag-input-box .input-item:first-child {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.fliter-tag-box .tag-input-box .input-item:last-child {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 12px;
  border-left: 2px #1E1E1E solid;
  height: 16px;
}

.fliter-tag-box .tag-input-box .input-item .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
}

.fliter-tag-box .tag-input-box .input-item .item img {
  width: 12px;
  margin-left: 12px;
}

.fliter-tag-box .tag-input-box .input-item input {
  background: none;
  border: none;
  width: 100%;
  outline: none;
  padding-left: 10px;
  font-size: 14px;
}

.article-list-box .row {
  margin-bottom: 40px;
}

.blog-article-list-title {
  font-weight: 600;
  font-size: 40px;
  margin: 25px 0 20px;
}

.blog-article-list-desc {
  font-size: 15px;
}

.blog-article-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.blog-article-bottom .blog-article-info .info-item .item ul {
  margin-left: 0px;
}

.blog-article-bottom .blog-article-info .info-item .item ul li {
  list-style-type: none;
}

.blog-kv-box {
  width: 100%;
  height: 750px;
}

@media screen and (max-width: 576px) {
  .blog-kv-box {
    height: 297px;
  }

  .fliter-tag-box .tag-box .tag-item {
    font-size: 12px;
    padding: 6px 16px;
  }
}

.blog-kv-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-inpage .blog-title {
  margin: 50px 0 30px;
}

.blog-inpage .blog-article-p {
  -webkit-line-clamp: unset;
}

.blog-inpage .fliter-tag-box {
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}

.blog-news-article-list a {
  display: block;
  font-family: 'PingFang HK';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  text-align: justify;
  color: #7C7C7C;
  margin-bottom: 20px;
}

.blog-share-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.blog-share-box .share-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  margin: 0 5px;
  color: #1E1E1E;
}

.blog-share-box .share-item img {
  margin: 0 5px;
}

.blog-share-box .share-item.share-text {
  color: #7C7C7C;
}

.blog-share-box .share-item.share-copy img {
  width: 16px;
}

.blog-share-box .share-item.share-fb {
  border: 1px solid #D4DEF5;
  border-radius: 14px;
  padding: 0 16px;
  height: 54px;
  font-weight: 600;
}

.blog-share-box .share-item.share-fb img {
  width: 20px;
}

.blog_detail {
  position: relative;
}

.blog-banner {
  width: 100%;
  height: 600px;
}

.blog-banner img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.tags_banner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.tags_banner .tagchecklist {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #fff;
  text-overflow: ellipsis;
}

.tagchecklist li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: all ease-in-out 0.5s;
}

.single_detail {
  margin: 70px 0 0;
}

.single_detail h1,
.single_detail h2 {
  font-weight: 400;
  font-size: 26px;
}

.single-blog .blog-meta {
  display: flex;
}

.single_detail .blog-meta span {
  border-right: 1px solid #8d8d8d;
  padding-right: 10px;
  margin-right: 10px;
}

.blog-meta span {
  display: inline-block;
  vertical-align: middle;
  text-transform: capitalize;
}

.single-blog .blog-meta {
  display: flex;
}

.blog-meta button {
  background: transparent;
  padding: 0;
  border: 0;
  color: #1E1E1E;
}

.comments-list {
  margin-top: 15px;
  position: relative;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.comments-list li {
  margin-bottom: 15px;
  display: block;
  position: relative;
}

dl li,
ol li,
ul li {
  padding-bottom: 5px;
  color: #666666;
}

.comments-list .comment-avatar {
  width: 10%;
  max-width: 50px;
  height: 50px;
  position: relative;
  z-index: 99;
  float: left;
  border: 3px solid #000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  background-color: #000;
}

.comments-list .comment-box {
  width: 90%;
  float: right;
  position: relative;
}

.comment-box .comment-head {
  overflow: hidden;
}

.comment-head input.form-control {
  border: 1px solid #000;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

.fb_reset {
  background: none;
  border: 0px;
  border-spacing: 0;
  color: #000;
  cursor: auto;
  direction: ltr;
  font-family: 'lucida grande', tahoma, verdana, arial, sans-serif;
  font-size: 11px;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-height: 1;
  margin: 0;
  overflow: visible;
  padding: 0;
  text-align: left;
  text-decoration: none;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-spacing: normal;
}

.widget {
  margin-bottom: 34px;
  border-radius: 4px;
}

.search_list {
  position: relative;
}

.search-widget .search_list .form-control {
  min-width: 100%;
}

.search_list input {
  padding: 12px 38px 13px 15px;
  background: #fff;
  color: #35008f;
}

.search_list button,
.search_list a {
  border: 0;
  background: transparent;
  box-shadow: none;
  position: absolute;
  top: 10px;
  right: 18px;
  outline: 0;
}

.subscribe .form-control, .search_list .form-control {
  border: 1px solid #35008f;
  background: transparent;
  min-height: 52px;
  color: #8f8e91;
  border-radius: 25px;
  font-size: 16px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

.blog_head h3, .widget h3, .subscribe h3, .post-category h3 {
  font-size: 22px;
}

.post-category .info-title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-top: 5px;
  letter-spacing: 1px;
}

.post-category .info-title a {
  color: #333;
}

.search-btn {
  cursor: pointer;
}

.blog-submit{
  float: right;
  margin-top: 5px;
}

.cursor_point {
  cursor: pointer;
}

.comments-container-list {
  max-width: 600px;
  margin: 55px auto;
  padding: 5px;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.comment {
  padding: 5px 15px;
  margin-bottom: 8px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.comment .name {
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.comment .time {
  font-size: 0.9em;
  color: #888;
  margin-bottom: 10px;
  display: block;
}

.comment .text {
  font-size: 1em;
  color: #555;
  margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
         .thumb_blog {
        height: auto;
    }
        .thumb_blog video {
        height: 200px;
    }
}
/*# sourceMappingURL=blog.css.map */