:root {
  --brand-red: #E60039;
  --brand-red-dark: #d90b39;
  --brand-blue: #183d9c;
  --text-main: #202124;
  --text-sub: #606266;
  --text-light: #909399;
  --line: #ebeef5;
  --panel: #ffffff;
  --bg: #f5f8fc;
  --shadow-soft: 0 14px 30px rgba(18, 31, 53, 0.08);
  --shadow-card: 0 8px 22px rgba(16, 24, 40, 0.05);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans SC", sans-serif;
  color: var(--text-main);
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.app-shell {
  min-height: 100vh;
  background:#F7F9FA;
}

.desktop-view,
.mobile-view {
  display: none;
}

.desktop-view.active,
.mobile-view.active {
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  height: 30px;
  background: #f5f7fa;
  color: #8b919d;
  font-size: 12px;
}

.topbar__inner,
.navbar__inner {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.topbar__links,
.topbar__actions,
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(235, 238, 245, 0.9);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
}

.navbar__inner {
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo__mark {
  color: #c4002d;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  transform: skewX(-12deg);
  line-height: 1;
}

.logo__sub {
  margin-top: -8px;
  font-size: 10px;
  letter-spacing: 0.4px;
  color: #8b919d;
}

.navbar__menu a {
  font-size: 14px;
  color: #303133;
  transition: color 0.2s ease;
}

.navbar__menu a:hover,
.navbar__menu a.is-active {
  color: var(--brand-red);
}

.navbar__search {
  width: 302px;
}

.navbar__search .el-input__inner {
  height: 40px;
  border-radius: 4px;
  border-color: #d9dde7;
  font-size: 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #01092D;
  /* background:
    linear-gradient(90deg, rgba(2, 17, 69, 0.98) 0%, rgba(4, 22, 91, 0.92) 52%, rgba(2, 16, 65, 0.95) 100%),
    url("./默认首页.jpg") center/cover no-repeat; */
}
.hero .hero__banner {
  width: 100%;
  height: 420px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.hero__content {
  position: relative;
  z-index: 1;
}

/* .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 40%, rgba(77, 157, 255, 0.55), transparent 18%),
    radial-gradient(circle at 82% 66%, rgba(77, 157, 255, 0.35), transparent 14%),
    linear-gradient(90deg, rgba(2, 17, 69, 0.92) 0%, rgba(2, 17, 69, 0.5) 45%, rgba(2, 17, 69, 0) 100%);
  pointer-events: none;
} */

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 24px;
  min-height: 420px;
  margin: 0 auto;
  padding: 18px 0 110px;
}

.hero__eyebrow {
  margin: 0 0 14px;
  margin-bottom: 4px;
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.hero__title {
  margin: 0;
  color: #FFFFFF;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
}

.hero__meta {
  margin: 22px 0 30px;
  color: #FFFFFF;
  font-size: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero__search, .m-search {
  display: flex;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  height: 48px;
  border: 1px solid #E60039;
}
.hero__search {
  width: 466px;
}
.m-search {
  width: 100%;
}
.hero__search .el-input, .hero__search .hero__search-input-wrap{
  width: calc(464px - 81px);
}
.hero__search-input-wrap{
  display: flex;
  align-items: center;
}
.hero__search-input-wrap .hero__clear-btn{
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.m-search .el-input, .m-search .hero__search-input-wrap{
  width: calc(100% - 56px);
}
.hero__search input, .m-search input {
  width: 100%;
  border: 0;
  outline: none;
  height: 100%;
  padding: 0 20px;
  border-radius: 4px 0 0 4px;
}
.hero__search input{
  font-size: 16px;
  color: #2A2B2E;
}
.m-search input {
  font-size: 14px;
  color:#9B9FA8;
}
.el-input--suffix .el-input__inner{
  padding-right: 50px;
}
.hero__search-btn {
  color: #fff;
  font-size: 16px;
  padding: 0;
  width: 82px;
  height: 100%;
  border-color: #E60039;
  background: #E60039;
  font-weight: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.m-search .hero__search-btn{
  width: 56px;
}
.hero__search .el-input__suffix, .m-search .el-input__suffix { 
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.hero__search .el-input__suffix .hero__clear-btn, 
.m-search .el-input__suffix .hero__clear-btn {
  cursor: pointer;
  width: 20px;
  height: 20px;
}
.hero__search-btn img{
  width: 16px;
  height: 16px;
}
.filter-panel {
  background: #fff;
}

.filter-card {
  position: relative;
  padding-top: 50px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.filter-head {
  height: 100px;
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 10px 30px 0px #0000000D;
  overflow: hidden;
  z-index: 31;
}

.filter-block {
  min-height: 58px;
  padding: 12px 34px 10px;
  position: relative;
  display: flex;
  justify-content: center;
}
.filter-block__title{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.filter-block + .filter-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 27px;
  width: 1px;
  height: 46px;
  background: #E3E5E6;
}

.filter-block__label {
  font-size: 16px;
  font-weight: 700;
  color: #2A2B2E;
  line-height: 1.5;
  display: flex;
  justify-content: flex-start;
}

.filter-block__value {
  font-size: 16px;
  color: #606266;
  display: flex;
  justify-content: center;
}

.desktop-picker-trigger {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #9B9FA8;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}

.desktop-picker-trigger i {
  color: #a3a8b3;
  font-size: 12px;
  transition: transform 0.2s ease;
}

.desktop-picker-trigger.is-open i {
  transform: rotate(180deg);
}

.filter-inline-panel {
  width: 100%;
  position: absolute;
  top: 50px;
  padding: 24px 44px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 10px 30px 0px #0000000D;
  z-index: 30;
}

.filter-inline-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.filter-inline-panel__title {
  font-size: 14px;
  font-weight: 600;
  color: #2a2b2e;
}

.filter-inline-panel__close {
  border: 0;
  background: transparent;
  color: #0175e8;
  font-size: 12px;
  line-height: 1;
  font-family: inherit;
  cursor: pointer;
}

.filter-inline-panel__options {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.filter-inline-panel__option {
  padding: 4px 12px;
  background: #fff;
  color: #606266;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;

}

.filter-inline-panel__option:hover,
.filter-inline-panel__option.is-active {
  border-color: rgba(1, 117, 232, 0.22);
  background: rgba(1, 117, 232, 0.08);
  border-radius: 8px;
  color: #0175e8;
}
.filter-inline-panel__option.is-disabled { 
  color:#9B9FA8;
}
.filter-inline-panel__option.is-disabled:hover {
  color:#9B9FA8;
  background: transparent !important;
  border-color: transparent !important;
}
.filter-tags {
  background: transparent;
  margin-top: 16px;
}

.filter-tags::before {
  content: "";
  display: block;
}

.filter-tags {
  border-radius: 4px;
}

.filter-tags {
  position: relative;
}

.filter-tags {
  overflow: hidden;
}

.filter-tags .tag-row {
  /* padding: 0 28px; */
}

.filter-tags .tag-row:first-child {
  /* padding-top: 16px; */
}

.filter-tags .tag-row:last-child {
  padding-bottom: 18px;
}

.filter-tags .tag-row + .tag-row {
  border-top: 1px solid #f3f5f7;
  margin-top: 12px;
  padding-top: 12px;
  background: #fff;
}

.tag-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

.tag-row + .tag-row {
  margin-top: 14px;
}

.tag-row__label {
  min-width: 48px;
  color: #292929;
  padding-top: 4px;
  font-size: 16px;
  
}

.tag-row__items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.tag-row__items--issues {
  min-width: 0;
}

.tag-row__items--issues.is-collapsed {
  max-height: 80px;
  overflow: hidden;
}

.tag-chip {
  padding: 6px 16px;
  color: #2A2B2E;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  line-height: 1.5;
  font-size: 16px;
}

.tag-chip.is-active,
.tag-chip:hover {
  color: #0174E8;
  font-weight: 700;
}
.tag-row__items .is-disabled,
.tag-row__items .is-disabled:hover {
  color: #9B9FA8;
  font-weight: 400;
}

.tag-chip-issue{
  border-radius: 4px;
  padding: 6px 16px;
  background: #F7F9FA;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #6A6B6D;
  cursor: pointer;
}

.tag-chip-issue.is-issue-active,
.tag-chip-issue:hover {
  color: #0175E8;
  background: rgba(1, 117, 232, 0.1);
  font-weight: 400;
}

.expand-link {
  margin-left: 12px;
  flex-shrink: 0;
  color: #0174E8;
  white-space: nowrap;
  cursor: pointer;
  font-size: 16px;
}

.content-section {
  padding: 0 0 44px;
}

.content-tabs {
  position: sticky;
  top: var(--sticky-top, 0px);
  z-index: 20;
  background: linear-gradient(90deg, #ECF8FF 0%, #EEF3FF 100%);
  margin-bottom: 24px;
  transform: translateZ(0);
}

.content-tabs__inner {
  display: flex;
  height: 60px;
}
.content-tabs__inner .content-tabs__item{
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color:#2A2B2E;
  padding: 6px 0px;
  margin: 0 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}

/* 移动端 tab 样式 */
.content-tabs--mobile {
  position: relative;
  top: auto;
  margin-bottom: 0;
  overflow-x: auto;
  scrollbar-width: none;
  z-index: 20;
}
.content-tabs--mobile::-webkit-scrollbar {
  display: none;
}
/* 移动端吸顶：JS 动态添加 */
.content-tabs--mobile.is-sticky-mobile {
  position: fixed;
  left: 0;
  right: 0;
  margin-bottom: 0;
}
.content-tabs--mobile .content-tabs__inner {
  height: 52px;
  gap: 16px;
  padding: 0 16px;
  flex-wrap: nowrap;
  min-width: fit-content;
}
.content-tabs--mobile .content-tabs__item {
  flex: none;
  height: 52px;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  color: #2A2B2E;
  font-size: 16px;
  position: relative;
}
.active-line{
  width: calc(100% - 32px);
  height: 4px;
  background: #0175E8;
  position: absolute;
  bottom: 0;
  left: 16px;
}
.is-tab-active{
  color: #0175E8 !important;
  font-weight: 700 !important;
}
.is-tab-active::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #0175E8;
}
.is-tab-disabled{
  color: #9B9FA8 !important;
  font-weight: 400 !important;
}
.is-tab-disabled:hover{
  color: #9B9FA8 !important;
  font-weight: 400 !important;
}

.content-tabs .el-tabs__header {
  margin: 0;
}

.content-tabs .el-tabs__nav-wrap {
  padding-left: 0;
}

.content-tabs .el-tabs__nav-scroll {
  display: flex;
  justify-content: flex-start;
}

.content-tabs .el-tabs__nav {
  float: none;
  display: inline-flex;
  align-items: center;
}

.content-tabs .el-tabs__nav-wrap::after {
  display: none;
}

.content-tabs .el-tabs__item {
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  color: #2A2B2E;
  padding: 0 14px;
}

.content-tabs .el-tabs__item:first-child {
  padding-left: 0;
}

.content-tabs .el-tabs__item:last-child {
  padding-right: 0;
}

.content-tabs .el-tabs__item.is-active {
  color: #0175E8;
  font-weight: 700;
}

.content-tabs .el-tabs__active-bar {
  background: #1f6bff;
  height: 3px;
  border-radius: 999px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 20px;
  align-items: start;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.article-card,
.side-card {
  background: #fff;
  border-radius: 4px;
}

.article-card {
  padding: 24px;
  height: 295px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}

.article-tags span {
  font-size: 14px;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1.5;
  background: #f3f6fb;
}

.tag-purple { color: #5D5FEF; background: rgba(93, 95, 239, 0.1) !important; }
.tag-blue { color: #0175E8; background: rgba(1, 117, 232, 0.1) !important; }
.tag-green { color: #15803D; background: rgba(21, 128, 61, 0.1) !important; }
.tag-orange { color: #D3882C; background: rgba(255, 143, 31, 0.12) !important; }
.tag-cyan { color: #26AFA4; background: rgba(38, 175, 164, 0.1) !important; }

.article-title {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  color: #2A2B2E;
  height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  word-break: break-all;
}

.article-desc {
  font-size: 16px;
  line-height: 1.5;
  color: #6A6B6D;
  height: 96px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  word-break: break-all;
}


/* 搜索关键词高亮 */
.search-highlight {
  background: rgba(230, 0, 57, 0.3);
  padding: 0 2px;
  border-radius: 2px;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #7a8090;
  font-size: 13px;
}

.author {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.author__avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  flex: none;
}
.author__avatar img{
  width: 100%;
  height: 100%;
}

.author__info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.author__name{
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #2A2B2E;
}

.author__role, .author__date, .article-reads{
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color:#6A6B6D;
}
.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 0 6px;
}
.el-pagination {
  display: flex;
  align-items: center
}

.pagination-wrap .el-pagination.is-background .btn-next,
.pagination-wrap .el-pagination.is-background .btn-prev,
.pagination-wrap .el-pagination.is-background .el-pager li {
  min-width: 30px;
  height: 40px;
  line-height: 40px;
  border-radius: 4px;
  border: 1px solid #E3E5E6;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  color: #2A2B2E;
}
.el-pagination button:disabled{
  border-color: #E3E5E6 !important;
  color: #E5E5E5 !important;
  cursor: not-allowed;
}
.el-pagination .btn-next .el-icon, .el-pagination .btn-prev .el-icon{
  font-weight: 400;
}
.pagination-wrap .el-pagination.is-background .el-pager li:not(.disabled).active{
  background: #E60039;
  color: #fff;
}
.pagination-wrap .el-pagination.is-background .el-pager li:not(.disabled):hover {
  border-color: #E60039;
  background: #fff;
  color: #E60039;
}
.pagination-wrap .el-pagination.is-background .el-pager .active:hover {
  border: none !important;
  background: #E60039 !important;
  color: #fff !important;
}
.side-column {
  display: grid;
  gap: 16px;
}

.side-card, .side-card-info {
  padding: 16px;
}

.side-card-info{
  display: grid;
  gap: 16px;
}

.side-card__title {
  font-size: 16px;
  font-weight: 700;
  color:#2A2B2E;
}

.side-links {
  display: grid;
  width: 100%;
}

.side-link, .side-link--toolkit {
  border-bottom: 1px solid #E3E5E6;
  min-height: 56px;
  display: flex;
  align-items: center;
  color: #2A2B2E;
  font-size: 16px;
  line-height: 1.5;
}
.side-link--toolkit{
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.side-link__title{
  max-width: calc(100% - 24px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.side-link__line{
  width: 20px;
  flex-shrink: 0;
}

.side-link:last-child, .side-link--toolkit:last-child {
  padding-bottom: 0;
}
.side-link:hover,
.side-link:focus,
.side-link.active, 
.side-link--toolkit:hover,
.side-link--toolkit:focus,
.side-link--toolkit.active {
  color: #2A2B2E;
}
.side-link-info{
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #2A2B2E;
}

.side-link__more {
  color: #0175E8;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}
.side-link__more:hover,
.side-link__more:focus,
.side-link__more.active{
  color: #0175E8;
}

.footer {
  background: #1f2024;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 24px;
}

.footer__top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 22px 0;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.footer__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.footer__body {
  padding: 28px 0 22px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) 180px;
  gap: 22px;
}

.footer__title {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer__links {
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.footer__social {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
  padding-top: 8px;
}

.footer__social-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0 28px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.9;
}

.mobile-shell {
  background: #f5f7fb;
}

.m-topbar {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  font-size: 12px;
  background: #fff;
  color: #202124;
}

.m-navbar {
  height: 60px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

.m-logo {
  color: #c4002d;
  font-size: 26px;
  font-weight: 800;
  transform: skewX(-12deg);
  letter-spacing: -0.8px;
}

.m-nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #4a4d57;
}

.m-hero {
  height: 278px;
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
  margin-top: 18px;
}
.m-hero .m-hero__banner{
  width: 100%;
  height: 278px;
  position: absolute;
  left: 0;
  top:0;
}

.m-hero__content {
  height: 198px;
  position: relative;
  z-index: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.m-hero__eyebrow {
  height: 26px;
  margin-bottom: 10px;
  line-height: 1;
  font-size: 20px;
  font-weight: 700;
}

.m-hero__title {
  height: 42px;
  margin-bottom: 20px;
  line-height: 1;
  font-size: 32px;
  font-weight: 700;
}

.m-hero__meta {
  margin: 10px 0 12px;
  font-size: 16px;
  line-height: 1;
}
.m-filter-bar {
  display: flex;
  align-items: center;
  background: #fff;
  padding-left: 12px;
  position: relative;
}
/* 移动端筛选栏吸顶 */
.m-filter-bar.is-sticky-mobile {
  position: fixed;
  left: 0;
  right: 0;
  padding-left: 12px;
  border-bottom: 1px solid #ebeef5;
}

.m-filter-scroll {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  padding: 15px 0;
  scrollbar-width: none;
}

.m-filter-scroll::-webkit-scrollbar {
  display: none;
}

.m-filter-item {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 16px;
  color: #292929;
  position: relative;
  cursor: pointer;
  border: 0;
  border-radius: 4px;
  background: #F7F9FA;
  padding: 4px 8px;
  white-space: nowrap;
  font-family: inherit;
  border: 1px solid transparent;
  height: 36px;
}
/* .m-filter-item:active {
  border: 1px solid #0175E8;
  background: rgba(1, 117, 232, 0.05);
  color: #0175E8;
} */

.m-filter-item.is-filter-active {
  border: 1px solid #0175E8;
  background: rgba(1, 117, 232, 0.05);
  color: #0175E8;
}

.m-filter-item .filter-icon:active {
  color: #0175E8 !important;
}

.m-filter-item i {
  color: #9aa3af;
  font-size: 12px;
}

.m-filter-item--action {
  width: 56px;
  height: 70px;
  border-radius: 0;
  background: #fff;
  padding: 0;
  color: #6b7280;
  box-shadow: -12px 0 20px -14px rgba(0, 0, 0, 0.28);
}

.m-filter-item--action:active { 
  border: 1px solid transparent;
}

.m-filter-item--action img {
  width: 18px;
  height: 16.5px;
}

.m-tab-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  background: #ECF8FF;
  padding: 0 16px;
  scrollbar-width: none;
}

.m-tab-row::-webkit-scrollbar {
  display: none;
}

.m-tab {
  flex: none;
  height: 52px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  color: #2A2B2E;
  font-size: 16px;
  white-space: nowrap;
}

.m-tab.is-active {
  color: #0175E8;
  border-bottom-color: #0175E8;
  font-weight: 700;
}

.m-content {
  padding: 20px 20px 40px 20px;
}

.m-card {
  background: #fff;
  border-radius: 4px;
  padding: 24px;
  box-shadow: none;
  gap: 16px;
}

.m-card + .m-card {
  margin-top: 20px;
}

.m-card .article-tags {
  margin-bottom: 12px;
  gap: 4px;
}

.m-card .article-tags span {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m-card .article-title {
  height: 45px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color:#2A2B2E;
}

.m-card .article-desc {
  min-height: auto;
  font-size: 14px;
  height: 80px;
  line-height: 1.5;
  color: #6A6B6D;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}

.m-card .article-meta {
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 8px;
}

.m-card .author__avatar {
  width: 24px;
  height: 24px;
}
.m-card .author__name{
  color: #2A2B2E;
}
.m-card .author__role, .m-card .author__date {
  color: #6A6B6D;
}
.m-card .author__avatar::before {
  left: 6px;
  top: 4px;
  width: 11px;
  height: 11px;
  box-shadow: 0 12px 0 1px #1a120f;
}

.m-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 0 2px;
  font-size: 14px;
  color: #2A2B2E;
}

.m-pagination__total {
  font-size: 14px;
  color: #6A6B6D;
}

.m-pagination__arrow {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E3E5E6;
  background: #fff;
  color: #6A6B6D;
  cursor: pointer;
  padding: 0;
  font-size: 15px;
}
.m-pagination__arrow:disabled {
  border-color: #E3E5E6 !important;
  color: #E5E5E5 !important;
  cursor: not-allowed;
}

.m-pagination__input {
  width: 68px;
  height: 30px;
  text-align: center;
  border: 1px solid #E3E5E6;
  border-radius: 4px;
  font-size: 14px;
  color: #2A2B2E;
  outline: none;
  padding: 0;
  -moz-appearance: textfield;
}
.m-pagination__input::-webkit-outer-spin-button,
.m-pagination__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.m-pagination__sep {
  display: flex;
  align-items: center;
}
.m-pagination__page__line{
  color: #C1C6CF;
  font-size: 25px;
  margin-right: 10px;
}
.m-pagination__page__total{
  color:#2A2B2E;
  font-size: 14px;
}

.m-side-card {
  margin-top: 20px;
  padding: 16px;
  border-radius: 4px;
  background: #fff;
}

.m-side-card .side-card__title {
  font-size: 16px;
  margin-bottom: 10px;
  color: #2A2B2E;
  font-weight: 700;
}

.m-side-card .side-link {
  font-size: 16px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: #2A2B2E;
}

.m-footer {
  margin-top: 14px;
  background: #1f2024;
  color: rgba(255, 255, 255, 0.8);
  padding: 0 16px 18px;
}

.m-footer__contacts {
  padding: 12px 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.m-footer__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 12px;
}

.m-footer__accordion {
  padding: 8px 0;
}

.m-footer__section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.m-footer__section:last-child {
  border-bottom: 0;
}

.m-footer__head {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  cursor: pointer;
}

.m-footer__links {
  display: grid;
  gap: 8px;
  padding: 0 0 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}

.m-footer__social {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 12px 0 10px;
}

.m-footer__legal {
  text-align: center;
  font-size: 10px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  padding-top: 8px;
}

.icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  display: inline-block;
}

.mobile-popup {
  padding: 18px 0 24px;
  border-radius: 18px 18px 0 0;
  background: #fff;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.mobile-popup__head {
  position: relative;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  padding-bottom: 24px;
  color: #2A2B2E;
}

.mobile-popup__close {
  position: absolute;
  right: 10px;
  top: -10px;
  line-height: 1;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.mobile-popup__body {
  padding: 0 20px;
  flex: 1;
  overflow-y: auto;
}

.mobile-popup__group + .mobile-popup__group {
  margin-top: 24px;
}

.mobile-popup__label {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #2A2B2E;
}

.mobile-popup__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mobile-popup__chips .tag-chip-item {
  color:#2A2B2E;
  background: #F7F9FA;
}

.tag-chip-all{
  color: #2A2B2E;
  background: #F7F9FA;
}

.tag-chip-list{
  padding: 6px 12px !important;
}

.mobile-popup__chips .tag-chip-common{
  min-width: 66px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid transparent;
}
.mobile-popup__chips .tag-chip-common.is-active-common {
  background: rgba(1, 117, 232, 0.05);
  color: #0175E8;
}
.mobile-popup__chips .tag-chip-common.is-disabled-common {
  background: #F7F9FA;
  color: #9B9FA8;
}

.mobile-popup__chips.is-list .tag-chip-common.is-active-common {
  background: rgba(1, 117, 232, 0.05);
  color: #0175E8;
  border: 1px solid rgba(1, 117, 232, 1)
}
.mobile-popup__chips.is-list .tag-chip-common.is-disabled-common {
  background: #F7F9FA;
  color: #9B9FA8;
}


.mobile-popup__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px 20px 0;

}

.mobile-popup__actions button {
  height: 46px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

.mobile-popup__actions .primary {
  background: var(--brand-red);
  border: 1px solid var(--brand-red);
  color: #fff;
}

.mobile-popup__actions .ghost {
  background: #fff;
  border: 1px solid var(--brand-red);
  color: var(--brand-red);
}
.no-articles{
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.no-articles .pc-articles__img{
  width: 428px;
  height: 240px;
}
.no-articles .h5-articles__img{
  max-width: 367px;
  height: 207px;
}
.no-articles__title{
  font-weight: 700;
  font-size: 20px;
  line-height: 125%; 
  color:#2A2B2E;
  margin-bottom: 12px;
}
.no-articles__desc{
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color:#6A6B6D;
}
.back-home{
  color:#E60039;
  text-decoration: underline;
  cursor: pointer;
  margin-right: 5px;
}
.toast-container{
  background: rgba(42, 43, 46, 0.6);
  color: #fff;
  padding: 12px 20px;
  border-radius: 4px;
  position: fixed;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
.el-loading-parent--relative{
  height: 100%;
}
@media (max-width: 1279px) {
  .hero__inner,
  .topbar__inner,
  .navbar__inner {
    width: calc(100% - 32px);
  }

  .hero__title {
    font-size: 46px;
  }

  .content-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .side-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .hero{
    display: none;
  }
  .m-hero{
    display: block;
  }
  .desktop-view.active, .pc-articles__img {
    display: none;
  }

  .mobile-view.active, .h5-articles__img {
    display: block;
  }
  .no-articles{
    height: 380px;
  }
  .no-articles__desc{
    padding: 0 20px;
  }

}

@media (min-width: 992px) {
  .hero{
    display: block;
  }
  .m-hero{
    display: none;
  }
  .desktop-view.active, .pc-articles__img {
    display: block;
  }
  .hero__banner{
    max-width: 1920px !important;
  }
  .mobile-view.active, .h5-articles__img {
    display: none;
  }
  .no-articles{
    height: 390px;
  }
}
