/* 头版 + 导航 + 走马灯 */

.top-banner { border: 3px solid #cc0000; background: #fff; }

.top-strip {
  background: #003399;
  color: #ffffff;
  padding: 2px 8px;
  display: flex;
  justify-content: space-between;
}
.top-strip a { color: #ffff99; }

.banner-body {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 20px;
  background: linear-gradient(#fff5f5, #ffd9d9 60%, #ffb3b3);
}

.logo-block { display: flex; align-items: flex-start; gap: 12px; }

.logo-cross {
  width: 64px; height: 64px;
  background: #cc0000;
  color: #fff;
  font-size: 46px;
  line-height: 62px;
  text-align: center;
  border: 3px double #ffcc00;
  border-radius: 6px;
  text-shadow: 2px 2px 0 #660000;
}

.site-name {
  font-size: 44px;
  font-family: SimHei, 黑体, sans-serif;
  letter-spacing: 6px;
  color: #ffcc00;
  -webkit-text-stroke: 1px #990000;
  text-shadow: 3px 3px 0 #cc0000, 5px 5px 0 #660000;
}

.site-sub {
  margin-top: 4px;
  font-size: 14px;
  color: #cc0000;
  font-weight: bold;
  letter-spacing: 3px;
}

.hotline-block { position: absolute; right: 20px; text-align: right; }
.hotline-label {
  display: inline-block;
  background: #006600;
  color: #ccff99;
  padding: 2px 8px;
  border: 1px dashed #ccff99;
  font-weight: bold;
}
.hotline-number {
  margin-top: 4px;
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: bold;
  color: #ff0000;
  text-shadow: 2px 2px 0 #ffcc00;
}

/* 七彩导航 */
.nav-bar {
  display: flex;
  border: 3px solid #cc0000;
  border-top: none;
}
.nav-item {
  flex: 1;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  padding: 8px 0;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,.6);
  text-shadow: 1px 1px 0 rgba(0,0,0,.5);
}
.nav-item:last-child { border-right: none; }
.nav-item:hover { filter: brightness(1.35); color: #ffff99; }

/* 走马灯 */
.marquee-wrap {
  display: flex;
  align-items: center;
  background: #ffffcc;
  border: 3px solid #cc0000;
  border-top: none;
  padding: 3px 6px;
}
.marquee-speaker { font-size: 16px; margin-right: 6px; }
.marquee-body {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  color: #ff0000;
  font-weight: bold;
  font-size: 13px;
}
.marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
