:root{
  --show-bg:#070d1b;
  --show-card:#0d1628;
  --show-card-2:#101c33;
  --show-text:#e8efff;
  --show-muted:#99abd0;
  --show-primary:#3b82f6;
  --show-cyan:#22d3ee;
  --show-violet:#8b5cf6;
  --show-line:rgba(173,192,228,.16);
  --show-shadow:0 18px 45px rgba(0,0,0,.30);
}

.show-page{
  background:
    radial-gradient(1100px 320px at 10% -10%, rgba(59,130,246,.16), transparent 55%),
    radial-gradient(900px 260px at 90% 0%, rgba(34,211,238,.10), transparent 55%),
    var(--show-bg);
  color:var(--show-text);
}

.show-container{
  width:min(1200px,92%);
  margin:0 auto;
}

/* hero */
.show-hero{
  padding:56px 0 30px;
}

.show-hero__wrap{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:24px;
  align-items:center;
}

.show-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(34,211,238,.30);
  background:rgba(34,211,238,.06);
  color:#8eeaff;
  font-size:12px;
  letter-spacing:.8px;
}

.show-hero__content h1{
  margin:16px 0 12px;
  font-size:42px;
  line-height:1.25;
  color:#f7fbff;
}

.show-hero__content p{
  margin:0;
  max-width:720px;
  color:var(--show-muted);
  line-height:1.9;
}

.show-hero__visual{
  position:relative;
  min-height:240px;
}

.hero-box{
  position:absolute;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:22px;
  border:1px solid rgba(173,192,228,.16);
  background:linear-gradient(180deg, rgba(17,29,53,.94), rgba(10,17,33,.96));
  box-shadow:var(--show-shadow);
}

.hero-box i{
  font-size:34px;
  color:#dbe9ff;
}

.hero-box--main{
  width:190px;
  height:190px;
  left:18%;
  top:24px;
}
.hero-box--main i{ color:#60a5fa; }

.hero-box--sub{
  width:128px;
  height:128px;
  right:10%;
  top:0;
}
.hero-box--sub i{ color:#22d3ee; }

.hero-box--sub.alt{
  top:auto;
  bottom:10px;
  right:20%;
}
.hero-box--sub.alt i{ color:#8b5cf6; }

/* breadcrumb */
.show-breadcrumb{
  padding:8px 0 24px;
}

.breadcrumb{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid var(--show-line);
  background:rgba(14,23,42,.72);
}

.breadcrumb a{
  color:#dbe7ff;
  font-size:14px;
}

.breadcrumb a:hover{
  color:#7dd3fc;
}

.breadcrumb .is-current{
  color:#8edcff;
}

.breadcrumb i,
.breadcrumb small{
  color:#8ea8d1;
}

/* layout */
.show-main{
  padding:4px 0 56px;
}

.show-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 340px;
  gap:24px;
}

/* article */
.article-card{
  border-radius:22px;
  border:1px solid var(--show-line);
  background:linear-gradient(180deg, rgba(17,29,53,.96), rgba(10,16,29,.98));
  box-shadow:var(--show-shadow);
  overflow:hidden;
}

.article-header{
  padding:30px 28px 20px;
  border-bottom:1px solid rgba(173,192,228,.10);
}

.article-header h1{
  margin:0 0 18px;
  font-size:36px;
  line-height:1.35;
  color:#f8fbff;
}

.article-meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.article-meta span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(173,192,228,.10);
  color:#a8bcdf;
  font-size:13px;
}

.article-meta i{
  color:#7fd7ff;
}

.article-body{
  padding:30px 28px;
  color:#dbe8ff;
  line-height:2;
  font-size:16px;
}

.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5{
  color:#f5f9ff;
  line-height:1.5;
  margin:1.6em 0 .8em;
}

.article-body p{
  margin:0 0 1.2em;
}

.article-body img{
  max-width:100%;
  height:auto;
  border-radius:16px;
  display:block;
  margin:22px auto;
}

.article-body a{
  color:#80dcff;
  text-decoration:underline;
}

.article-body ul,
.article-body ol{
  padding-left:22px;
  margin:0 0 1.2em;
}

.article-body blockquote{
  margin:1.4em 0;
  padding:16px 18px;
  border-left:4px solid #3b82f6;
  border-radius:12px;
  background:rgba(59,130,246,.08);
  color:#d9e8ff;
}

.article-body table{
  width:100%;
  border-collapse:collapse;
  margin:20px 0;
  overflow:hidden;
}

.article-body table th,
.article-body table td{
  border:1px solid rgba(173,192,228,.12);
  padding:12px 10px;
  text-align:left;
}

.article-body table th{
  background:rgba(59,130,246,.08);
  color:#9edfff;
}

/* prev next */
.article-pagination{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  padding:0 28px 24px;
}

.page-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 18px;
  border-radius:16px;
  border:1px solid rgba(173,192,228,.12);
  background:rgba(255,255,255,.02);
  color:#e5efff;
  transition:all .25s ease;
}

.page-link:hover{
  border-color:rgba(96,165,250,.30);
  background:rgba(59,130,246,.06);
  color:#8cdcff;
}

.page-link span{
  flex:1;
  line-height:1.7;
}

.page-link.next{
  text-align:right;
}

/* share */
.article-share{
  margin:0 28px 28px;
  padding:22px 20px;
  border-radius:18px;
  border:1px solid rgba(173,192,228,.12);
  background:rgba(255,255,255,.02);
}

.share-head h6{
  margin:0 0 8px;
  font-size:18px;
  color:#f5f9ff;
  display:flex;
  align-items:center;
  gap:10px;
}

.share-head h6 i{
  color:#7dd3fc;
}

.share-head p{
  margin:0;
  color:var(--show-muted);
  font-size:14px;
}

.share-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:16px;
}

.share-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:44px;
  padding:0 16px;
  border-radius:12px;
  border:1px solid rgba(173,192,228,.14);
  background:#0b1426;
  color:#eaf2ff;
  cursor:pointer;
  transition:.25s ease;
}

.share-btn:hover{
  transform:translateY(-2px);
}

.share-btn.weibo:hover{ color:#ff8b8b; border-color:rgba(255,107,107,.28); }
.share-btn.qq:hover{ color:#7dd3fc; border-color:rgba(125,211,252,.28); }
.share-btn.wechat:hover{ color:#6ee7b7; border-color:rgba(110,231,183,.28); }
.share-btn.copy-link:hover{ color:#c4b5fd; border-color:rgba(196,181,253,.28); }

/* related */
.related-reading{
  margin-top:22px;
  border-radius:22px;
  border:1px solid var(--show-line);
  background:linear-gradient(180deg, rgba(17,29,53,.96), rgba(10,16,29,.98));
  box-shadow:var(--show-shadow);
  padding:24px;
}

.section-title{
  margin-bottom:18px;
}

.section-title h3{
  margin:0;
  font-size:24px;
  color:#f7fbff;
  display:flex;
  align-items:center;
  gap:10px;
}

.section-title h3 i{
  color:#f59e0b;
}

.related-list{
  display:grid;
  gap:14px;
}

.related-item{
  display:grid;
  grid-template-columns:56px 110px 1fr;
  gap:14px;
  align-items:center;
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(173,192,228,.10);
  background:rgba(255,255,255,.02);
  transition:all .25s ease;
}

.related-item:hover{
  border-color:rgba(96,165,250,.30);
  transform:translateX(4px);
}

.related-index{
  width:56px;
  height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  font-size:20px;
  font-weight:700;
  color:#fff;
  background:linear-gradient(180deg,#38bdf8,#2563eb);
}

.related-thumb{
  display:block;
  width:110px;
  height:76px;
  border-radius:12px;
  overflow:hidden;
}

.related-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.related-body h6{
  margin:0 0 10px;
  font-size:16px;
  line-height:1.7;
}

.related-body h6 a{
  color:#eff5ff;
}

.related-body h6 a:hover{
  color:#7dd3fc;
}

.related-body small{
  color:#9fb3d8;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

/* sidebar */
.show-sidebar{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.side-card{
  border-radius:18px;
  border:1px solid var(--show-line);
  background:linear-gradient(180deg, rgba(17,29,53,.96), rgba(10,16,29,.98));
  box-shadow:var(--show-shadow);
  padding:18px;
}

.side-title{
  margin-bottom:14px;
}

.side-title h6{
  margin:0;
  font-size:18px;
  color:#f5f9ff;
}

/* search */
.search-form{
  display:flex;
  gap:10px;
}

.search-field{
  position:relative;
  flex:1;
}

.search-field input{
  width:100%;
  height:48px;
  border-radius:12px;
  border:1px solid rgba(173,192,228,.2);
  background:#091325;
  color:#eff5ff;
  padding:0 14px;
  outline:none;
}

.search-field input:focus{
  border-color:rgba(96,165,250,.45);
  box-shadow:0 0 0 4px rgba(59,130,246,.12);
}

.search-field label{
  position:absolute;
  left:14px;
  top:-9px;
  padding:0 8px;
  background:#101a30;
  color:#8fb4eb;
  font-size:12px;
}

.search-form button{
  width:48px;
  height:48px;
  border:none;
  border-radius:12px;
  cursor:pointer;
  color:#fff;
  background:linear-gradient(180deg,#38bdf8,#2563eb);
  box-shadow:0 10px 20px rgba(37,99,235,.28);
}

/* menu */
.side-menu{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.side-menu li a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:13px 14px;
  border-radius:12px;
  border:1px solid rgba(173,192,228,.12);
  background:rgba(255,255,255,.02);
  color:#dbe7ff;
  transition:all .25s ease;
}

.side-menu li a:hover{
  transform:translateX(4px);
  border-color:rgba(96,165,250,.3);
  background:rgba(59,130,246,.08);
  color:#86dcff;
}

/* hot news */
.hot-card--large{
  overflow:hidden;
  border-radius:14px;
  border:1px solid rgba(173,192,228,.12);
  background:rgba(255,255,255,.02);
}

.hot-thumb{
  display:block;
  aspect-ratio:16/10;
  overflow:hidden;
}

.hot-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hot-body{
  padding:14px;
}

.hot-body h5{
  margin:0 0 8px;
  font-size:17px;
  line-height:1.5;
}

.hot-body h5 a{
  color:#f5f9ff;
}

.hot-body h5 a:hover{
  color:#7dd3fc;
}

.hot-body p{
  margin:0 0 10px;
  color:var(--show-muted);
  line-height:1.8;
  font-size:14px;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.hot-body time{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#a8bbdf;
  font-size:13px;
}

.hot-mini-list{
  margin-top:14px;
  display:grid;
  gap:12px;
}

.hot-mini{
  display:grid;
  grid-template-columns:86px 1fr;
  gap:12px;
  align-items:center;
  padding:10px;
  border-radius:12px;
  border:1px solid rgba(173,192,228,.12);
  background:rgba(255,255,255,.02);
}

.hot-mini__thumb{
  display:block;
  width:86px;
  height:66px;
  overflow:hidden;
  border-radius:10px;
}

.hot-mini__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hot-mini__body h5{
  margin:0 0 8px;
  font-size:14px;
  line-height:1.6;
}

.hot-mini__body h5 a{
  color:#edf4ff;
}

.hot-mini__body h5 a:hover{
  color:#7dd3fc;
}

.hot-mini__body time{
  font-size:12px;
  color:#9fb3d8;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

/* responsive */
@media (max-width: 1100px){
  .show-layout{
    grid-template-columns:minmax(0,1fr) 320px;
  }
}

@media (max-width: 900px){
  .show-hero__wrap{
    grid-template-columns:1fr;
  }

  .show-layout{
    grid-template-columns:1fr;
  }

  .show-hero__visual{
    min-height:180px;
  }

  .hero-box--main{
    left:4%;
    top:18px;
    width:150px;
    height:150px;
  }

  .hero-box--sub{
    right:10%;
    width:110px;
    height:110px;
  }

  .hero-box--sub.alt{
    right:26%;
    width:120px;
    height:120px;
  }
}

@media (max-width: 640px){
  .show-hero{
    padding:42px 0 24px;
  }

  .show-hero__content h1,
  .article-header h1{
    font-size:30px;
  }

  .article-header,
  .article-body{
    padding:22px 18px;
  }

  .article-pagination{
    grid-template-columns:1fr;
    padding:0 18px 20px;
  }

  .article-share{
    margin:0 18px 20px;
    padding:18px 16px;
  }

  .related-reading{
    padding:18px;
  }

  .related-item{
    grid-template-columns:48px 88px 1fr;
    gap:10px;
  }

  .related-index{
    width:48px;
    height:48px;
    font-size:18px;
  }

  .related-thumb{
    width:88px;
    height:64px;
  }

  .search-form{
    flex-direction:column;
  }

  .search-form button{
    width:100%;
  }

  .hot-mini{
    grid-template-columns:78px 1fr;
  }

  .hot-mini__thumb{
    width:78px;
    height:60px;
  }
}