﻿/* 导航栏左侧logo文字 */
.nav-left {
  font-size: 18px;
  white-space: nowrap;
}

/* 时间显示 */
.showtime {
  font-size: 12px;
}

/* 跑马灯 */
.marquee-text {
  font-size: 16px;
}

.breath-char {
  font-weight: bold;
}

/* 备案信息 */
.beian a {
  font-size: 16px;
}

/* 全局链接样式 */
a {
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block;
}

a:hover {
  transform: scale(1.2);
  color: blue;
}

a:focus {
  outline: none;
}

