/* 站点主题样式 */
:root{
  --primary:#2c7be5;
  --primary-dark:#1f5fb3;
  --bg:#f7fafc;
  --text:#1f2937;
  --muted:#64748b;
  --border:#e5e7eb;
}
*{box-sizing:border-box}
html,body{height:100%;}
body{
  margin:0;
  font-family:"Segoe UI","PingFang SC","Microsoft YaHei",system-ui,-apple-system,sans-serif;
  color:var(--text);
  background:var(--bg);
  display:flex;
  flex-direction:column;
  min-height:100vh;
}
.container{max-width:clamp(1100px,90vw,1600px);margin:0 auto;padding:0 16px}
.container-90{max-width:calc(100vw - 200px);margin:0 auto;padding:0 32px;min-height:calc(100vh - 220px)}
.container-60{width:60%;margin:0 auto;padding:0 16px}

/* 顶部 */
.site-header{position:relative;background:#fff;border-bottom:1px solid var(--border)}
.header-image{display:block;width:100%;height:clamp(64px,7vw,120px);object-fit:cover}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:64px}
.brand{display:flex;flex-direction:column;line-height:1}
.brand-cn{font-weight:700;color:var(--primary)}
.brand-en{font-size:.8rem;color:var(--muted)}
.top-nav{display:flex;gap:16px}
.top-nav a{color:var(--text);text-decoration:none;padding:8px 10px;border-radius:8px;font-size:clamp(14px,1.2vw,18px)}
.top-nav a:hover{background:#f1f5f9}
.top-nav a.active{color:#fff;background:var(--primary)}
.menu-toggle{display:none;border:0;background:transparent;font-size:22px}

/* 头图 */
.hero{position:relative;margin:0 0 4.8px 0}
.banner-image{display:block;width:100%;height:clamp(132px,16.8vw,336px);object-fit:fill}
.hero-content{display:none}
.hero-bg{position:absolute;inset:0;pointer-events:none}
.hero-content{position:relative;padding:48px 0 56px; text-align:center}
.hero-title{margin:0 0 8px;font-size:32px;letter-spacing:1px}
.hero-sub{margin:0;color:var(--muted);font-size:18px}
.nav-under-hero{background:#1893e3;border-bottom:none}
.nav-under-hero .top-nav{display:flex;justify-content:center;flex-wrap:wrap;gap:clamp(12px,2vw,28px);row-gap:clamp(8px,1.2vw,16px);padding:clamp(4.23px,0.675vw,7.56px) 0}
.nav-under-hero .top-nav a{color:#fff;font-weight:700;text-decoration:none;padding:clamp(8px,1.2vw,12px) clamp(12px,1.6vw,18px);border-radius:8px;font-size:clamp(15px,1.3vw,20px)}
.nav-under-hero .top-nav a:hover{background:rgba(255,255,255,.15)}
.nav-under-hero .top-nav a.active{background:rgba(255,255,255,.25)}
.menu-toggle{display:none;border:0;background:transparent;font-size:22px}

/* 头图 */
.hero{position:relative}
.hero-bg{position:absolute;inset:0;pointer-events:none}
.hero-content{position:relative;padding:48px 0 56px; text-align:center}
.hero-title{margin:0 0 8px;font-size:32px;letter-spacing:1px}
.hero-sub{margin:0;color:var(--muted);font-size:18px}

/* 首页卡片 */
.home .cards{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;padding:24px 0}
.card{background:#fff;border:1px solid var(--border);border-radius:14px;padding:18px;box-shadow:0 6px 18px rgba(17,24,39,.06)}
.card h3{margin:0 0 8px}
.card p{color:var(--muted)}
.btn{display:inline-block;margin-top:10px;padding:8px 12px;border-radius:10px;background:var(--primary);color:#fff;text-decoration:none}
.btn:hover{background:var(--primary-dark)}

/* 内容页布局 */
.content-layout{display:grid;grid-template-columns:280px 1fr;gap:16px;padding:24px 0;flex:1}
.sidebar{background:#fff;border:1px solid var(--border);border-radius:14px;overflow:hidden}
.sidebar .title{padding:12px 16px;border-bottom:1px solid var(--border);font-weight:600}
.sidebar .doc-list{list-style:none;margin:0;padding:8px}
.sidebar .doc-list li{margin:0}
.sidebar .doc-list a{display:flex;align-items:center;gap:8px;padding:10px 12px; border-radius:10px; text-decoration:none;color:var(--text)}
.sidebar .doc-list a:hover{background:#f1f5f9}
.sidebar .doc-list a.active{background:rgba(44,123,229,.12);color:var(--primary);font-weight:600}
.sidebar .doc-list .badge{margin-left:auto;color:#8b5cf6;background:#ede9fe;border-radius:8px;padding:2px 8px;font-size:.75rem}

.viewer{background:#fff;border:1px solid var(--border);border-radius:14px;box-shadow:0 6px 18px rgba(17,24,39,.06);min-height:420px;display:flex;flex-direction:column}
.container-90 .viewer{min-height:calc(100vh - 260px)}
.viewer.full-width{margin:24px 0;min-height:calc(100vh - 300px)}
.viewer .toolbar{display:flex;align-items:center;gap:8px;padding:8px 12px;border-bottom:1px solid var(--border);position:relative}
.viewer .toolbar .btn{margin-left:auto}
.viewer .toolbar .title{font-weight:600}
.viewer iframe, .viewer embed{flex:1;border:0;border-radius:0 0 14px 14px;background:#fff;width:100%}
.viewer .empty{flex:1;display:flex;align-items:center;justify-content:center;color:var(--muted)}

/* PDF查看器专用样式 */
#pdfViewer{
  background:#fff !important;
  background-color:#ffffff !important;
  width:100%;
  height:100%;
  min-height:600px;
  border:none;
}

.site-footer{padding:24px 0;color:var(--muted);border-top:1px solid var(--border);background:#fff;margin-top:auto;text-align:center}

/* 响应式 */
@media (max-width:960px){
  .home .cards{grid-template-columns:1fr 1fr}
}
@media (max-width:720px){
  .header-image{height:64px}
  .banner-image{height:108px}
  .top-nav{display:none}
  .menu-toggle{display:block}
  .home .cards{grid-template-columns:1fr}
  .content-layout{grid-template-columns:1fr}
  .sidebar{position:fixed;left:0;top:64px;bottom:0;width:80%;max-width:320px;transform:translateX(-100%);transition:.25s;box-shadow:10px 0 20px rgba(17,24,39,.1);z-index:20}
  .sidebar.open{transform:translateX(0)}
  body.sidebar-open{overflow:hidden}
}
/* 1366×768 优化：保持顶栏一行不换行 */
@media (max-width:1366px){
  .nav-under-hero .top-nav{flex-wrap:nowrap;gap:12px;row-gap:0;padding:4px 0}
  .nav-under-hero .top-nav a{font-size:clamp(14px,1.05vw,16px);padding:6px 10px}
}
/* 宽屏优化断点 */
@media (min-width:1440px){
  .home .cards{grid-template-columns:repeat(4,1fr)}
  .content-layout{grid-template-columns:320px 1fr}
  .viewer{min-height:600px}
}
@media (min-width:1920px){
  .home .cards{grid-template-columns:repeat(4,1fr)}
  .content-layout{grid-template-columns:340px 1fr}
  .viewer{min-height:720px}
}
@media (min-width:2560px){
  .home .cards{grid-template-columns:repeat(5,1fr)}
  .content-layout{grid-template-columns:360px 1fr}
  .container{max-width:clamp(1200px,80vw,1800px)}
}
@media (min-width:3840px){
  html{font-size:18px}
  .home .cards{grid-template-columns:repeat(5,1fr)}
  .content-layout{grid-template-columns:420px 1fr}
  .viewer{min-height:880px}
  /* 4K下保持更舒适的导航间距 */
  .nav-under-hero .top-nav{gap:clamp(20px,1.2vw,36px);padding:clamp(5.85px,0.504vw,9.27px) 0}
}
/* 首页图片走马灯 */
.gallery-marquee {
  padding: 16px 0;
  background: #f8f9fa;
  overflow: hidden;
}

/* 首页专属：缩小走马灯与上方栏目间距 */
.home .gallery-marquee {
  padding: 16px 0;
}

.gallery-marquee .section-divider {
  height: 2px;
  background: linear-gradient(90deg, #4a90e2, #e3f2fd);
  border-radius: 1px;
  margin-bottom: 16px;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  gap: 20px;
}

.marquee-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.marquee-item img {
  height: 200px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.marquee-item img:hover {
  transform: scale(1.05);
}

.marquee-caption {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /* 限制显示13个字符 */
  max-width: 13em;
  font-family: inherit;
  line-height: 1.4;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 响应式设计 */
@media (max-width: 768px) {
  .marquee-item img {
    height: 150px;
  }
  
  .marquee-caption {
    font-size: 12px;
    max-width: 11em;
  }
}
.marquee{overflow:hidden}
.marquee-track{display:flex;align-items:center;gap:clamp(16px,1.6vw,28px);animation:marqueeScroll var(--marquee-duration,40s) linear infinite;will-change:transform}
.gallery-marquee img{height:clamp(120px,18vw,220px);width:auto;object-fit:contain;border-radius:10px;box-shadow:0 6px 18px rgba(17,24,39,.08);background:#fff}
.marquee:hover .marquee-track{animation-play-state:paused}
@keyframes marqueeScroll{from{transform:translateX(0)}to{transform:translateX(calc(-1 * var(--scroll-distance, 50%)))}}
@media (max-width:720px){
  .gallery-marquee h2{font-size:18px}
  .gallery-marquee img{height:clamp(90px,24vw,140px)}
}
/* 首页新内容栏目样式 */
.content-sections{padding:4.8px 0 24px 0}
.home .content-sections{padding:4.8px 0 8px 0}
.section-row{display:grid;grid-template-columns:1fr 1fr;gap:clamp(24px,3vw,18px)}
.content-section{background:#fff;border:1px solid var(--border);border-radius:14px;padding:clamp(18px,2.5vw,16px);box-shadow:0 6px 18px rgba(17,24,39,.06)}
.section-title{margin:0 0 12px;font-size:clamp(18px,2.2vw,24px);color:#4a90e2;font-weight:600}
.section-divider{height:2px;background:linear-gradient(90deg,#4a90e2,#e3f2fd);margin-bottom:16px;border-radius:1px}
.section-content{position:relative}
.section-image{border-radius:8px;box-shadow:0 4px 12px rgba(17,24,39,.1)}
.section-image.left-top{float:left;width:clamp(120px,20vw,180px);height:auto;margin:0 16px 12px 0}
/* 首页“成果第一完成人”图片统一缩小 20% */
.home .section-image.left-top{width:clamp(120px,60vw,242px)}
.section-image.bottom{display:block;width:100%;max-width:600px;height:auto;margin:16px auto 0}
.home .section-image.bottom{max-width:648px}
.section-text{line-height:1.8;color:var(--text)}
.section-text p{margin:0 0 12px;text-align:justify;text-indent:2em;
font-size: 1.1rem;
      color: #333;
      margin-bottom: 1.5rem;
}
.section-text p:last-child{margin-bottom:0}
.video-section-content{
  display:flex;
  flex-direction:column;
  gap:16px
}
.video-player-card{
  overflow:hidden;
  border-radius:14px;
  background:#0f172a;
  box-shadow:0 10px 28px rgba(15,23,42,.18)
}
.home-video-player{
  display:block;
  width:100%;
  aspect-ratio:16 / 9;
  background:#000
}
.video-section-text{
  line-height:1.8;
  color:var(--text)
}
.video-section-text p{
  margin:0 0 12px;
  text-align:justify;
  text-indent:2em;
  font-size:1.05rem;
  color:#333
}
.video-section-text p:last-child{
  margin-bottom:0
}
@media (max-width:960px){
  .section-row{grid-template-columns:1fr;gap:24px}
  .section-image.left-top{width:clamp(100px,25vw,140px);margin-right:12px}
  /* 首页在此断点缩小 20% */
.home .section-image.left-top{width:clamp(100px,100vw,187px)}
}
@media (max-width:720px){
  .section-image.left-top{float:none;display:block;width:100%;max-width:200px;margin:0 auto 12px}
  /* 首页移动端最大宽度缩小 20% */
.home .section-image.left-top{max-width:180px}
  .section-text{text-align:left}
}

/* 首页布局细化：缩小两栏间距并略微扩大宽度 */
.container.home{max-width:clamp(1200px,92vw,1680px)}
.container.home .section-row{gap:clamp(16px,2vw,32px)}

/* 成果完成人页面链接样式 */
.completers-link {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

.completers-link:hover {
  background: linear-gradient(135deg, #357abd, #2c5f94);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

.completers-link:active {
  transform: translateY(0);
}

/* 成果完成人页面专用样式 */
.completers-page {
  background: #f8f9fa;
}

.completers-content {
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  margin: 24px 0;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.06);
}

.completers-title {
  color: #4a90e2;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 16px;
}

.completer-section {
  margin-bottom: 32px;
}

.completer-section h3 {
  color: #357abd;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  border-left: 4px solid #4a90e2;
  padding-left: 12px;
}

.completer-info {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
  border-left: 4px solid #4a90e2;
}

.completer-name {
  font-size: 18px;
  font-weight: 600;
  color: #2c5f94;
  margin-bottom: 8px;
}

.completer-details {
  color: #666;
  line-height: 1.6;
}

.team-features {
  background: linear-gradient(135deg, #f0f7ff, #e3f2fd);
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
}

.team-features h3 {
  color: #2c5f94;
  margin-bottom: 16px;
  border-left: none;
  padding-left: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  background: #fff;
  margin-bottom: 8px;
  padding: 12px 16px;
  border-radius: 6px;
  border-left: 3px solid #4a90e2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .completers-content {
    padding: 20px;
    margin: 16px 0;
  }
  
  .completers-title {
    font-size: 24px;
  }
  
  .completer-section h3 {
    font-size: 18px;
  }
  
  .completer-info {
    padding: 16px;
  }
  
  .team-features {
    padding: 20px;
  }
}
/* 两侧快捷按钮 */
.quick-nav{position:fixed;top:clamp(140px,24vh,320px);z-index:30;display:flex;flex-direction:column;gap:12px}
.quick-nav.left{left:12px}
.quick-nav.right{right:12px}
.quick-nav a{display:flex;align-items:center;gap:10px;padding:10px 12px;background:#fff;color:var(--text);text-decoration:none;border:1px solid var(--border);border-radius:12px;box-shadow:0 6px 18px rgba(17,24,39,.08);font-weight:600;white-space:nowrap}
.quick-nav a .icon{display:inline-flex;align-items:center;justify-content:center;width:26px;height:26px;border-radius:50%;background:linear-gradient(135deg,#4a90e2,#2c7be5);color:#fff;font-size:14px;flex:0 0 26px}
.quick-nav.left a:hover{transform:translateX(2px);background:#f8fbff;border-color:#dbeafe}
.quick-nav.right a:hover{transform:translateX(-2px);background:#f8fbff;border-color:#dbeafe}

/* 在超宽屏下，按钮保持适中大小 */
@media (min-width:1920px){
  .quick-nav a{padding:12px 14px;border-radius:14px}
  .quick-nav a .icon{width:28px;height:28px;font-size:15px}
}
/* 移动端隐藏（避免遮挡内容），如需显示可改为底部工具条样式 */
@media (max-width:960px){
  .quick-nav{display:none}
}

/* 首页专业群简介与新闻 */
.home-info-news{
  display:flex;
  justify-content:space-between;
  align-items:stretch;
  gap:28px;
  margin:0 auto 16px;
  padding:22px 24px;
  background:#fff;
  box-shadow:0 0 10px rgba(0,0,0,.05)
}
.home-info-panel,
.home-news-panel{
  flex:0 0 calc(50% - 20px);
  min-width:0;
  display:flex;
  flex-direction:column
}
.home-info-panel{
  justify-content:flex-start
}
.home-feature-card{
  display:block;
  flex:1;
  padding:0;
  background:transparent;
  border:none;
  box-shadow:none;
  text-decoration:none;
  overflow:hidden;
  min-height:clamp(132px,13.2vw,192px);
  transition:transform .2s ease
}
.home-feature-card:hover{
  transform:translateY(-2px)
}
.home-feature-image-wrap{
  width:100%;
  height:100%
}
.home-feature-image-wrap img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover
}
.home-info-content{
  display:flex;
  gap:16px;
  flex:1
}
.home-info-tabs{
  display:flex;
  flex-direction:column;
  gap:8px;
  width:136px
}
.home-tab-item{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  min-height:82px;
  padding:8px 5px;
  border:1px dashed #4aa2eb;
  border-radius:5px;
  background:#eaf4fc;
  color:#0780de;
  text-align:center;
  text-decoration:none;
  transition:transform .2s ease,box-shadow .2s ease,color .2s ease
}
.home-tab-item:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 18px rgba(7,128,222,.12);
  color:#0567b6
}
.home-tab-item img{
  width:28px;
  margin-bottom:4px
}
.home-info-main{
  flex:1;
  display:flex;
  flex-direction:column
}
.home-section-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  border-bottom:2px solid #0780de;
  padding-bottom:8px;
  margin-bottom:14px
}
.home-section-header h3{
  margin:0;
  font-size:20px;
  color:#0780de
}
.home-more-link{
  font-size:12px;
  color:#999;
  text-decoration:none
}
.home-more-link:hover{
  color:#0780de
}
.home-info-text{
  flex:1;
  font-size:14px;
  color:#666;
  line-height:1.72
}
.home-info-text p{
  margin:0;
  text-indent:2em
}
.home-info-text p + p{
  margin-top:8px
}
.home-info-text-strong{
  font-weight:700;
  color:#000
}
.home-news-content{
  display:flex;
  gap:16px;
  flex:1;
  align-items:flex-start
}
.home-news-featured{
  flex:0 0 42%;
  max-width:42%;
  min-width:0;
  display:flex;
  flex-direction:column
}
.home-news-featured-link{
  display:flex;
  flex-direction:column;
  width:100%;
  color:inherit;
  text-decoration:none
}
.home-news-featured-link:hover{
  text-decoration:none
}
.home-news-featured img{
  width:100%;
  height:206px;
  object-fit:cover;
  display:block;
  margin-bottom:10px;
  border-radius:12px;
  background:linear-gradient(180deg,#f5faff 0%,#e9f3fc 100%);
  box-shadow:0 10px 24px rgba(7,83,142,.12)
}
.home-news-featured h4{
  font-size:15px;
  line-height:1.55;
  margin:0;
  color:#1f3550;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
  min-height:44px
}
.home-news-featured p{
  display:none
}
.home-news-dots{
  display:flex;
  justify-content:center;
  gap:5px;
  margin-top:8px
}
.home-news-dots .dot{
  width:6px;
  height:6px;
  border:0;
  padding:0;
  border-radius:50%;
  background:#ccc;
  cursor:pointer
}
.home-news-dots .dot.active{
  background:#0780de
}
.home-news-list{
  flex:1;
  min-width:0;
  list-style:none;
  margin:0;
  padding:0
}
.home-news-list li{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  margin-bottom:8px;
  font-size:14px;
  line-height:1.55;
  position:relative
}
.home-news-list li a{
  position:relative;
  display:block;
  flex:1;
  min-width:0;
  max-width:calc(100% - 72px);
  padding-left:15px;
  color:#333;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  text-decoration:none
}
.home-news-list li a::before{
  content:"•";
  position:absolute;
  left:0;
  color:#0780de
}
.home-news-list li a:hover,
.home-news-featured-link:hover h4{
  color:#0780de
}
.home-news-list li .date{
  flex-shrink:0;
  color:#999;
  font-size:14px;
  white-space:nowrap
}
.home-news-list li a:hover::after,
.home-news-list li a:focus-visible::after{
  content:attr(data-full-title);
  position:absolute;
  left:0;
  top:calc(100% + 8px);
  z-index:20;
  max-width:420px;
  padding:10px 12px;
  border-radius:10px;
  background:rgba(19,43,69,.95);
  color:#fff;
  font-size:13px;
  line-height:1.7;
  white-space:normal;
  word-break:break-word;
  box-shadow:0 10px 24px rgba(9,39,67,.18)
}

/* 新闻列表页 */
.news-list-page .news-archive{
  padding:24px 0 40px
}
.news-list-page .news-archive-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:22px;
  box-shadow:0 6px 18px rgba(17,24,39,.06)
}
.news-list-page .news-archive-header{
  margin-bottom:18px
}
.news-list-page .news-archive-header h1{
  margin:0;
  font-size:24px;
  color:#4a90e2
}
.news-archive-list{
  list-style:none;
  margin:0;
  padding:0;
  border:1px solid #d7e8f7;
  border-radius:10px;
  overflow:hidden;
  background:#fff
}
.news-archive-list li{
  display:grid;
  grid-template-columns:170px minmax(0,1fr) 160px;
  align-items:center;
  column-gap:18px;
  padding:14px 18px;
  border-bottom:1px solid #e8f1fa
}
.news-archive-list li:last-child{
  border-bottom:none
}
.news-archive-header-row{
  background:#6c9bcf;
  color:#fff;
  font-size:15px;
  font-weight:700
}
.news-archive-major,
.news-archive-date{
  font-size:14px;
  line-height:1.7
}
.news-archive-major{
  color:#1f3550;
  font-weight:600
}
.news-archive-header-row .news-archive-major,
.news-archive-header-row .news-archive-date,
.news-archive-header-row .news-archive-title{
  color:#fff
}
.news-archive-title{
  min-width:0;
  font-size:14px;
  line-height:1.7;
  color:#1f3550;
  font-weight:600
}
.news-archive-list li a{
  min-width:0;
  color:#31465a;
  font-size:14px;
  line-height:1.75;
  text-decoration:none;
  word-break:break-word
}
.news-archive-list li a:hover{
  color:#0780de;
  text-decoration:underline
}
.news-archive-date{
  color:#6f8295;
  white-space:nowrap;
  text-align:right
}
.news-archive-empty{
  display:block!important;
  padding:28px 20px!important;
  color:#6f8295;
  text-align:center
}
@media (max-width:960px){
  .home-info-news{
    flex-direction:column;
    padding:18px
  }
  .home-info-panel,
  .home-news-panel{
    flex:1 1 auto
  }
  .home-news-content{
    flex-direction:column
  }
  .home-news-featured{
    max-width:none
  }
  .home-feature-card{
    min-height:156px
  }
  .news-archive-list li{
    grid-template-columns:120px minmax(0,1fr) 120px;
    column-gap:12px;
    padding:12px 14px
  }
}
@media (max-width:720px){
  .home-info-news{
    padding:16px
  }
  .home-feature-card{
    min-height:120px
  }
  .home-feature-image-wrap{
    width:100%
  }
  .home-feature-image-wrap img{
    height:100%
  }
  .news-list-page .news-archive-card{
    padding:16px
  }
  .news-archive-list li{
    grid-template-columns:1fr;
    row-gap:6px
  }
  .news-archive-header-row{
    display:none
  }
  .news-archive-major,
  .news-archive-date{
    text-align:left
  }
}
