/* 全局重置和基础样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9faff;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 页面过渡动画 */
.page-enter-active,
.page-leave-active {
  transition: opacity 0.3s;
}
.page-enter-from,
.page-leave-to {
  opacity: 0;
}

/* 顶部介绍区块 */



  

/* 吸顶时导航栏背景和阴影 */
.header.fixed {
  background: linear-gradient(135deg, #7b5cff 0%, #4a90e2 100%);
  box-shadow: 0 2px 16px rgba(123,92,255,0.10);
  animation: slideDown 0.4s cubic-bezier(.77,0,.18,1);
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* 新网站入口模块样式 */
.new-website-section {
  text-align: center;
  max-width: 800px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.new-website-section h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 15px;
}

.new-website-section p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

.new-website-section .btn-learn-more {
  display: inline-block;
  background-color: #007bff; /* 显眼的蓝色 */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

.new-website-section .btn-learn-more:hover {
  background-color: #0056b3; /* 鼠标悬停时颜色变深 */
  transform: translateY(-2px); /* 稍微上浮 */
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}