/* 关于页面头像 */
#about-page .author-info {
    display: flex;
    align-items: center;
    margin: 0 0 16px;
}

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

#about-page .author-tag-left .author-tag:first-child, #about-page .author-tag-left .author-tag:last-child {
    margin-right: -16px;
}
#about-page .author-tag-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
#about-page .author-tag:nth-child(1) {
    animation-delay: 0s;
}
#about-page .author-tag:nth-child(2) {
    animation-delay: .6s;
}
#about-page .author-tag:nth-child(3) {
    animation-delay: 1.2s;
}
#about-page .author-tag:nth-child(4) {
    animation-delay: 1.8s;
}
#about-page .author-tag {
    transform: translate(0, -4px);
    padding: 1px 8px;
    background: var(--heo-card-bg);
    border: var(--style-border-always);
    border-radius: 40px;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--heo-shadow-lightblack);
    animation: 6s ease-in-out 0s infinite normal none running floating;
}
#about-page .author-img {
    margin: 0 30px;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    position: relative;
    background: var(--heo-secondbg);
    user-select: none;
    transition: .3s;
}
#about-page .author-img #lottie_avatar {
    border-radius: 200px;
    overflow: hidden;
    width: 180px;
    height: 180px;
}

/* 关于页面标题 */
#about-page .author-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0 2rem 0;
    line-height: 1;
}

/* 面板样式 */
.author-page-content {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.author-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: .5rem;
}

.author-content-item {
    width: 49%;
    border-radius: 12px;
    background: var(--heo-card-bg);
    border: var(--style-border-always);
    box-shadow: var(--heo-shadow-border);
    position: relative;
    padding: 1rem 2rem;
    overflow: hidden;
}

@media screen and (min-width: 1300px) {
    .author-content-item {
        animation: slide-in .6s 0s backwards;
    }
}

/* myInfoAndSayHello */
#about-page .myInfoAndSayHello {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--heo-white);
    background: linear-gradient(120deg, #9a79fa 0, #00d4ff 100%);
    background-size: 200%;
    min-height: 175px;
}

#about-page .myInfoAndSayHello .title1 {
    opacity: .8;
    line-height: 1.3;
}

#about-page .myInfoAndSayHello .title2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    margin: .5rem 0;
}

.inline-word {
    word-break: keep-all;
    white-space: nowrap;
}

#about-page .myInfoAndSayHello .title1 {
    opacity: .8;
    line-height: 1.3;
}

.inline-word {
    word-break: keep-all;
    white-space: nowrap;
}

/* 动画组件 */
@keyframes rowleft {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes rowup {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(-50%)
    }
}

@keyframes  floating {
    0% {
        transform: translate(0, -4px);
    }

    50% {
        transform: translate(0, 4px);
    }

    100% {
        transform: translate(0, -4px);
    }
}
/* 移动端页面 */
@media screen and (max-width: 768px) {
    .author-content {
        margin-top: 0;
        flex-direction: column;
    }
    .author-content-item {
        width: 100% !important;
        padding: 1rem;
    }
    #about-page .author-tag-left, #about-page .author-tag-right {
        display: none;
    }
    .author-content-item.skills {
        max-width: 100%!important;
    }
    .author-content-item.social{
        max-width: 100%!important;
    }
}



/* hover
@media (hover: hover) {
    .author-content-item.skills:hover .skills-style-group .skills-list {
        opacity: 1;
    }
} */