body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f7; /* 苹果风格浅灰背景 */
    color: #1d1d1f; /* 深色文字 */
    text-align: center;
    line-height: 1.5;
}

header {
    background: linear-gradient(to bottom, #007aff, #0062cc); /* 苹果蓝色渐变 */
    color: white;
    padding: 20px 0px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 600;
}

p {
    margin: 10px 0;
    font-size: 1.1em;
}

main {
    max-width: 1200px; /* 更宽以适应左右布局 */
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 20px; /* 苹果卡片圆角 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex; /* 左右布局 */
    justify-content: space-between;
    align-items: center; /* 修改为 center，实现垂直中线对齐 */
    gap: 20px; /* 左右间距 */
}

.left-column {
    flex: 1; /* 左边占一半 */
    text-align: left;
}

.poster {
    max-width: 80%; /* 缩小到 80%，比例不变 */
    height: auto;
    border-radius: 12px; /* 圆角图片 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease; /* 平滑 hover 效果 */
}

.poster:hover {
    transform: scale(1.02); /* 轻微放大 */
}

.right-column {
    flex: 1; /* 右边占一半 */
    display: flex;
    flex-direction: column; /* 右边上下布局 */
    justify-content: center; /* 修改为 center，确保右边内容整体垂直居中，与左边图片对齐 */
    gap: 20px; /* 内部间距更紧凑 */
}

.intro {
    text-align: left; /* 文字左对齐 */
}

ul {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

ul li {
    margin: 10px 0;
    position: relative;
    padding-left: 20px;
}

ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #007aff; /* 蓝色项目符号 */
}

.qrcode-section {
    text-align: center; /* 二维码居中 */
    margin-top: 20px; /* 调整间距，使其更靠近下部 */
    padding: 20px;
    background-color: #f5f5f7; /* 浅灰卡片背景，苹果风格 */
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.qrcode {
    width: 150px; /* 缩小到 150px，比例不变 */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: block;
    margin: 20px auto;
}

.qrcode:hover {
    transform: scale(1.05);
}

h2 {
    font-size: 1.8em;
    margin: 0 0 20px;
    font-weight: 500;
}

footer {
    background-color: #1d1d1f;
    color: #a2a2a6; /* 浅灰文字 */
    padding: 15px;
    font-size: 0.9em;
    position: fixed;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #e5e5e5;
}

/* 移除媒体查询，强制始终左右布局（小屏可水平滚动） */