@font-face {
    font-family: 'unifont-15.1.02';
    src: url('https://hk.wandou.cab/fonts/unifont-15.1.02.woff2') format('woff2'), 
         url('./fonts/unifont-15.1.02.woff2') format('woff2'), 
         url('https://hk.wandou.cab/fonts/unifont-15.1.02.otf') format('opentype'), 
         url('./fonts/unifont-15.1.02.otf') format('opentype');
    font-weight: normal; /* 可选：字重 */
    font-style: normal; /* 可选：样式 */
}

p {
    word-wrap: break-word; /* 允许长单词/URL换行 */
    word-break: break-all;
    max-width: 100%; /* 限制最大宽度为父容器宽度（避免溢出） */
    /* 可选：添加内边距让内容更美观 */
    padding: 5px 5px;
    margin: 0;
}
/* 分割线样式 */
body {
    font-family: 'unifont-15.1.02', sans-serif;
    line-height: 1.2;
    font-size: 100%;
    padding-bottom: 80px;
    margin-left: 10%;
    margin-right: 10%;
    max-width: 100%;
}
/* 下载内容样式 - 移动端优化边距 */
.download-content {
    margin-left: 1rem;
    margin-top: -0.2rem;
    max-width: 100%;
}
/* 每个下载项的容器（新增），方便批量搜索处理 */
.download-item {
    margin-bottom: 2px;
    /*         margin-left: 10%;
    margin-right: 10%;*/
}

a:link {
    text-decoration: none;
}
/* 未访问链接 */
a:visited {
    text-decoration: none;
}
/* 已访问链接 */
a:hover {
    text-decoration: underline;
}
/* 鼠标移动到链接上 */
a:active {
    text-decoration: underline;
}
/* 鼠标点击时 */
.center {
    text-align: center;
}

.text-link {
    font-size: 0.850em;
}

.bottom-text {
    position: fixed; /* 固定定位，相对于浏览器视口 */
    bottom: 0; /* 距离视口底部0像素 */
    left: 0; /* 距离视口左侧0像素 */
    /*right: 2%;*/
    width: 100%; /* 宽度占满整个视口 */
    padding: 12px 0; /* 上下内边距，优化显示 */
    background-color: #FFFFFF;
    border-top: 1px solid #808080;
}

.form-container {
    width: 90%; /* 限定容器宽度，效果更明显 */
    margin-left: -3%; /* 容器水平居中，方便看右对齐效果 */
    text-align: left;
}

.page-header {
    text-align: center;
    margin-bottom: 48px;
}

    .page-header .label {
        display: inline-block;
        font-size: 0.85rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--accent);
        border: 1.5px solid var(--accent);
        padding: 6px 20px;
        border-radius: 50px;
        margin-bottom: 16px;
        font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
        font-weight: 500;
    }

    .page-header h1 {
        font-size: 2.4rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        color: var(--text);
        margin: 0;
    }

    .page-header .subtitle {
        margin-top: 8px;
        font-size: 1rem;
        color: var(--text-secondary);
        letter-spacing: 0.06em;
    }

.header-decor {
    display: block;
    margin: 0 auto 12px;
    width: 100%;
    max-width: 1000px;
    height: auto;
}
/*.img-row img {
    display: inline-block;
    width: 150px;
    vertical-align: middle;*/ /* 垂直居中对齐 */
/*margin-right: 10px;*/ /* 图片间距 */
/*}*/
.center-row {
    text-align: center;
}
/* 缩略图样式 */
.thumb {
    width: 400px;
    max-width: 100%;
    margin: 0 5px;
    height: auto;
    cursor: pointer;
}

.caption {
    margin-top: 2px;
    color: #888; /* 灰色字体 */
    font-size: 14px;
    text-align: center;
}
/* 可复制的特殊文字样式 */
.copyable-text {
    margin-left: 1rem;
    margin-top: -0.2rem;
    max-width: 100%;
    font-size: 0.85em; /* 缩小 */
    font-style: italic; /* 倾斜 */
    color: #888; /* 灰色 */
    cursor: pointer; /* 手型光标，暗示可点击 */
    text-decoration: underline dotted #aaa; /* 虚线下划线，增强可点击感 */
    transition: color 0.2s;
    position: relative;
}
    /* 复制成功后的短暂提示气泡 */
    .copyable-text::after {
        content: attr(data-tooltip);
        position: absolute;
        left: 50%;
        bottom: 120%;
        transform: translateX(-50%);
        background: #333;
        color: #fff;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 12px;
        font-style: normal;
        white-space: nowrap;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.2s;
    }

    .copyable-text.show-tooltip::after {
        opacity: 1;
    }

.copyable-only {
    cursor: pointer; /* 鼠标变成手型，暗示可点击 */
    position: relative; /* 如果需要气泡提示，必须保留 */
    /* 完全不设置字体、颜色、下划线等 */
}

    .copyable-only::after {
        content: attr(data-tooltip);
        position: absolute;
        left: 50%;
        bottom: 120%;
        transform: translateX(-50%);
        background: #333;
        color: #fff;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 12px;
        white-space: nowrap;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.2s;
    }
    /* 显示气泡的类（由 JS 动态添加） */
    .copyable-only.show-tooltip::after {
        opacity: 1;
    }

.copyable-text:hover {
    color: #555; /* 悬停时稍微变深 */
}