* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

:root {
    --primary-blue: #0A2463;
    --accent-red: #E63946;
    --accent-teal: #2A9D8F;
    --accent-yellow: #E9C46A;
    --accent-blue: #264653;
    --tab-life: #2A6F66;
    --tab-health: #2554B7;
    --tab-sustain: #D4E157;
    --text-dark: #000000;
    --text-light: #FFFFFF;
    --bg-light: #FFFFFF;
    --bg-dark: #000000;
    --transition: all 0.35s cubic-bezier(0.32, 0.01, 0.15, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== 导航栏 ========== */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    /* 加深版水平渐变，右侧更有质感 */
    background: linear-gradient(90deg, #ffffff 0%, #eef5ff 100%);
    border-bottom: 5px solid var(--primary-blue);
    z-index: 999;
    box-shadow: 0 3px 12px rgba(35, 89, 153, 0.06);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    /* 1. 设置背景图（替换为你的图片路径） */
    background: url("../img/LOGO.png") no-repeat center / contain;
    /* 2. 隐藏原文字 */
    text-indent: -9999px;
    /* 3. 必须设置宽高（根据你的logo尺寸调整，示例宽100px高40px） */
    width: 130px;
    height: 45px;
    /* 若原样式有字体样式，需清空 */
    font-size: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-menu a {
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    gap: 24px;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
}

/* 汉堡菜单按钮：无按钮感，纯图标 */
#menuBtn {
    background: transparent !important;
    border: none !important;
    color: inherit;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

#menuBtn:hover {
    color: var(--primary-blue);
}

/* 修复语言按钮样式 */
.lang-switch {
    padding: 6px 14px;
    background: #235999;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.lang-switch:hover {
    background: #1a477d;
}

#Registration {
    margin-left: 40px;
}

/* 遮罩层 */
.modal-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}

/* 弹窗主体 */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    width: 90%;
    max-width: 750px;
    box-sizing: border-box;
    z-index: 10000;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* 关闭按钮 */
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
}

.modal-close:hover {
    color: #000;
}

/* 标题 */
.modal h2 {
    margin: 0 0 30px;
    font-size: 24px;
    color: #333;
}

/* 二维码容器 */
.qr-box {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* 每个二维码区块 */
.qr-box>div {
    text-align: center;
}

.qr-box h3 {
    margin: 0 0 15px;
    font-size: 18px;
    color: #333;
}

/* 👇 核心：让两张二维码大小完全一致的关键代码 */
.qr-box img {
    width: 180px;
    /* 固定宽度 */
    height: 180px;
    /* 固定高度 */
    object-fit: contain;
    /* 图片按比例缩放，不变形 */
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* 多语言适配 */
body.lang-en .zh {
    display: none;
}

body.lang-zh .en {
    display: none;
}

/* 适配你的多语言：和你按钮的逻辑统一 */
body.lang-en .zh {
    display: none;
}

body.lang-zh .en {
    display: none;
}

/* 默认中文隐藏，英文显示；切换自动互换 */
.en {
    display: block;
}

.zh {
    display: none;
}

body.cn .en {
    display: none;
}

body.cn .zh {
    display: block;
}

/* ========== 折叠功能样式 ========== */
.wrap {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
}

.item {
    margin-bottom: 10px;
}

.bar {
    background: #eee;
    padding: 20px 25px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.con {
    display: none;
    /* 这里绝对不能加 !important */
    padding: 20px 25px;
    background: #fff;
    border: 1px solid #eee;
}

/* ========== Hero 区域 ========== */
.hero {
    background: url("../img/heroBG.png");
    background-size: 100% 100%;
    color: var(--text-light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero::after {
    content: '';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 42%;
    height: 85%;
    opacity: 0.9;
    transition: var(--transition);
}

.hero-content {
    max-width: 600px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.2s forwards;
}

.hero h1 {
    text-align: center;
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 600;
}

.hero p {
    text-align: center;
    font-size: 24px;
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 400;

    /* 👇 核心三行，直接复制 */
    white-space: nowrap;
    /* 强制所有文本不自动换行，只在<br>处换行 */
    display: inline-block;
    /* 让p标签宽度自适应文本，而不是撑满容器 */
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    /* 让超出容器的文本整体居中 */
}

/* 外层容器：允许换行 + 布局控制 */
.win {
    display: flex;
    flex-wrap: wrap;
    /* 关键：让 h2 可以单独占一行 */
    justify-content: center;
    align-items: stretch;
    max-width: 1400px;
    margin: 5px auto 0;
    /* 上60px，左右居中 */
}

/* 🔥 关键：h2 独占一整行 */
.win h2 {
    width: 100%;
    /* 占满整行 */
    display: block;
    text-align: center;
    /* 标题居中 */
    margin: 0 0 1px 0;
    /* 标题和下面卡片的间距 */
    font-size: 26px;
    font-weight: 600;
}

/* 左边图片框（加宽加高） */
.win .left {
    flex: 0 0 40%;
    /* 宽度从 32% → 40%，更宽 */
    background: powderblue;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    /* 上下左右内边距增大，整体更高 */
    min-height: 400px;
    /* 强制设置最小高度，避免被文字框压矮 */
}

.win .left img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* 右边文字框 */
.win .right {
    flex: 1;
    background: aliceblue;
    border-radius: 18px;
    padding: 35px 30px;
    flex-direction: column;
    justify-content: center;
    /* 上下居中 */
    align-items: center;
    /* 左右居中 */
    text-align: left;
    /* 文字本身居中 */
}

/* 英文 + 中文 统一样式：首行缩进2字符 */
.win .right .en,
.win .right .zh {
    /* 首行缩进 2 字符 */
    line-height: 1.7;
    /* 行高更舒服 */
    margin: 0;
}

/* 英文和中文之间加一点间距 */
.win .right .en {
    margin-bottom: 15px;
}

#Benefits {
    margin-top: 90px;
    background-color: #eeeeee;
    padding: 10px 10px 3px 10px;
}

/* ========== 子主题 ========== */
.Sub-Themes {
    max-width: 1200px;
    margin: 90px auto 0;
    /* 上60px，下0，左右自动居中 */
    text-align: center;
}

/* 2. 标题样式 */
.Sub-Themes h2 {
    font-size: 28px;
    margin-bottom: 1px;
    color: #333;
}

/* 标题独占一行 + 样式 */
.Sub-Themes h3 {
    display: block;
    /* 强制独占一行 */
    width: 100%;
    /* 占满整行 */
    font-size: 28px;
    margin: 0 0 15px 0;
    color: #333;
    text-align: center;
    /* 如果你需要居中就留着，不需要就删掉 */
}

/* 3. 卡片容器：Flex 水平排列，自动换行 */
.Sub-Themes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* 卡片整体居中 */
    gap: 20px;
    /* 卡片之间的间距 */
}

/* 标题单独占一行 */
.Sub-Themes>h2 {
    width: 100%;
}

/* 5. 卡片本体：复刻参考图的圆角、阴影 */
.Sub-Themes .card {
    width: 300px;
    /* 卡片宽度，和参考图一致 */
    background: #fff;
    border-radius: 16px;
    /* 圆角 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    /* 柔和阴影 */
    overflow: hidden;
    /* 防止图片超出圆角 */
    transition: transform 0.3s ease;
    /* 悬停动画 */
}

/* 悬停效果 */
.Sub-Themes .card:hover {
    transform: translateY(-5px);
    /* 卡片轻微上浮 */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* 6. 卡片内的图片 */
.Sub-Themes .card .img {
    width: 93%;
    /* 左右留边距 */
    height: 220px;
    margin: 10px auto 0;
    /* 🔥 上边距 10px + 水平居中 */
    background-size: cover;
    background-position: center;
    border-radius: 12px 12px 0 0;
    /* 上两角圆角 */
}

/* 7. 卡片内的文字 */
.Sub-Themes .card h3 {
    padding: 15px;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    text-decoration: none !important;
}

/* ========== introduction 区域 ========== */
.key {
    color: red;
}

/* 父容器：清除浮动 + 横向排列 */
.introduction {
    margin-top: 110px;
    overflow: hidden;
    /* 清除浮动影响 */
    display: flex;
    /* 现代最稳的横向布局 */
    align-items: center;
    /* 垂直居中对齐 */
    justify-content: space-between;
    /* 左右分开 */
    gap: 20px;
    /* 文字和LOGO之间的间距 */
}

/* 左边文字区域：占大部分宽度 */
.introduction>div:first-child {
    flex: 1;
}

/* 右边LOGO：保持大小不被挤压 */
.introduction>div:last-child {
    flex-shrink: 0;
}

/* 可选：让LOGO自适应大小 */
.introduction img {
    max-width: 450px;
    /* 你可以自己改大小 */
    height: auto;
}

#park {
    margin-top: 110px;
    margin-bottom: 110px;
    overflow: hidden;
    /* 清除浮动影响 */
    display: flex;
    /* 现代最稳的横向布局 */
    align-items: center;
    /* 垂直居中对齐 */
    justify-content: space-between;
    /* 左右分开 */
    gap: 20px;
    /* 文字和LOGO之间的间距 */
}

/* 左边文字区域：占大部分宽度 */
#park>div:first-child {
    flex: 1;
}

/* 右边LOGO：保持大小不被挤压 */
#park>div:last-child {
    flex-shrink: 0;
}

/* 可选：让LOGO自适应大小 */
#park img {
    max-width: 450px;
    /* 你可以自己改大小 */
    height: auto;
}

#more {
    margin-top: 90px;
}

#register {
    margin-top: 90px;
}

#STR {
    /* 开启 Flex 布局 */
    display: flex;
    /* 左右分开 */
    justify-content: space-between;
    /* 让两个子容器垂直居中 → 标题自动对齐 */
    align-items: flex-start;
    /* 两个模块之间的间距 */
    gap: 200px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#STR>div {
    flex: 1;
}

/* 统一两个标题样式，确保高度一致 */
#STR h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    /* 让标题始终顶对齐 */
    align-self: flex-start;
}

/* 链接文字样式 */
#STR p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    word-break: break-all;
}

/* 二维码图片大小 */
#SCR {
    width: 220px;
    height: auto;
    display: block;
}

#SCRN {
    width: 220px;
    height: auto;
    display: block;
    padding-top: 5px;
}

#route {
    margin-top: 60px;
}

#accommodation {
    margin-top: 110px;
    margin-bottom: 110px;
    overflow: hidden;
    /* 清除浮动影响 */
    display: flex;
    /* 现代最稳的横向布局 */
    align-items: center;
    /* 垂直居中对齐 */
    justify-content: space-between;
    /* 左右分开 */
    gap: 20px;
    /* 文字和LOGO之间的间距 */
}

.middle-title {
    font-size: 28px;
    /* 完美中间值 */
    font-weight: 600;
    color: var(--primary-blue);
    /* 海军蓝，高级 */
    margin: 10px 0;
}

/* 左边文字区域：占大部分宽度 */
#accommodation>div:first-child {
    flex: 1;
}

/* 右边LOGO：保持大小不被挤压 */
#accommodation>div:last-child {
    flex-shrink: 0;
}

/* 可选：让LOGO自适应大小 */
#accommodation img {
    max-width: 450px;
    /* 你可以自己改大小 */
    height: auto;
}

#date {
    margin-top: 90px;
    text-align: center;
}

#date img {
    display: block;
    margin: 50px auto 50px;
    width: 600px;
    height: auto;
}

#OPC {
    margin-top: 90px;
}

#OPCtext {
    background-color: #eeeeee;
    padding: 10px 10px 10px 10px;
    margin-bottom: 30px;
}


#publication {
    margin-top: 90px;
}

#registrationfees {
    margin-top: 90px;
    text-align: center;
}

#registrationfees p {
    text-align: center;
}

#pay {
    margin-top: 90px;
}

#myflex {
    /* 开启 Flex 布局 */
    display: flex;
    /* 左右分开 */
    justify-content: space-between;
    /* 让两个子容器垂直居中 → 标题自动对齐 */
    align-items: flex-start;
    /* 两个模块之间的间距 */
    gap: 200px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#myflex>div {
    flex: 1;
}

/* 统一两个标题样式，确保高度一致 */
#myflex h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    /* 让标题始终顶对齐 */
    align-self: flex-start;
}

/* 链接文字样式 */
#myflex p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    word-break: break-all;
}

/* 二维码图片大小 */
#QRC {
    width: 300px;
    height: auto;
    display: block;
}

#paycod {
    display: flex;
    gap: 100px;
    margin-top: 40px;
}

#WXC {
    display: block;
    width: 220px;
}

#ZFC {
    display: block;
    width: 220px;
}

#rules {
    margin-top: 60px;
    text-align: center;
}

#rules img {
    width: 500px;
}

#submission {
    margin-top: 90px;
}

/* ========== 表单部分 ========== */
table {
    width: 100%;
    /* 可选：让表格铺满父容器 */
    border-collapse: collapse;
    /* 合并边框，必加！ */
}

/* 所有单元格（表头+内容） */
table th,
table td {
    border: 1px solid #333;
    /* 1px 实线边框 */
    padding: 8px 12px;
    /* 单元格内边距，更美观 */
    text-align: center;
    /* 水平居中 */
    vertical-align: middle;
    /* 垂直居中 */
}

/* 可选：表头背景色 */
table th {
    background-color: #f5f5f5;
}

/* ========== 期刊介绍区域 ========== */
.journals-intro {
    padding: 56px 24px;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 0.4s forwards;
}

.journals-intro h2 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 24px;
    font-weight: 700;
}

.journals-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 32px;
}

/* ========== 期刊网格 ========== */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-top: 90px;
    margin-bottom: 48px;
    max-width: 1000px;
    /* 可选：给左右加内边距，适配移动端 */
    padding: 0 20px;
}

.grid h2 {
    grid-column: 1 / -1;
    /* 跨所有列（不管多少列都生效） */
    margin-bottom: 15px;
    /* 与卡片保持间距 */
}

.card {
    /* 显示控制（支持过渡） */
    opacity: 1;
    transition: var(--transition);
    /* 示例：opacity 0.3s, visibility 0.3s */
    /* 性能优化 */
    transform: translateZ(0);
    overflow: hidden;
    will-change: transform, opacity;
    /* 按需使用 */
    /* 视觉设计 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}


.card.visible {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px) translateZ(0);
}

.img {
    width: 100%;
    height: 440px;
    border-radius: 4px 4px 0 0;
    margin: auto auto;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    /* 图片加载失败时显示浅灰底色 */
    background-color: #f1f1f1 !important;
}

.img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 16px;
}

.card h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 16px;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-align: center;
    margin-top: 10px;
}

.card h4 {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    padding-left: 15px;
    padding-right: 15px;
}

/* ========== 页脚 ========== */
.footer {
    background: black;
    color: var(--text-light);
    padding: 60px 24px;
    margin-top: 60px;
}

#footitle {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 0 50px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

.footer-logo {
    /* 1. 设置背景图（替换为你的图片路径） */
    background: url("../img/BottomLogo.png") no-repeat center / contain;
    /* 2. 隐藏原文字 */
    text-indent: -9999px;
    /* 3. 必须设置宽高（根据你的logo尺寸调整，示例宽100px高40px） */
    width: 290px;
    height: 120px;
    /* 若原样式有字体样式，需清空 */
    font-size: 0;
    margin-bottom: 40px;
    margin-right: 10px;
}

.footer-social {
    display: flex;
    gap: 16px;
    font-size: 24px;
    margin-bottom: 22px;
}

.footer-info {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin-left: 35px;
}

.footer-column {
    margin-right: 50px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-form input {
    padding: 13px;
    font-size: 15px;
    border: none;
    border-radius: 4px;
    outline: none;
}

.footer-form .btn {
    background: var(--text-light);
    color: var(--primary-blue);
    align-self: flex-start;
    border: none;
    cursor: pointer;
    padding: 13px 38px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.footer-form .btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

#PAL {
    width: 100%;
    background-color: darkblue;
    color: white;
    text-align: center;
    padding: 13px 0;
}

/* ========== 返回顶部 ========== */
.back-to-top {
    position: fixed;
    bottom: 36px;
    right: 36px;
    width: 52px;
    height: 52px;
    background: var(--primary-blue);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

#emailto {
    padding: 10px 26px;
    background-color: whitesmoke;
    color: black;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s ease;
}

/* 侧边栏链接样式重置，完美还原原设计 */
.side-nav-menu ul li a {
    /* 核心：去掉默认下划线，继承原li的所有样式 */
    text-decoration: none;
    /* 继承父元素li的文字颜色，避免链接变蓝 */
    color: inherit;
    /* 继承父元素的字体、行高，避免间距错乱 */
    font: inherit;
    /* 让a标签占满整个li的点击区域，点击更友好 */
    display: block;
    /* 保持原有的内边距，和li完全对齐 */
    padding: inherit;
}

/* 可选：hover效果（和原设计风格统一，不影响整齐度） */
.side-nav-menu ul li a:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* ========== 动画 ========== */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== 移动端适配 ========== */
@media (max-width: 900px) {

    /* 导航栏 */
    /* 隐藏默认菜单 */
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    /* 菜单展开时显示 */
    .nav-menu.show {
        display: flex;
    }

    /* 汉堡按钮样式 */
    #menuBtn {
        border: none;
        background: transparent;
        font-size: 24px;
        cursor: pointer;
    }

    #Registration {
        margin-left: 8px;
        font-size: 12px;
        padding: 6px 10px;
    }

    .lang-switch {
        padding: 6px 8px;
        font-size: 12px;
    }

    /* Hero 标题区域 */
    .hero {
        padding: 50px 15px;
        text-align: center;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 16px;
        white-space: normal;
        position: static;
        transform: none;
    }

    /* 左右布局 → 全部改为上下布局 */
    .win,
    .introduction,
    #park,
    #accommodation {
        flex-direction: column;
        padding: 0 15px;
    }

    .win .left,
    .win .right {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }

    /* 子主题卡片 */
    .Sub-Themes {
        flex-direction: column;
        align-items: center;
    }

    .Sub-Themes .card {
        width: 100%;
        max-width: 380px;
    }

    /* 嘉宾卡片网格 */
    .grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    /* 二维码区域 */
    #STR,
    #myflex {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    #STR>div,
    #myflex>div {
        width: 100%;
        text-align: center;
    }

    #SCR,
    #SCRN,
    #QRC {
        margin: 0 auto;
    }

    /* 图片自适应 */
    img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* 表格手机优化 */
    table {
        font-size: 12px;
    }

    table th,
    table td {
        padding: 6px 4px;
        word-break: break-word;
    }

    /* 页脚 */
    #footitle {
        text-align: center !important;
    }

    #footitle h1 {
        text-align: center !important;
    }

    .footer-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .footer-column {
        width: 100% !important;
        margin-right: 0 !important;
        text-align: center !important;
    }

    .footer-column h4 {
        text-align: center !important;
    }

    .footer-logo {
        margin: 0 auto 40px auto !important;
    }

    .footer-form {
        align-items: center !important;
        text-align: center !important;
    }

    .footer-form button {
        align-self: center !important;
    }

    /*标题居中*/
    h2 {
        text-align: center !important;
    }

    /* 锁定你页面里所有模块里的h2，防止被原有样式覆盖 */
    .win h2,
    .Sub-Themes h2,
    #more h2,
    #date h2,
    #OPC h2,
    #publication h2,
    #registrationfees h2,
    #pay h2,
    #submission h2,
    .journals-intro h2,
    .grid h2 {
        text-align: center !important;
    }
}

/* 更小屏幕手机 */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 15px;
    }

    .bar {
        padding: 14px;
        font-size: 16px;
    }

    .con {
        padding: 15px;
    }

    .modal {
        width: 95%;
        padding: 25px 15px;
    }

    .qr-box img {
        width: 140px;
        height: 140px;
    }
}