.crumbs {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background-color: #F7F7F7;
  color: #545454;
}
.crumbs .crumbs-container {
  width: 1200px;
  display: flex;
  justify-content: flex-start;
}
.crumbs .crumbs-container .crumbs-container-item a {
  cursor: pointer;
}
.list-article {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  min-height: 500px;
  margin-top: 20px;
}
.list-article .list-container {
  width: 1200px;
  display: flex;
  justify-content: space-between;
}
.list-article .list-container .list-navbar {
  width: 300px;
}
.list-article .list-container .list-navbar .first-category {
  background-color: #1A5285;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 50px;
  box-sizing: border-box;
  color: #fff;
}
.list-article .list-container .list-navbar .first-category .category-top-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 16px;
}
.list-article .list-container .list-navbar .first-category .category-top-icon div {
  height: 2px;
  width: 20px;
  background-color: #fff;
}
.list-article .list-container .list-navbar .first-category .category-top-text {
  padding-left: 15px;
}
.list-article .list-container .list-navbar .second-category .second-category-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 55px;
  box-sizing: border-box;
  border-left: 1px solid #E7E7E7;
  border-right: 1px solid #E7E7E7;
  border-bottom: 1px solid #E7E7E7;
  padding-left: 70px;
}
.list-article .list-container .list-navbar .second-category .second-category-item .second-category-icon {
  width: 0px;
  height: 0px;
  border-right: 5px dashed transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px dashed #9C9C9C;
  border-top: 5px solid transparent;
  margin-right:3px;
}
.list-article .list-container .list-article-list {
  width: 880px;
}
.list-article .list-container .list-article-list .list-article-list-title {
  background-color: #ededed;
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  padding-left: 18px;
  display: flex;
  align-items: center;
  color: #000;
}
.list-article .list-container .list-article-list .list-article-container {
  height: auto;
  min-height: 450px;
}
.list-article .list-container .list-article-list .list-article-container .list-article-item {
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
  height: 45px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.list-article .list-container .list-article-list .list-article-container .list-article-title {
  width: calc(100% - 250px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
}
.list-article .list-container .list-article-list .list-article-container .list-article-date {
  width: 120px;
}
.paginate {
  display: flex;
  align-items: center;
  margin-top: 50px;
  justify-content: center;
  margin-bottom: 50px;
}
.paginate .paginate-number {
  padding: 7px 8px;
  background-color: #fff;
  color: #1A5285;
  border: 1px solid #1A5285;
  margin: 5px;
  border-radius: 3px;
}
.paginate .paginate-number:hover {
  padding: 7px 8px;
  background-color: #1A5285;
  border: 1px solid #1A5285;
  margin: 5px;
  border-radius: 3px;
  color: #fff;
}
