@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Playfair+Display:wght@700&display=swap');

body { background-color: #FCFBF9; font-family: 'Merriweather', serif; color: #333333; margin: 0; line-height: 1.6; }
h1, h2, h3 { font-family: 'Playfair Display', serif; color: #5B397F; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 15px; }

/* 菜单与品牌色 */
.main-menu ul { list-style: none; display: flex; margin: 0; padding: 0; }
.main-menu li { margin-left: 30px; }
.main-menu a { color: #5B397F !important; text-decoration: none; font-weight: 600; font-size: 1.1rem; }

/* 页脚 */
.footer { background: #5B397F; color: white; padding: 50px 0; text-align: center; margin-top: 60px; }
.footer a { color: white; }

/* 按钮 */
.button { background: #5B397F; color: white; padding: 12px 25px; text-decoration: none; border-radius: 4px; display: inline-block; }

/* 头部样式 */
.site-header {
  background: #FCFBF9;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.site-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-logo__img {
  height: 80px;          /* 强制固定高度，宽度自动缩放 */
  width: auto;
  max-width: 100%;       /* 防止超出父容器 */
}