/* 全局基础样式 */

:root {
  /* 标准纯蓝 */
  --color-primary: #0000ff;
  /* 悬停态 */
  --color-primary-hover: #0000cc;
}

body {
  margin: 0;
  position: relative;
  font-family: "Microsoft YaHei", sans-serif;
  overflow: auto;
}

html {
  overflow-x: auto;
}

/* 主容器居中限宽 */
.main-container {
  width: 100%;
  min-width: 1024px;
  max-width: 1024px;
  margin: 0 auto;
}

/* 特效叠加层 */
.effect-layer {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1024px;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}

/* 链接重置 */
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* 统一链接悬停：蓝色 + 放大 */
.nav-right a,
.link-cell a,
.more-cell a,
.beian a {
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-right a:hover,
.link-cell a:hover,
.more-cell a:hover,
.beian a:hover {
  color: var(--color-primary);
  transform: scale(1.1);
}
