.file-banner {
  height: 200px;
  background: top center / cover url(../img/file-banner.png);
}

.file-database-wrapper {
  box-shadow: 0px 0px 12px 0px rgba(10, 10, 10, 0.15);
}

.file-database-search {
  display: flex;
  line-height: 42px;
  color: #000;
  font-size: 18px;
}
.file-database-search input {
  border: 1px solid #e5e5e5;
  margin: 0 20px 0 10px;
  padding: 0 8px;
  color: #333;
  flex: 1;
}
.file-database-nav {
  /* border-bottom: 2px solid #e3e3e3; */
  justify-content: space-around;
  padding-bottom: 20px;
}
.file-database-nav .nav-link {
  font-size: 22px;
  color: #333;
  padding: 10px 25px;
}
.file-database-nav .nav-link.active {
  color: #fff;
  background-color: #0187e6;
  border-radius: 4px;
  position: relative;
}
.file-database-nav .nav-link.active::after {
  content: "";
  position: absolute;
  border-top: 12px solid #0187e6;
  border-left: 12.5px solid transparent;
  border-right: 12.5px solid transparent;
  bottom: -12px;
  left: calc(50% - 12.5px);
}
.category-select-wrapper {
  display: flex;
}
.category-select-wrapper .title {
  flex-shrink: 0;
  width: 90px;
  padding-right: 10px;
  font-size: 18px;
  color: #0070bf;
  line-height: 38px;
}
.cate-list-wrapper {
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  color: #333333;
}
.cate-list-wrapper .item {
  padding: 6px 16px;
  border: 1px solid transparent;
}
.cate-list-wrapper .item.active {
  position: relative;
  border: 1px solid #0070bf;
}
.cate-list-wrapper .item.active::before {
  position: absolute;
  content: "\e677";
  font-family: "iconfont";
  color: #fff;
  bottom: -2px;
  right: 0;
  font-size: 12px;
  z-index: 999;
}
.cate-list-wrapper .item.active::after {
  content: "";
  position: absolute;
  border-right: 11px solid #0070bf;
  border-bottom: 11px solid #0070bf;
  border-top: 11px solid transparent;
  border-left: 11px solid transparent;
  bottom: 0;
  right: 0;
}

.file-database-list .entry {
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}
.file-database-list .entry .title {
  font-size: 18px;
  line-height: 36px;
  color: #000;
  margin-bottom: 10px;
}
.file-database-list .entry .title .iconfont {
  color: #0187e6;
  font-size: 20px;
  line-height: 36px;
  padding-right: 8px;
}
.file-database-list .entry .info {
  font-size: 16px;
  color: #999;
}
.file-database-list .entry .info span {
  display: inline-block;
  margin-right: 18px;
}

@media screen and (max-width: 991.9px) {
  .file-database-search {
    flex-wrap: wrap;
  }
  .file-database-search input {
    flex: 1 1 100%;
  }
  .file-database-search .btn-primary {
    margin-top: 10px;
    width: 100%;
  }
}

@media screen and (max-width: 767.9px) {
  .category-select-wrapper {
    flex-wrap: wrap;
  }
  .category-select-wrapper .title {
    width: 100%;
  }
}
