.container {
    width: 90%;          /* ⭐ 推荐值 */
    margin: auto;    /* 居中 */
    max-width:960px;
}

/* 基础重置 */
body {
    margin: 0;
    font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 14px;
}

/* header 整体 */
.site-header {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    background-color: #ffffff;
    border-bottom: 1px solid #ccc;
}

/* LOGO */
.logo h1 {
    margin: 1;
    font-size: 22px;
}

.logo a {
    text-decoration: none;
    color: #000;
}

/* nav 整体 */
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

/* 每个导航项 */
.main-nav li {
    margin-left: 24px;
}

/* 链接本体 */
.main-nav a {
    position: relative;
    display: inline-block;
    padding: 6px 2px;
    font-size: 13px;
    color: #333;
    text-decoration: none;

    white-space: nowrap;      /* 不换行 */
}

/* 粉色下划线 */
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #f2a0b6;

    opacity: 0.4;             /* 默认淡一点 */
}

/* hover 效果 */
.main-nav a:hover::after {
    opacity: 1;
}

/* hover 时文字颜色 */
.main-nav a:hover {
    color: #000;
}

h2 {
    font-size: 18px;
    padding-bottom: 6px;
    padding-left: 8px;      /* ⭐ 文字轻微缩进 */
    border-bottom: 2px solid #f2a0b6;
    margin: 30px 0 15px 6px; /* ⭐ 整体向右一点 */
}

h3 {
    font-size: 15px;
    padding-bottom: 4px;
    padding-left: 6px;
    border-bottom: 1px dashed #f2a0b6;
    margin: 20px 0 10px 6px;
}

h4{
    font-size: 12px;
    padding-bottom: 4px;
    padding-left: 6px;
}
.hero {
    margin: 0;                 /* 不要额外空隙 */
    max-width: 1100px;
    margin: 0 auto;
}

.hero img {
    width: 100%;               /* 横向铺满 */
    max-height: 600px;         /* ⭐ 控制高度（重点） */
    object-fit: cover;         /* 裁切但不变形 */
}


.site-footer {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 2px solid #f2a0b6; /* 下划线风格 */
    background-color: #fafafa;
}

.footer-info {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 12.5px;
    color: #666;
}

.footer-info p {
    margin: 4px 0;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}

/* 左侧标题 */
.info-table th {
    width: 25%;
    text-align: left;
    padding: 10px 12px;
    background-color: #fafafa;
    color: #444;
    border-bottom: 1px solid #f2a0b6;
    vertical-align: top;
}

/* 右侧内容 */
.info-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    color: #333;
}

/* 最后一行不要太突兀 */
.info-table tr:last-child th,
.info-table tr:last-child td {
    border-bottom: none;
}
