﻿/* 来源于yingshizhanzhang.com */
:root {
  --yingshizhanzhang_com-btn-bg: linear-gradient(270deg, rgb(96, 58, 245) 0%, rgb(58, 107, 241) 100%);
  --yingshizhanzhang_com-bg: #f7f9fa;
  --yingshizhanzhang_com-text: #0c0d0f;
  --yingshizhanzhang_com-muted: rgba(12, 13, 15, 0.55);
  --yingshizhanzhang_com-border: rgba(12, 13, 15, 0.12);
}

body.yingshizhanzhang_com-body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 14px;
  background-color: var(--yingshizhanzhang_com-bg);
  color: var(--yingshizhanzhang_com-text);
}

.yingshizhanzhang_com-layout { min-height: 100vh; }

.yingshizhanzhang_com-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 204px;
  z-index: 1301;
  background: #fff;
  border-radius: 20px 0 0 20px;
  border-right: 1px solid var(--yingshizhanzhang_com-border);
}

.yingshizhanzhang_com-sidebar .yingshizhanzhang_com-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 25px 22px 29px;
  min-height: 46px;
  padding: 8px 10px;
  border-radius: 8px;
  line-height: 1.1;
  background: transparent;
  color: #111827;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}
.yingshizhanzhang_com-sidebar .yingshizhanzhang_com-logo i {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yingshizhanzhang_com-btn-bg);
  color: #fff;
  font-size: 14px;
}
.yingshizhanzhang_com-sidebar .yingshizhanzhang_com-logo img {
  max-height: 34px;
  max-width: 150px;
}

.yingshizhanzhang_com-menu {
  padding-bottom: 30px;
  height: calc(100vh - 100px);
  overflow-y: hidden;
}

.yingshizhanzhang_com-menu:hover { overflow-y: auto; }
.yingshizhanzhang_com-menu .nav-item { margin: 0 22px 12px; }
.yingshizhanzhang_com-menu .nav-link {
  height: 40px;
  padding: 10px 16px;
  border-radius: 8px;
  color: #333;
  display: flex;
  align-items: center;
  font-size: 15px;
}
.yingshizhanzhang_com-menu .nav-link.active,
.yingshizhanzhang_com-menu .nav-link:hover {
  color: #fff;
  background: var(--yingshizhanzhang_com-btn-bg);
}

.yingshizhanzhang_com-content {
  margin-left: 204px;
  width: calc(100% - 204px);
  background-color: var(--yingshizhanzhang_com-bg);
  border-radius: 20px;
}

.yingshizhanzhang_com-topbar {
  background-color: #fff;
  border-bottom: 1px solid var(--yingshizhanzhang_com-border);
  padding: 0;
  box-shadow: 0 2px 10px rgba(25, 46, 85, 0.04);
}

.yingshizhanzhang_com-topbar form {
  align-items: center;
}

.yingshizhanzhang_com-search-input {
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(12, 13, 15, 0.15);
  background: #fff;
  color: #000;
  padding: 0 14px;
  box-shadow: 0 2px 8px rgba(30, 61, 90, 0.05);
}

.yingshizhanzhang_com-search-input:focus {
  border-color: rgba(96, 58, 245, 0.45);
  box-shadow: 0 0 0 3px rgba(96, 58, 245, 0.12);
}

.btn.btn-primary {
  border: 0;
  border-radius: 8px;
  background: var(--yingshizhanzhang_com-btn-bg);
}

.btn.btn-outline-primary {
  border-color: rgba(12, 13, 15, 0.25);
  color: #0c0d0f;
}

.btn.btn-outline-light {
  border-color: rgba(12, 13, 15, 0.25);
  color: #0c0d0f;
}

.yingshizhanzhang_com-main { min-height: calc(100vh - 170px); }
.yingshizhanzhang_com-main section + section { margin-top: 18px; }

.yingshizhanzhang_com-hero,
.yingshizhanzhang_com-panel,
.yingshizhanzhang_com-card {
  background-color: #fff;
  border-radius: 8px;
}

.yingshizhanzhang_com-panel {
  border: 1px solid rgba(12, 13, 15, 0.06);
  padding: 18px 16px 20px;
  box-shadow: 0 6px 20px rgba(20, 40, 70, 0.04);
}

.yingshizhanzhang_com-section-title {
  font-size: 20px;
  font-weight: 500;
  padding-left: 10px;
  margin-bottom: 12px;
  border-left: 4px solid #603af5;
}
.yingshizhanzhang_com-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.yingshizhanzhang_com-title-row .yingshizhanzhang_com-section-title {
  margin-bottom: 0;
}
.yingshizhanzhang_com-more-link {
  font-size: 13px;
  color: #4f46e5;
  text-decoration: none;
  white-space: nowrap;
}

.yingshizhanzhang_com-card {
  overflow: hidden;
  border: 1px solid rgba(12, 13, 15, 0.06);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transition: transform .2s;
  height: 100%;
}
.yingshizhanzhang_com-card:hover { transform: translateY(-2px); }

.yingshizhanzhang_com-card .h6,
.yingshizhanzhang_com-card .text-white { color: #000 !important; }
.yingshizhanzhang_com-card .p-3 { min-height: 84px; }

.yingshizhanzhang_com-thumb,
.yingshizhanzhang_com-thumb-wide {
  width: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}
.yingshizhanzhang_com-thumb { aspect-ratio: 2/3; }
.yingshizhanzhang_com-thumb-wide { aspect-ratio: 16/9; }
.yingshizhanzhang_com-grid-item { width: 50%; }

.yingshizhanzhang_com-meta {
  color: var(--yingshizhanzhang_com-muted);
  font-size: 13px;
}

.yingshizhanzhang_com-tag {
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #0c0d0f;
  background: #fff;
}

.yingshizhanzhang_com-player {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.yingshizhanzhang_com-player iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; }
#bofang_box,
#bofang_box .MacPlayer,
#bofang_box iframe {
  width: 100% !important;
}
#bofang_box {
  min-height: 520px;
  background: #000;
}
#bofang_box iframe {
  min-height: 520px;
  border: 0;
}

.breadcrumb { margin-bottom: 10px; }
.breadcrumb-item.active { color: #0c0d0f; }
.breadcrumb-item a,
.yingshizhanzhang_com-text-link,
.yingshizhanzhang_com-footer a { color: #333; text-decoration: none; }

.yingshizhanzhang_com-footer {
  padding: 20px 0;
  background: #fff;
  border-top: 1px solid var(--yingshizhanzhang_com-border);
}

.yingshizhanzhang_com-content article.yingshizhanzhang_com-panel > .row,
.yingshizhanzhang_com-content section.yingshizhanzhang_com-panel > .row {
  margin-left: -8px;
  margin-right: -8px;
}

.yingshizhanzhang_com-content .list-group-item {
  border-radius: 10px !important;
  margin-bottom: 10px;
  border: 1px solid rgba(12, 13, 15, 0.08) !important;
  padding: 14px 16px;
  box-shadow: 0 4px 14px rgba(15, 34, 66, 0.04);
}
.yingshizhanzhang_com-news-item h3 {
  font-size: 16px;
  margin-bottom: 6px;
}
.yingshizhanzhang_com-news-item .yingshizhanzhang_com-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.yingshizhanzhang_com-news-cover-wrap {
  flex: 0 0 116px;
  max-width: 116px;
}
.yingshizhanzhang_com-news-cover {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 8px;
}
.yingshizhanzhang_com-rank-thumb {
  width: 46px;
  height: 62px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.yingshizhanzhang_com-topic-card .p-3 {
  min-height: 92px;
}
.yingshizhanzhang_com-topic-grid-item { width: 50%; }
.yingshizhanzhang_com-topic-grid-item .yingshizhanzhang_com-thumb {
  aspect-ratio: 16/10;
}
.yingshizhanzhang_com-topic-tag {
  display: inline-block;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 99px;
  background: rgba(96, 58, 245, 0.1);
  color: #4f46e5;
  margin-bottom: 6px;
}
.yingshizhanzhang_com-paging {
  margin-top: 20px;
  padding-top: 10px;
  text-align: center;
}
.yingshizhanzhang_com-paging .mac_pages .page_tip {
  color: var(--yingshizhanzhang_com-muted);
  margin-bottom: 8px;
}
.yingshizhanzhang_com-paging .page_info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.yingshizhanzhang_com-paging .page_link {
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(12, 13, 15, 0.15);
  background: #fff;
  color: #111827;
  text-decoration: none;
}
.yingshizhanzhang_com-paging .page_link.page_current {
  color: #fff;
  border-color: transparent;
  background: var(--yingshizhanzhang_com-btn-bg);
}
.yingshizhanzhang_com-article-content img,
.yingshizhanzhang_com-article-content video,
.yingshizhanzhang_com-article-content iframe {
  max-width: 100% !important;
  height: auto !important;
}
.yingshizhanzhang_com-article-content table {
  width: 100% !important;
  display: block;
  overflow-x: auto;
}

.yingshizhanzhang_com-mobile-header { display: none; }
.yingshizhanzhang_com-mobile-trigger {
  width: 38px;
  height: 38px;
  border: 1px solid var(--yingshizhanzhang_com-border);
  border-radius: 8px;
  background: #fff;
  color: #1f2937;
}
.yingshizhanzhang_com-mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(78vw, 320px);
  transform: translateX(100%);
  transition: transform .25s ease;
  z-index: 1400;
  background: #fff;
  border-left: 1px solid var(--yingshizhanzhang_com-border);
  box-shadow: -10px 0 30px rgba(15, 34, 66, 0.12);
  padding: 14px 12px;
}
.yingshizhanzhang_com-mobile-nav.is-open { transform: translateX(0); }
.yingshizhanzhang_com-mobile-nav .nav-link {
  border-radius: 8px;
  padding: 10px 12px;
  color: #333;
}
.yingshizhanzhang_com-mobile-nav .yingshizhanzhang_com-menu {
  height: auto;
  overflow: visible;
  padding-bottom: 0;
}
.yingshizhanzhang_com-mobile-nav .yingshizhanzhang_com-menu .nav-item {
  margin: 0 0 8px;
}
.yingshizhanzhang_com-mobile-nav .nav-link.active,
.yingshizhanzhang_com-mobile-nav .nav-link:hover {
  color: #fff;
  background: var(--yingshizhanzhang_com-btn-bg);
}
.yingshizhanzhang_com-mobile-mask {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 20, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 1390;
}
.yingshizhanzhang_com-mobile-mask.is-open {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .yingshizhanzhang_com-content { padding-left: 0; }
  .yingshizhanzhang_com-grid-item { width: 12.5%; }
  .yingshizhanzhang_com-topic-grid-item { width: 25%; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .yingshizhanzhang_com-grid-item { width: 25%; }
  .yingshizhanzhang_com-topic-grid-item { width: 33.3333%; }
}

@media (max-width: 1023px) {
  body.yingshizhanzhang_com-body { background-color: #f7f9fa !important; }
  .yingshizhanzhang_com-sidebar { display: none; }
  .yingshizhanzhang_com-content {
    margin-left: 0;
    width: 100%;
    border-radius: 0;
  }
  .yingshizhanzhang_com-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #fff;
    border-bottom: 1px solid var(--yingshizhanzhang_com-border);
  }
  .yingshizhanzhang_com-mobile-header .yingshizhanzhang_com-logo {
    margin: 0;
    padding: 0;
    height: 38px;
    border-radius: 0;
    background: transparent;
    color: #111827;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
    text-decoration: none;
    box-shadow: none;
  }
  .yingshizhanzhang_com-mobile-header .yingshizhanzhang_com-logo i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--yingshizhanzhang_com-btn-bg);
    color: #fff;
    font-size: 14px;
  }
  .yingshizhanzhang_com-topbar { position: sticky; top: 56px; z-index: 999; }
  .yingshizhanzhang_com-topbar .container-fluid { padding-left: 12px !important; padding-right: 12px !important; }
  .yingshizhanzhang_com-topbar form { display: flex; gap: 8px; }
  .yingshizhanzhang_com-topbar form .col-lg-10 { flex: 1 1 auto; width: auto; }
  .yingshizhanzhang_com-topbar form .col-lg-2 { flex: 0 0 auto; width: 96px; }
  .yingshizhanzhang_com-search-input {
    height: 38px;
    border-radius: 8px;
    font-size: 13px;
    padding: 0 10px;
    box-shadow: none;
  }
  .yingshizhanzhang_com-topbar .btn.btn-primary {
    height: 38px;
    border-radius: 8px;
    font-size: 13px;
    padding: 0 10px;
  }
  .yingshizhanzhang_com-panel { padding-top: 10px; }
  .yingshizhanzhang_com-section-title { font-size: 18px; }
  .yingshizhanzhang_com-card .p-3 { min-height: 74px; }
  .yingshizhanzhang_com-news-cover-wrap { flex-basis: 94px; max-width: 94px; }
  #bofang_box,
  #bofang_box iframe { min-height: 240px; }
}

