/* =========================================================================
   Zibll Solitude About —— 个人 About 页面样式
   UI 参考 hexo-theme-solitude 的 about 页面，配色全部走 zibll CSS 变量，
   自动适配亮色 / body.dark-theme 暗色模式。
   ========================================================================= */

#about-page {
    display: flex;
    padding-top: 1rem;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

#about-page .author-title {
    font-size: 2rem;
    font-weight: 700;
    margin: .5rem 0;
    line-height: 1;
    color: var(--key-color);
}

/* 容器微调：去掉主题卡片默认内边距的割裂感 */
.zsa-about-article.box-body {
    padding: 0;
    overflow: hidden;
}
.zsa-about-container {
    padding: 1rem 2rem 2rem;
}
@media (max-width: 768px) {
    .zsa-about-container {
        padding: .5rem .75rem 1rem;
    }
}

/* =========================================================================
   ① 作者信息：左右浮动标签 + 圆形头像
   ========================================================================= */
#about-page .author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 16px 0;
}

#about-page .author-info .author-tag-left {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#about-page .author-info .author-tag-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#about-page .author-info .author-tag {
    transform: translate(0, -4px);
    padding: 4px 12px;
    background: var(--main-bg-color);
    border: 1px solid var(--main-border-color);
    border-radius: 40px;
    margin-top: 6px;
    font-size: 17px;
    font-weight: 700;
    color: var(--main-color);
    box-shadow: 0 4px 12px var(--main-shadow);
    animation: zsa-floating 6s ease-in-out 0s infinite normal none running;
    white-space: nowrap;
}

#about-page .author-info .author-tag:nth-child(1) { animation-delay: 0s; }
#about-page .author-info .author-tag:nth-child(2) { animation-delay: .6s; }
#about-page .author-info .author-tag:nth-child(3) { animation-delay: 1.2s; }
#about-page .author-info .author-tag:nth-child(4) { animation-delay: 1.8s; }

#about-page .author-info .author-tag-left .author-tag:first-child,
#about-page .author-info .author-tag-left .author-tag:last-child {
    margin-right: -14px;
}
#about-page .author-info .author-tag-right .author-tag:first-child,
#about-page .author-info .author-tag-right .author-tag:last-child {
    margin-left: -14px;
}

#about-page .author-info .author-img {
    margin: 0 30px;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    position: relative;
    background: var(--muted-bg-color);
    user-select: none;
    transition: .3s;
    flex: 0 0 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

#about-page .author-info .author-img:hover {
    transform: scale(1.06);
}

#about-page .author-info .author-img::before {
    content: '';
    transition: 1s;
    width: 30px;
    height: 30px;
    background: #34d399;
    position: absolute;
    border-radius: 50%;
    border: 5px solid var(--body-bg-color);
    bottom: 5px;
    right: 10px;
    z-index: 2;
}

#about-page .author-info .author-img img {
    border-radius: 200px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

#about-page .author-info .author-img.zsa-avatar-fallback {
    font-size: 64px;
    color: var(--muted-3-color);
    background: linear-gradient(135deg, var(--muted-bg-color), var(--muted-bg-2-color));
}

#about-page .author-info .author-img.zsa-avatar-fallback .zsa-avatar-initial {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    /* 作者信息：与原版 solitude 一致，移动端隐藏两侧浮动标签，只留居中头像 */
    #about-page .author-info .author-tag-left,
    #about-page .author-info .author-tag-right {
        display: none;
    }
    #about-page .author-info {
        justify-content: center;
        margin-bottom: 10px;
    }
    #about-page .author-info .author-img {
        width: 132px;
        height: 132px;
        flex-basis: 132px;
        margin: 0;
        font-size: 46px;
    }
    #about-page .author-info .author-img::before {
        bottom: -2px;
        right: -2px;
        width: 22px;
        height: 22px;
    }
}

/* =========================================================================
   卡片容器（author-content）与卡片（author-content-item）
   ========================================================================= */
#about-page .author-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: .5rem;
}

@media (max-width: 768px) {
    #about-page .author-content {
        flex-direction: column;
    }
}

#about-page .author-content-item {
    flex: 4;
    border-radius: 12px;
    background: var(--main-bg-color);
    box-shadow: 0 4px 18px var(--main-shadow);
    border: 1px solid var(--main-border-color);
    position: relative;
    overflow: hidden;
    padding: 1rem 2rem;
    color: var(--main-color);
    min-height: 200px;
}

#about-page .author-content-item.single {
    width: 100%;
}

#about-page .author-content-item .card-content {
    z-index: 2;
    position: relative;
}

#about-page .author-content-item-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: var(--key-color);
}

#about-page .author-content-item-tips {
    opacity: .8;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: .5rem;
    color: inherit;
}

#about-page .author-content-item .content-bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    flex-wrap: wrap;
}

#about-page .author-content-item .content-bottom .tips {
    color: #fff;
    opacity: .9;
    font-size: 16px;
}

#about-page .author-content-item .inline-word {
    word-break: keep-all;
    white-space: nowrap;
}

/* banner 按钮（love 卡片通用） */
#about-page .banner-button-group {
    display: flex;
    align-items: center;
}

#about-page .banner-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 40px;
    background: #ffffff33;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    transition: all .3s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

#about-page .banner-button:hover {
    background: #ffffff55;
    color: #fff;
}

/* =========================================================================
   ② 内容信息：渐变卡 + 标语轮播词
   ========================================================================= */
#about-page .myInfoAndWittyWord {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    background: linear-gradient(120deg, #5b27ff 0, #00d4ff 100%);
    background-size: 200%;
    animation: zsa-gradient 15s ease infinite;
    flex: 4;
}

#about-page .myInfoAndWittyWord .title1 {
    opacity: .85;
    line-height: 1.3;
}

#about-page .myInfoAndWittyWord .title2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    margin: .5rem 0;
    color: #fff;
}

#about-page .aboutsiteTips {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    flex: 3;
}

#about-page .aboutsiteTips h2 {
    margin-right: auto;
    width: 100%;
    font-size: 40px;
    line-height: 1.06;
    letter-spacing: -.02em;
    color: var(--key-color);
    margin-top: .25rem;
}

#about-page .aboutsiteTips .mask {
    /* 高度随 h2 字号（em 继承）自适应，保证完整显示、不遮挡 */
    height: 1.2em;
    position: relative;
    overflow: hidden;
    margin-top: 4px;
}

#about-page .aboutsiteTips .mask span {
    display: block;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    background-size: 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-repeat: no-repeat;
    /* 行高与 mask 高度（1.2em）一致：translateY(±100%) 恰好整体移出 */
    line-height: 1.2;
    transition: .4s transform ease-in-out;
}

#about-page .aboutsiteTips .mask span[data-show] {
    transform: translateY(0);
    transition: .5s transform ease-in-out;
}

#about-page .aboutsiteTips .mask span[data-up] {
    transform: translateY(-100%);
    transition: .5s transform ease-in-out;
}

#about-page .aboutsiteTips .mask span:nth-child(1) { background-image: linear-gradient(45deg, #0ecffe 50%, #07a6f1); }
#about-page .aboutsiteTips .mask span:nth-child(2) { background-image: linear-gradient(45deg, #18e198 50%, #0ec15d); }
#about-page .aboutsiteTips .mask span:nth-child(3) { background-image: linear-gradient(45deg, #8a7cfb 50%, #633e9c); }
#about-page .aboutsiteTips .mask span:nth-child(4) { background-image: linear-gradient(45deg, #fa7671 50%, #f45f7f); }

/* =========================================================================
   ③ 技能：旋转图标云 + 悬停技能列表
   ========================================================================= */
#about-page .author-content-item.skills {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    min-height: 420px;
}

#about-page .author-content-item.skills .tags-group-all {
    display: flex;
    transform: rotate(0);
    transition: .3s;
}

#about-page .author-content-item.skills .tags-group-wrapper {
    margin-top: 40px;
    display: flex;
    flex-wrap: nowrap;
    animation: zsa-rowleft-quarter 30s linear infinite;
}

#about-page .author-content-item.skills .skills-style-group {
    position: relative;
    width: 100%;
}

#about-page .author-content-item.skills .skill-info {
    display: flex;
    align-items: center;
    margin-right: 10px;
    margin-top: 10px;
    background: var(--muted-bg-2-color);
    border-radius: 40px;
    padding: 5px 14px 5px 9px;
    border: 1px solid var(--main-border-color);
    font-size: 16px;
    color: var(--key-color);
}

#about-page .author-content-item.skills .etc {
    margin-right: 10px;
    margin-top: 10px;
    color: var(--muted-color);
    font-weight: 700;
}

#about-page .author-content-item.skills .skills-list {
    display: flex;
    opacity: 0;
    transition: .3s;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 10px;
}

#about-page .author-content-item.skills:hover .skills-style-group .tags-group-all {
    opacity: 0;
}

#about-page .author-content-item.skills:hover .skills-style-group .skills-list {
    opacity: 1;
}

#about-page .author-content-item.skills .skill-icon {
    width: 32px;
    height: 32px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    user-select: none;
    flex: 0 0 32px;
    overflow: hidden;
}

#about-page .author-content-item.skills .skill-icon img,
#about-page .author-content-item.skills .skill-icon svg.icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

#about-page .author-content-item.skills .skill-icon i {
    font-size: 16px;
    line-height: 1;
}

#about-page .author-content-item.skills .skill-icon .zsa-tag-text,
#about-page .tags-group-icon .zsa-tag-text {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

#about-page .author-content-item.skills .skill-name span {
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

/* 旋转图标本身 */
#about-page .tags-group-icon-pair {
    margin-left: 1rem;
    user-select: none;
    display: flex;
    flex-direction: column;
}

#about-page .tags-group-icon {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 44px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
    overflow: hidden;
}

#about-page .tags-group-icon:nth-child(even) {
    margin-top: 1rem;
    transform: translate(-46px, -12px);
}

#about-page .tags-group-icon img,
#about-page .tags-group-icon svg.icon {
    width: 56%;
    height: 56%;
    object-fit: contain;
}

#about-page .tags-group-icon i {
    line-height: 1;
}

@media (max-width: 768px) {
    #about-page .tags-group-icon {
        width: 70px;
        height: 70px;
        border-radius: 20px;
        font-size: 30px;
    }
    #about-page .author-content-item.skills .tags-group-wrapper {
        margin-top: 24px;
    }
}

/* =========================================================================
   ④ 学习经历
   ========================================================================= */
#about-page .author-content-item.careers {
    min-height: 400px;
    overflow: hidden;
}

#about-page .author-content-item.careers img {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%;
    transition: .6s;
    user-select: none;
    opacity: .75;
    pointer-events: none;
}

#about-page .author-content-item.careers .careers-group {
    margin-top: 12px;
    position: relative;
    z-index: 2;
}

#about-page .author-content-item.careers .careers-item {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

#about-page .author-content-item.careers .careers-item .circle {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    border-radius: 16px;
    flex: 0 0 16px;
}

#about-page .author-content-item.careers .careers-item .name {
    color: var(--muted-color);
    font-size: 17px;
}

/* =========================================================================
   ⑤ 人格测试 + 我的照片
   ========================================================================= */
#about-page .author-content-item.personalities {
    overflow: hidden;
    position: relative;
    flex: 6;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#about-page .author-content-item.personalities .title2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    margin: .35rem 0;
}

#about-page .author-content-item.personalities .image {
    position: absolute;
    right: -40px;
    bottom: -7rem;
    transition: transform 2s cubic-bezier(.13, .45, .21, 1.02);
    user-select: none;
    width: 240px;
    opacity: .92;
}

#about-page .author-content-item.personalities .image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
}

#about-page .author-content-item.personalities:hover .image {
    transform: rotate(-10deg);
}

#about-page .author-content-item.personalities .post-tips {
    margin-top: 1rem;
    font-size: 16px;
    color: var(--muted-color);
}

#about-page .author-content-item.personalities .post-tips a {
    color: var(--theme-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    #about-page .author-content-item.personalities {
        min-height: 320px;
    }
    #about-page .author-content-item.personalities .image {
        right: -60px;
        bottom: -5rem;
        width: 180px;
    }
}

#about-page .author-content-item.myphoto {
    height: 60%;
    min-height: 260px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 3;
}

#about-page .author-content-item.myphoto img {
    position: absolute;
    height: 100%;
    min-width: 100%;
    object-fit: cover;
    transition: .6s;
    user-select: none;
    left: 50%;
    transform: translateX(-50%);
}

#about-page .author-content-item.myphoto:hover img {
    min-width: 105%;
    transition: 2s;
}

#about-page .author-content-item.myphoto .myphoto-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    padding: .6rem 2rem;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateZ(0);
    font-size: 17px;
    letter-spacing: 1px;
    z-index: 2;
}

/* =========================================================================
   ⑥ 座右铭 + ⑦ 专长
   ========================================================================= */
#about-page .author-content-item.maxim {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    color: var(--key-color);
    min-height: 200px;
}

#about-page .author-content-item.maxim .maxim-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 30px;
}

#about-page .author-content-item.maxim .maxim-title span:first-child {
    opacity: .6;
    margin-bottom: 8px;
}

#about-page .author-content-item.buff {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(120deg, #ff27e8 0, #ff8000 100%);
    color: #fff;
    background-size: 200%;
    animation: zsa-gradient 15s ease infinite;
    min-height: 200px;
}

#about-page .author-content-item.buff .card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#about-page .author-content-item.buff .buff-title {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 32px;
}

#about-page .author-content-item.buff .buff-title span:first-child {
    opacity: .75;
    margin-bottom: 6px;
    font-size: 26px;
}

#about-page .author-content-item.buff .title1 {
    opacity: .8;
    font-size: 1rem;
    margin-bottom: .5rem;
}

@media (max-width: 768px) {
    #about-page .author-content-item {
        padding: 1rem 1.25rem;
    }
    #about-page .author-content-item-title,
    #about-page .aboutsiteTips h2,
    #about-page .myInfoAndWittyWord .title2 {
        font-size: 30px;
    }
    #about-page .author-content-item.maxim .maxim-title,
    #about-page .author-content-item.buff .buff-title {
        font-size: 24px;
    }
}

/* =========================================================================
   ⑧ 爱好 · 游戏卡片
   ========================================================================= */
#about-page .author-content-item.game {
    min-height: 300px;
    overflow: hidden;
    color: #fff;
    flex: 1 1 calc(50% - .5rem);
    display: flex;
    align-items: flex-end;
}

#about-page .author-content-item.game::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

#about-page .author-content-item.game .card-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem 1.75rem;
}

#about-page .author-content-item.game .author-content-item-title,
#about-page .author-content-item.game .author-content-item-tips {
    color: #fff;
}

/* =========================================================================
   ⑨ 喜欢 · 追番
   ========================================================================= */
#about-page .author-content-item.like-technology {
    background-size: cover;
    min-height: 260px;
    color: #fff;
    flex: 1 1 calc(50% - .5rem);
    display: flex;
    align-items: flex-end;
}

#about-page .author-content-item.like-technology.zsa-no-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

#about-page .author-content-item.like-technology::after {
    box-shadow: 0 -69px 203px 11px #050b20 inset;
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

#about-page .author-content-item.like-music {
    background-size: cover;
    min-height: 360px;
    color: #fff;
    overflow: hidden;
    flex: 1 1 calc(50% - .5rem);
    display: flex;
    align-items: flex-end;
}

#about-page .author-content-item.like-music.zsa-no-bg {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

#about-page .author-content-item.like-music::after {
    box-shadow: 0 -69px 203px 11px #0e0e0e inset;
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

#about-page .author-content-item.like-technology .author-content-item-title,
#about-page .author-content-item.like-technology .author-content-item-tips,
#about-page .author-content-item.like-music .author-content-item-title,
#about-page .author-content-item.like-music .author-content-item-tips,
#about-page .author-content-item.comic .author-content-item-title,
#about-page .author-content-item.comic .author-content-item-tips {
    color: #fff;
}

#about-page .author-content-item.comic {
    min-height: 400px;
    color: #fff;
    position: relative;
    width: 100%;
    flex-basis: 100%;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}

#about-page .author-content-item.comic .comic-box {
    width: 110%;
    height: 100%;
    display: flex;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

#about-page .author-content-item.comic .comic-box::after {
    box-shadow: 0 -69px 203px 11px #04120f inset;
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

#about-page .author-content-item.comic .author-content-item-tips,
#about-page .author-content-item.comic .author-content-item-title,
#about-page .author-content-item.comic .content-bottom {
    z-index: 3;
    color: #fff;
    position: relative;
}

#about-page .author-content-item.comic .comic-item {
    height: 100%;
    color: #fff;
    width: 20%;
    transform: skew(-10deg, 0deg);
    transition: 0.8s;
    position: relative;
    overflow: hidden;
    flex: 0 0 20%;
}

#about-page .author-content-item.comic .comic-item:hover {
    width: 46%;
    flex-basis: 46%;
}

#about-page .author-content-item.comic .comic-item:hover .comic-item-cover {
    left: 16%;
    transform: skew(10deg, 0deg) scale(1.6);
}

#about-page .author-content-item.comic .comic-item .comic-item-cover {
    position: absolute;
    top: 0;
    left: -30%;
    height: 100%;
    transform: skew(10deg, 0deg);
    object-fit: cover;
    transition: left .8s, transform .8s;
}

#about-page .author-content-item.comic .comic-item .comic-item-cover img {
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: .8s;
}

/* =========================================================================
   ⑩ 站点统计
   ========================================================================= */
#about-page .about-statistic {
    min-height: 380px;
    background-size: cover;
    color: #fff;
    overflow: hidden;
    width: 100%;
    flex-basis: 100%;
    display: flex;
    align-items: stretch;
}

#about-page .about-statistic::after {
    box-shadow: 0 -159px 173px 71px #0f1114 inset;
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

#about-page .about-statistic .card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: 100%;
}

#about-page .about-statistic .author-content-item-title,
#about-page .about-statistic .author-content-item-tips {
    color: #fff;
}

#about-page .about-statistic #statistic {
    font-size: 16px;
    border-radius: 15px;
    width: 100%;
    color: #fff;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 4px;
    margin-bottom: 2rem;
}

#about-page .about-statistic #statistic div {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 50%;
    margin-bottom: .5rem;
}

#about-page .about-statistic #statistic div span:first-child {
    opacity: .8;
    font-size: 1rem;
}

#about-page .about-statistic #statistic div span:last-child {
    font-weight: 700;
    font-size: 38px;
    line-height: 1;
    white-space: nowrap;
}

#about-page .about-statistic .post-tips {
    opacity: .85;
}

#about-page .about-statistic .banner-button {
    background: #ffffff33;
}

#about-page .about-statistic .banner-button:hover {
    background: var(--theme-color);
}

/* =========================================================================
   ⑪ 身份信息：地图 + 个人信息
   ========================================================================= */
#about-page .author-content-item-group.column {
    display: flex;
    flex-direction: column;
    width: calc(50% - (.5rem / 2));
    justify-content: space-between;
    gap: .5rem;
    flex: 8;
}

@media (max-width: 768px) {
    #about-page .author-content-item-group.column {
        width: 100% !important;
    }
}

#about-page .mapAndInfo .author-content-item.map {
    background: var(--zsa-map-light, none) no-repeat center;
    min-height: 160px;
    max-height: 400px;
    position: relative;
    overflow: hidden;
    height: 60%;
    background-size: 100%;
    transition: 1s ease-in-out;
    border: 0;
}

body.dark-theme #about-page .mapAndInfo .author-content-item.map {
    background: var(--zsa-map-dark, var(--zsa-map-light, none)) no-repeat center;
    background-size: 100%;
}

#about-page .mapAndInfo .author-content-item.map:hover {
    background-size: 120%;
    transition: 4s ease-in-out;
    background-position-x: 0;
    background-position-y: 36%;
}

#about-page .mapAndInfo .author-content-item.map .map-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, .35);
    color: #fff;
    padding: 0.6rem 2rem;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: 1s ease-in-out;
    font-size: 22px;
    transform: translateZ(0);
    font-weight: 700;
}

#about-page .mapAndInfo .author-content-item.map:hover .map-title {
    bottom: -100%;
}

@media (max-width: 768px) {
    #about-page .mapAndInfo .author-content-item.map .map-title {
        padding: .75rem 1rem;
        font-size: 16px;
    }
}

#about-page .author-content-item.selfInfo {
    display: flex;
    min-height: 100px;
    max-height: 400px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    height: 40%;
    flex-direction: row;
}

#about-page .author-content-item.selfInfo div {
    display: flex;
    flex-direction: column;
    margin: .5rem 1.5rem .5rem 0;
}

#about-page .author-content-item.selfInfo .selfInfo-title {
    opacity: .8;
    font-size: 1rem;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--muted-color);
}

#about-page .author-content-item.selfInfo .selfInfo-content {
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
}

@media (max-width: 1300px) {
    #about-page .author-content-item.selfInfo {
        height: 70%;
    }
}

/* =========================================================================
   ⑫ 建站原因 + ⑬ 十年之约（create-site-post 共用）
   ========================================================================= */
#about-page .create-site-post {
    width: 100%;
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 160px;
}

#about-page .create-site-post .author-content-item-title,
#about-page .create-site-post .author-content-item-tips,
#about-page .create-site-post p {
    color: var(--key-color);
}

#about-page .create-site-post p {
    margin: .75rem 0 0;
    color: var(--muted-color);
    max-width: 720px;
    line-height: 1.8;
}

#about-page .zsa-cause-content {
    margin-top: .5rem;
    color: var(--muted-color);
    line-height: 1.9;
    max-width: 820px;
}

#about-page .tenyear-timeline {
    width: 100%;
    background-color: var(--muted-bg-color);
    position: relative;
    /* 创建独立层叠上下文，隔离 zibll 全局 .progress { z-index: -1 } 的干扰 */
    z-index: 0;
    overflow: visible;
    margin: 24px 0 6px;
    border-radius: .5rem;
    height: 2.5rem;
}

#about-page .tenyear-timeline .progress {
    width: 0;
    height: 100%;
    background-color: var(--theme-color);
    position: absolute;
    /* 覆盖 zibll 全局 .progress { z-index: -1 }：
       否则进度条会被压在 .tenyear-timeline 灰色背景之下，肉眼不可见 */
    z-index: 1;
    /* 覆盖 zibll 全局 .progress { left:0; right:0; width:100% }：
       left 定死为 0、right 复位，宽度百分比只从左侧伸展 */
    left: 0;
    right: auto;
    top: 0;
    bottom: auto;
    /* 隔离 bootstrap .progress 的盒样式干扰 */
    margin: 0;
    overflow: hidden;
    box-shadow: none;
    border-radius: .5rem;
    /* 宽度由 JS 直接设置为行内样式；此处仅做平滑过渡，
       避免依赖 @keyframes 内 var() 动态解析导致的兼容性问题 */
    transition: width 1.2s ease;
}

#about-page .tenyear-timeline .past-time {
    transform: scaleX(0);
    transform-origin: left;
    width: 2px;
    height: 20px;
    position: absolute;
    background: rgba(255, 255, 255, .8);
    top: 10px;
    left: 0;
    right: auto;
    bottom: auto;
    z-index: 2;
    transition: transform 1.2s ease;
}

#about-page .percentage-label {
    position: absolute;
    left: 0;
    font-size: 15px;
    color: #fff;
    font-weight: bold;
    /* 放在时间条内部并与进度条同层，白字压在深色进度条上可见 */
    top: 8px;
    line-height: 1;
    white-space: nowrap;
    transition: left 0.5s linear;
    visibility: hidden;
    z-index: 3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .25);
}

#about-page .time-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#about-page .time-labels>div {
    font-size: 16px;
    color: var(--muted-color);
}

/* =========================================================================
   ⑭ 赞赏榜单
   ========================================================================= */
#about-page .author-content-item.single.reward {
    overflow: unset;
    width: 100%;
    flex-basis: 100%;
}

#about-page .author-content-item.single.reward .author-content-item-title {
    color: var(--key-color);
}

#about-page .reward-list-updateDate {
    color: var(--muted-color);
    font-size: 16px;
}

#about-page .author-content-item-description {
    font-size: 17px;
    margin-top: .5rem;
    color: var(--muted-color);
}

#about-page .reward-list-all {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 1rem -.125rem .5rem;
}

#about-page .reward-list-item {
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--main-border-color);
    width: calc((100% / 6) - .25rem);
    margin: 0 .125rem .5rem .125rem;
    box-shadow: 0 4px 12px var(--main-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--muted-bg-2-color);
}

@media (max-width: 1200px) {
    #about-page .reward-list-item { width: calc((100% / 4) - .25rem); }
}
@media (max-width: 900px) {
    #about-page .reward-list-item { width: calc((100% / 2) - .25rem); }
}
@media (max-width: 768px) {
    #about-page .reward-list-item { width: calc((100% / 2) - .25rem); }
}

#about-page .reward-list-item-name {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: .25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--key-color);
}

#about-page .reward-list-bottom-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#about-page .reward-list-item-money {
    padding: 5px 9px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    white-space: nowrap;
    font-weight: 700;
    background: var(--theme-color);
}

#about-page .reward-list-item-time {
    font-size: 14px;
    color: var(--muted-color);
    white-space: nowrap;
    padding-left: 6px;
}

#about-page .reward-list-tips p {
    font-size: 14px;
    color: var(--muted-color);
}

/* =========================================================================
   动画
   ========================================================================= */
@keyframes zsa-floating {
    0% { transform: translate(0, -4px); }
    50% { transform: translate(0, 6px); }
    100% { transform: translate(0, -4px); }
}

@keyframes zsa-gradient {
    0% { background-position: 0 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0 50%; }
}

@keyframes zsa-rowleft-quarter {
    from { transform: translateX(-25%); }
    to { transform: translateX(-75%); }
}

/* =========================================================================
   滚动入场动画（轻量等效）
   JS 可用时（body 含 .zsa-js）初始隐藏，滚动进入视野后逐个出现；
   JS 不可用时（无 .zsa-js）完全正常显示，不阻塞内容。
   ========================================================================= */
body.zsa-js #about-page .author-content-item {
    opacity: 0;
    transform: translateY(24px);
    animation: zsa-slide-in .6s ease forwards;
    animation-play-state: paused;
}

body.zsa-js #about-page .author-content-item.zsa-in-view {
    animation-play-state: running;
}

@keyframes zsa-slide-in {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 尊重系统减弱动效设置 */
@media (prefers-reduced-motion: reduce) {
    body.zsa-js #about-page .author-content-item {
        animation: none;
        opacity: 1;
        transform: none;
    }
    #about-page .author-info .author-tag,
    #about-page .myInfoAndWittyWord,
    #about-page .author-content-item.buff,
    #about-page .tags-group-wrapper {
        animation: none;
    }
}

/* =========================================================================
   响应式 · 多尺寸设备适配
   断点：1400px(超宽) / 1200px(大平板) / 992px(平板横屏) / 768px(平板竖屏)
        / 560px(大手机) / 480px(手机) / 380px(小手机)
   ========================================================================= */

/* ---------- ≤1400px：超大屏限制卡片过宽，保持呼吸感 ---------- */
@media (max-width: 1400px) {
    #about-page .author-content-item.skills .tags-group-icon {
        width: 88px;
        height: 88px;
        border-radius: 24px;
        font-size: 38px;
    }
    #about-page .author-content-item.skills .tags-group-icon:nth-child(even) {
        transform: translate(-40px, -10px);
    }
}

/* ---------- ≤1200px：大平板 / 小型桌面 ---------- */
@media (max-width: 1200px) {
    #about-page .author-content-item.skills {
        min-height: 390px;
    }
    #about-page .author-content-item.game,
    #about-page .author-content-item.like-technology,
    #about-page .author-content-item.like-music {
        flex-basis: calc(50% - .5rem);
    }
    /* 漫画：触屏/窄屏上保留 5 联但缩小间隔 */
    #about-page .author-content-item.comic .comic-box {
        width: 115%;
    }
}

/* ---------- ≤992px：平板横屏，双列降为更均衡比例 ---------- */
@media (max-width: 992px) {
    #about-page .author-info .author-img {
        width: 150px;
        height: 150px;
        flex-basis: 150px;
        margin: 0 22px;
    }
    #about-page .author-info .author-img::before {
        width: 24px;
        height: 24px;
    }
    /* 技能云图标继续收敛 */
    #about-page .author-content-item.skills .tags-group-icon {
        width: 74px;
        height: 74px;
        border-radius: 20px;
        font-size: 32px;
    }
    #about-page .author-content-item.skills .tags-group-icon:nth-child(even) {
        transform: translate(-34px, -8px);
    }
    #about-page .author-content-item.skills .tags-group-wrapper {
        margin-top: 30px;
    }
    /* 座右铭 / 专长大字收敛 */
    #about-page .author-content-item.maxim .maxim-title,
    #about-page .author-content-item.buff .buff-title {
        font-size: 28px;
    }
    #about-page .myInfoAndWittyWord .title2 {
        font-size: 32px;
    }
}

/* ---------- ≤768px：平板竖屏 / 大手机，全部单列 ---------- */
@media (max-width: 768px) {
    #about-page {
        padding-top: .25rem;
        gap: .35rem;
    }

    #about-page .author-title {
        font-size: 1.6rem;
        margin: .35rem 0;
    }

    /* 作者信息：头像尺寸收缩（标签横排规则见上方 768px 断点） */
    #about-page .author-info {
        margin-bottom: 10px;
    }
    #about-page .author-info .author-img {
        width: 132px;
        height: 132px;
        flex-basis: 132px;
        margin: 0;
        font-size: 46px;
    }
    #about-page .author-info .author-img::before {
        bottom: -2px;
        right: -2px;
        width: 22px;
        height: 22px;
    }

    /* 内容信息两卡均全宽 */
    #about-page .author-content {
        gap: .5rem;
    }
    #about-page .author-content-item {
        flex-basis: 100% !important;
        width: 100% !important;
        min-height: 0;
        padding: 1rem 1.1rem;
    }
    #about-page .myInfoAndWittyWord {
        min-height: 170px;
    }
    #about-page .aboutsiteTips h2 {
        font-size: 30px;
    }

    /* 技能 / 经历 */
    #about-page .author-content-item.skills {
        min-height: 300px;
        overflow: hidden;
    }
    #about-page .author-content-item.careers {
        min-height: 260px;
    }
    #about-page .author-content-item.careers img {
        opacity: .45;
        bottom: 0;
    }

    /* 人格 / 照片 */
    #about-page .author-content-item.personalities {
        min-height: 280px;
    }
    #about-page .author-content-item.personalities .image {
        width: 150px;
        right: -30px;
        bottom: -4rem;
    }
    #about-page .author-content-item.myphoto {
        min-height: 230px;
    }

    /* 座右铭 / 专长 */
    #about-page .author-content-item.maxim .maxim-title,
    #about-page .author-content-item.buff .buff-title {
        font-size: 24px;
    }
    #about-page .author-content-item.maxim,
    #about-page .author-content-item.buff {
        min-height: 160px;
    }

    /* 游戏 / 喜欢卡片单列 */
    #about-page .author-content-item.game,
    #about-page .author-content-item.like-technology,
    #about-page .author-content-item.like-music {
        min-height: 230px;
    }

    /* 漫画：5 联在窄屏改 3 联轮换，避免过窄 */
    #about-page .author-content-item.comic {
        min-height: 340px;
    }
    #about-page .author-content-item.comic .comic-box {
        width: 125%;
    }
    #about-page .author-content-item.comic .comic-item {
        flex-basis: 33.333%;
        width: 33.333%;
    }
    #about-page .author-content-item.comic .comic-item:hover {
        flex-basis: 50%;
        width: 50%;
    }
    #about-page .author-content-item.comic .comic-item:hover .comic-item-cover {
        left: 6%;
        transform: skew(10deg, 0deg) scale(1.5);
    }

    /* 统计 */
    #about-page .about-statistic {
        min-height: 320px;
    }
    #about-page .about-statistic #statistic div span:last-child {
        font-size: 26px;
    }

    /* 地图 / 身份信息 */
    #about-page .mapAndInfo .author-content-item.map {
        min-height: 140px;
        margin-bottom: 0;
    }
    #about-page .author-content-item.selfInfo {
        height: auto;
        padding: .75rem 1.1rem;
    }
    #about-page .author-content-item.selfInfo .selfInfo-content {
        font-size: 22px;
    }
    #about-page .author-content-item.selfInfo div {
        margin: .4rem 1rem .4rem 0;
    }

    /* 十年之约 */
    #about-page .tenyear-timeline {
        height: 2rem;
    }
    #about-page .percentage-label {
        font-size: 14px;
        top: 6px;
    }
}

/* ---------- ≤560px：主流手机 ---------- */
@media (max-width: 560px) {
    #about-page .author-content-item {
        border-radius: 10px;
        padding: .9rem 1rem;
    }
    #about-page .author-content-item-title {
        font-size: 27px;
    }
    #about-page .myInfoAndWittyWord .title2 {
        font-size: 30px;
    }
    #about-page .aboutsiteTips h2 {
        font-size: 26px;
    }
    /* 轮播词高度已随 h2 字号通过 em 自适应，无需手动像素覆盖 */
    #about-page .skill-name span {
        font-size: 15px;
    }
    #about-page .author-content-item.skills .skill-icon {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }
    #about-page .reward-list-item {
        width: calc(100% - .25rem) !important;
        flex-basis: 100%;
    }
    #about-page .mapAndInfo .author-content-item.map .map-title {
        font-size: 17px;
        padding: .6rem 1rem;
    }
    #about-page .author-content-item.game .card-content {
        padding: .9rem 1.1rem;
    }
    #about-page .author-content-item.personalities .post-tips {
        font-size: 15px;
    }
}

/* ---------- ≤480px：小屏手机 ---------- */
@media (max-width: 480px) {
    #about-page .author-info .author-img {
        width: 112px;
        height: 112px;
        flex-basis: 112px;
        font-size: 40px;
    }
    #about-page .author-info .author-img::before {
        width: 18px;
        height: 18px;
        border-width: 4px;
        bottom: -2px;
        right: -2px;
    }
    /* 技能圆标更小 */
    #about-page .author-content-item.skills .tags-group-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        font-size: 26px;
    }
    #about-page .author-content-item.skills .tags-group-icon:nth-child(even) {
        transform: translate(-28px, -6px);
    }
    #about-page .author-content-item.skills .tags-group-wrapper {
        margin-top: 22px;
    }
    /* 漫画 3 联保持 */
    #about-page .author-content-item.comic .comic-item {
        flex-basis: 50%;
        width: 50%;
    }
    #about-page .author-content-item.comic .comic-item:hover {
        flex-basis: 60%;
        width: 60%;
    }
    #about-page .banner-button {
        padding: 9px 16px;
        font-size: 15px;
    }
    #about-page .time-labels>div {
        font-size: 14px;
    }
}

/* ---------- ≤380px：超小屏 ---------- */
@media (max-width: 380px) {
    #about-page .author-content-item.selfInfo .selfInfo-content {
        font-size: 20px;
    }
    #about-page .author-content-item.selfInfo div {
        margin-right: .6rem;
    }
    #about-page .aboutsiteTips h2 {
        font-size: 23px;
    }
    #about-page .about-statistic #statistic div {
        width: 100%;
    }
    #about-page .about-statistic #statistic div span:last-child {
        font-size: 24px;
    }
}

/* ---------- 触屏设备：无 hover，技能列表常显 ----------
   参考主题 via :hover，但触屏无法悬停；在悬停能力缺失时
   直接展示技能列表（tags 旋转云隐藏），保证信息可读。 */
@media (hover: none) and (pointer: coarse) {
    #about-page .author-content-item.skills .tags-group-all {
        opacity: 0;
        height: 0;
        margin: 0;
        display: none;
    }
    #about-page .author-content-item.skills .skills-style-group .skills-list {
        opacity: 1;
        position: relative;
        margin-top: 8px;
    }
    #about-page .author-content-item.skills .skills-style-group {
        margin-top: 14px;
    }
    /* 我的照片悬停缩放改为轻微呼吸，避免误触发 */
    #about-page .author-content-item.myphoto img {
        min-width: 105%;
    }
    /* 漫画 hover 用 :active 近似反馈 */
    #about-page .author-content-item.comic .comic-item:active {
        flex-basis: 50%;
        width: 50%;
    }
    #about-page .author-content-item.comic .comic-item:active .comic-item-cover {
        left: 12%;
        transform: skew(10deg, 0deg) scale(1.45);
    }
}