/* Reset：公共令牌 / 基础重置 / 头尾样式见 css/layout.css，本文件须在其后引入 */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "MiSans", "Source Han Sans CN", "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Heiti SC", sans-serif; font-family: var(--font);
  font-size: 14px;
  color: #18212d;
  background: #f4f9fe;
  line-height: 1.5;
}

@font-face {
  font-family: "Source Han Sans CN";
  font-style: normal;
  font-weight: 400;
  src: local("Source Han Sans CN Regular"), local("SourceHanSansCN-Regular");
}
@font-face {
  font-family: "Source Han Sans CN";
  font-style: normal;
  font-weight: 500;
  src: local("Source Han Sans CN Medium"), local("SourceHanSansCN-Medium");
}
@font-face {
  font-family: "Source Han Sans CN";
  font-style: normal;
  font-weight: 700;
  src: local("Source Han Sans CN Bold"), local("SourceHanSansCN-Bold");
}

/* Page */
.page-wrapper {
  width: 100%;
  background: #f4f9fe;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  padding: 24px 0 32px;
}

/* Breadcrumb */
.breadcrumb {
  width: 1200px;
  height: 28px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 18px;
}
.breadcrumb > * { margin-right: 8px; }
.breadcrumb > *:last-child { margin-right: 0; }
.breadcrumb__icon {
  width: 18px;
  height: 18px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.breadcrumb__item {
  font-size: 14px;
  line-height: 1.5714285714285714;
  color: #64748b;
  text-decoration: none;
}
.breadcrumb__item:hover { color: #1664ff; }
.breadcrumb__item--active {
  color: #1664ff;
  font-weight: 700;
}
.breadcrumb__sep {
  font-size: 14px;
  line-height: 1.5714285714285714;
  color: #64748b;
}

/* Main */
.main-container {
  width: 1200px;
  min-height: 848px;
  display: -ms-flexbox;
  display: flex;
}
.card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 8.75px rgba(11, 59, 120, 0.05);
  border: 1px solid transparent;
}

/* Sidebar */
.sidebar {
  width: 240px;
  min-height: 848px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  overflow: hidden;
  margin-right: 20px;
}
.sidebar__header {
  width: 240px;
  height: 96px;
  background: #1664ff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 20px 24px 18px;
}
.sidebar__title {
  font-size: 22px;
  line-height: 1.3636363636363635;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 3px;
}
.sidebar__subtitle {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
  letter-spacing: 0.96px;
}

/* Category menu */
.cat-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
.cat-item__header {
  height: 56px;
  padding: 0 24px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  cursor: pointer;
  transition: background 0.2s;
}
.cat-item__header:hover { background: #f8fbff; }
.cat-item__name {
  font-size: 16px;
  line-height: 1.5;
  color: #18212d;
  font-weight: 700;
}
.cat-item__arrow {
  width: 8px;
  height: 6px;
  color: #64748b;
  transition: transform 0.2s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cat-item.current > .cat-item__header { background: rgba(22, 100, 255, 0.12); }
.cat-item.current > .cat-item__header .cat-item__name {
  color: #1664ff;
  font-size: 18px;
  line-height: 1.5555555555555556;
  font-weight: 700;
}
.cat-item.current > .cat-item__header .cat-item__arrow {
  color: #1664ff;
  transform: rotate(180deg);
}

.subcat-list {
  display: none;
  padding: 8px 24px;
}
.cat-item.current > .subcat-list {
  display: block;
}
.subcat-item {
  font-size: 14px;
  line-height: 2.857142857142857;
  color: #18212d;
  cursor: pointer;
  transition: color 0.2s;
}
.subcat-item a {
  color: inherit;
  text-decoration: none;
}
.subcat-item:hover { color: #1664ff; }
.subcat-item.current { color: #1664ff; }

/* Content panel */
.content-panel {
  width: 940px;
  min-height: 848px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

/* Filters */
.filters {
  width: 940px;
  /* background: rgba(22, 100, 255, 0.10); */
  padding: 18px 24px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.filter-row {
  width: 892px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  min-height: 44px;
  margin-bottom: 14px;
}
.filter-row:last-child { margin-bottom: 0; }
.filter-row--keywords { min-height: 48px; }
.filter-label {
  width: 70px;
  font-size: 14px;
  line-height: 1.7142857142857142;
  color: #18212d;
  font-weight: 500;
  text-align: right;
  margin-right: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.filter-options {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.filter-options > * { margin-right: 12px; }
.filter-options > *:last-child { margin-right: 0; }
.filter-btn {
  min-width: 54px;
  height: 32px;
  padding: 0 12px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5714285714285714;
  color: #18212d;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  transition: all 0.2s;
  border: 1px solid transparent;
  background: transparent;
  font-family: inherit;
}
.filter-btn:hover {
  color: #1664ff;
  background: rgba(22, 100, 255, 0.05);
}
.filter-btn--active {
  background: #1664ff;
  color: #ffffff;
  font-weight: 500;
}
.filter-btn--active:hover { background: #1452d4; color: #ffffff; }

.date-range {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
}
.date-range > .date-input { margin-right: 12px; }
.date-range > .date-input:last-child { margin-right: 0; }
.date-input {
  width: 120px;
  height: 34px;
  background: #ffffff;
  border: 1px solid #dce7f3;
  border-radius: 6px;
  padding: 0 8px 0 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  cursor: pointer;
  transition: border-color 0.2s;
}
.date-input:hover { border-color: #1664ff; }
.date-input__field {
  width: 100%;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
  font-size: 14px;
  line-height: 1.4285714285714286;
  color: #18212d;
  font-family: inherit;
  cursor: pointer;
}
.date-input__field::-webkit-input-placeholder { color: #64748b; }
.date-input__field:-ms-input-placeholder { color: #64748b; }
.date-input__field::placeholder { color: #64748b; }
.date-input__icon { width: 16px; height: 16px; -ms-flex-negative: 0; flex-shrink: 0; }

.keyword-input {
  width: 320px;
  height: 38px;
  background: #ffffff;
  border: 1px solid #dce7f3;
  border-radius: 6px;
  padding: 0 10px 0 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  transition: border-color 0.2s;
}
.keyword-input.is-focus { border-color: #1664ff; }
.keyword-input:focus-within { border-color: #1664ff; }
.keyword-input__field {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  line-height: 1.5714285714285714;
  color: #18212d;
  width: 100%;
  font-family: inherit;
}
.keyword-input__field::-ms-input-placeholder { color: #64748b; }
.keyword-input__field::placeholder { color: #64748b; }
.keyword-input__icon {
  width: 18px;
  height: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
}

.action-btn {
  width: 76px;
  height: 38px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5714285714285714;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
  font-weight: 500;
  transition: all 0.2s;
}
.action-btn--primary {
  background: #1664ff;
  color: #ffffff;
}
.action-btn--primary:hover { background: #1452d4; }
.action-btn--default {
  background: #ffffff;
  color: #1664ff;
  border-color: #1664ff;
}
.action-btn--default:hover { background: #f0f6ff; }

/* Results */
.results {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 0 24px 8px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.announcement-list {
  width: 892px;
  padding-top: 0;
}
.announcement-item {
  width: 892px;
  padding: 18px 0 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  border-bottom: 1px solid #dce7f3;
  cursor: pointer;
  transition: background 0.2s;
}
.announcement-item > * { margin-bottom: 10px; }
.announcement-item > *:last-child { margin-bottom: 0; }
.announcement-item:hover { background: #fafcff; }
.announcement-item:last-child { border-bottom: none; }
.announcement-empty {
  padding: 60px 0;
  text-align: center;
  font-size: 14px;
  color: #64748b;
}
.announcement-title {
  width: 850px;
  font-size: 16px;
  line-height: 1.625;
  color: #18212d;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.announcement-meta {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.announcement-meta > * { margin-right: 24px; }
.announcement-meta > *:last-child { margin-right: 0; }
.meta-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.meta-group > * { margin-right: 8px; }
.meta-group > *:last-child { margin-right: 0; }
.meta-icon { width: 18px; height: 18px; -ms-flex-negative: 0; flex-shrink: 0; }
.meta-text {
  font-size: 14px;
  line-height: 1.5714285714285714;
  color: #64748b;
}
.meta-text--primary { color: #1664ff; }

/* Pagination (mricode.pagination) */
.pager {
  width: 892px;
  min-height: 56px;
  margin-top: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.pager .m-pagination-info {
  font-size: 14px;
  line-height: 1.5714285714285714;
  color: #64748b;
  margin-right: auto;
}
.pager .m-pagination-info > span { margin: 0 4px; color: #18212d; font-weight: 500; }
.pager .m-pagination-page {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.pager .m-pagination-page > li { list-style: none; margin-right: 10px; }
.pager .m-pagination-page > li > a {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #dce7f3;
  color: #18212d;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  transition: all 0.2s;
}
.pager .m-pagination-page > li > a:hover { border-color: #1664ff; color: #1664ff; }
.pager .m-pagination-page > li.active > a {
  border-color: #1664ff;
  color: #1664ff;
  font-weight: 500;
  background: #ffffff;
}
.pager .m-pagination-size { margin-right: 10px; }
.pager .m-pagination-size select {
  width: 96px;
  height: 38px;
  padding: 0 24px 0 10px;
  border-radius: 6px;
  border: 1px solid #dce7f3;
  color: #18212d;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #ffffff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6'%3E%3Cpath d='M4 0L0 6h8z' fill='%2364748b'/%3E%3C/svg%3E") no-repeat right 10px center;
  transition: border-color 0.2s;
}
.pager .m-pagination-size select:hover { border-color: #1664ff; }
.pager .m-pagination-size select::-ms-expand { display: none; }
.pager .m-pagination-jump {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.pager .m-pagination-jump::before {
  content: '\8DF3\81F3';
  font-size: 14px;
  color: #18212d;
  margin-right: 10px;
}
.pager .m-pagination-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.pager .m-pagination-group > input {
  width: 48px;
  height: 38px;
  border-radius: 6px;
  border: 1px solid #dce7f3;
  text-align: center;
  font-size: 14px;
  color: #18212d;
  font-family: inherit;
  outline: none;
  margin-right: 10px;
  transition: border-color 0.2s;
}
.pager .m-pagination-group > input:focus { border-color: #1664ff; }
.pager .m-pagination-jump.error > .m-pagination-group > input { border-color: #f5222d; }
.pager .m-pagination-group > button {
  width: 46px;
  height: 38px;
  border-radius: 6px;
  background: #1664ff;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  font-weight: 500;
  transition: background 0.2s;
}
.pager .m-pagination-group > button:hover { background: #1452d4; }

/* Responsive */
@media (max-width: 1240px) {
  .page-wrapper { padding: 16px; }
  .breadcrumb,
  .main-container { width: 100%; height: auto; }
  .main-container { -ms-flex-direction: column; flex-direction: column; }
  .sidebar { width: 100%; height: auto; margin-right: 0; margin-bottom: 16px; }
  .sidebar__header { width: 100%; }
  .cat-item__header { width: 100%; }
  .content-panel { width: 100%; height: auto; }
  .filters { width: 100%; height: auto; }
  .filter-row { width: 100%; }
  .announcement-list,
  .announcement-item,
  .announcement-title,
  .pager { width: 100%; }
  .announcement-title { white-space: normal; }
}
@media (max-width: 768px) {
  .filter-row { -ms-flex-wrap: wrap; flex-wrap: wrap; }
  .filter-label { text-align: left; width: auto; margin-bottom: 8px; }
  .keyword-input { width: 100%; margin-bottom: 10px; }
  .announcement-meta { -ms-flex-wrap: wrap; flex-wrap: wrap; }
  .announcement-meta > * { margin-right: 0; margin-bottom: 8px; width: 100%; }
  .pager { -ms-flex-wrap: wrap; flex-wrap: wrap; }
  .pager .m-pagination-info { width: 100%; margin-right: 0; margin-bottom: 10px; }
}

/* IE10/11 fixes */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card { border: 1px solid #e8eef5; }
}
