.page-container {
  padding: 20px 0 30px;
}
.cate-list {
  min-width: 185px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 10px;
  transition: all 0.3s ease;
}
.cate-list a {
  padding: 10px;
  color: #333333;
  animation: all 0.3s ease-in-out;
  border-radius: 3px;
}
.cate-list .active,
.cate-list a:hover {
  background: rgba(0, 106, 255, 0.1);
  color: #006aff;
}
.sticky {
  position: fixed;
  z-index: 1000;
}
.help-right {
  padding-bottom: 20px;
}
.help-right .search-box {
  margin: 30px 0 20px;
  border: 1px solid #006aff;
  border-radius: 5px;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  box-sizing: border-box;
  background: #f5f8ff;
}
.help-right .search-box:hover {
  outline: 5px solid rgba(0, 106, 255, 0.2);
}
.help-right .search-box #search_ipt {
  height: 48px;
  border: none;
  flex: 1;
  background: transparent;
}
.help-right .search-box #search_btn {
  background: #006aff;
  color: #fff;
  height: 48px;
  line-height: 48px;
  border: none;
  outline: none;
  padding: 0 30px;
  cursor: pointer;
}
.help-right .page-box .pagination .active span {
  background: #006aff;
  border-color: #006aff;
}
.article-list .item {
  border-bottom: 1px solid #e8eaec;
  display: flex;
  align-items: stretch;
  padding: 25px 15px;
}
.article-list .item:hover {
  background: rgba(0, 106, 255, 0.1);
}
.article-list .item .banner {
  margin-right: 15px;
  width: 240px;
  height: 160px;
}
.article-list .item .banner img {
  width: 100%;
  height: 100%;
}
.article-list .item .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-list .item .info .title {
  font-size: 16px;
  color: #333333;
  font-weight: bold;
}
.article-list .item .info .desc {
  font-size: 14px;
  color: #999999;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  max-height: calc(1.5em * 3);
}
.article-list .item .info .time-view {
  display: flex;
  align-items: end;
  color: #999999;
  font-size: 13px;
  flex: 1;
}
.article-list .item .info .time-view span {
  flex: 1;
}
.article-list .item .info .time-view span i {
  margin-right: 5px;
}
.empty-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0;
  color: #999999;
}
.empty-data:before {
  content: "";
  display: block;
  background-image: url("/assets/img/frontend/empty.png");
  background-repeat: no-repeat;
  background-size: 100%;
  height: 120px;
  width: 120px;
}
.article-content {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 15px;
}
.article-content .article-right {
  width: 380px;
  padding: 10px;
}
.article-content .article-right .item-title {
  font-weight: bold;
  font-size: 16px;
  padding: 10px;
  color: #fff;
  border-radius: 5px;
  margin-bottom: 10px;
  background: linear-gradient(to right, rgba(0, 106, 255, 0.8), rgba(0, 106, 255, 0.2) 50%, #fff);
}
.article-content .article-right .item-title .pull-right {
  font-size: 14px;
  color: #999999;
  font-weight: normal;
  cursor: pointer;
}
.article-content .article-right .cate-list {
  padding: 0;
}
.article-content .article-right .hot-list .item {
  padding: 10px 5px;
}
.article-content .article-right .hot-list .item:last-child {
  border-bottom: none;
}
.article-content .article-right .hot-list .item .banner {
  width: 130px;
  height: 80px;
  margin-right: 10px;
}
.article-content .article-right .hot-list .item .info .title {
  font-size: 14px;
  font-weight: normal;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
}
.article-content .article-info {
  flex: 1;
  padding: 15px;
}
.article-content .article-info .breadcrumb {
  font-size: 13px;
  color: #999999;
  background: transparent;
  padding: 0;
}
.article-content .article-info .breadcrumb a {
  color: #999999;
}
.article-content .article-info .breadcrumb i {
  padding: 0 5px;
  font-size: 16px;
}
.article-content .article-info .article-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #e8eaec;
}
.article-content .article-info .article-title .title {
  font-size: 18px;
  font-weight: bold;
}
.article-content .article-info .article-title .time-view {
  font-size: 13px;
  color: #999999;
  margin-top: 10px;
  display: flex;
  gap: 20px;
}
.article-content .article-info .article-title .time-view span {
  display: flex;
  gap: 5px;
  align-items: center;
}
@media (max-width: 991px) {
  .article-right {
    display: none;
  }
  .article-info {
    margin: 0 10px;
  }
  .article-info .article-title .time-view span:first-child {
    display: none;
  }
  .help-left {
    display: none;
  }
  .row {
    margin: 0;
    padding: 0 10px;
  }
  .help-right {
    width: 100%;
    padding: 15px 10px;
    box-sizing: border-box;
  }
  .help-right .search-box {
    margin: 10px 0;
  }
  .help-right .article-list .item {
    padding: 10px 0;
  }
  .help-right .article-list .item .banner {
    margin-right: 10px;
    width: 120px;
    height: 80px;
  }
  .help-right .article-list .item .info .title {
    font-size: 14px;
    font-weight: normal;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    max-height: calc(1.5em * 2);
  }
  .help-right .article-list .item .info .desc {
    display: none;
  }
  .help-right .article-list .item .info .time-view span:first-child {
    display: none;
  }
}
