#hu_top_img {
    width: calc(100% + 80px);
    height: auto;
    margin: -70px -40px 0 -40px;
    padding-top: 40%;
    background: url(/img/background_1.png) no-repeat center center;
    background-size: 100% auto;
    border-radius: 8px 8px 0 0;
    position: relative;
}

#hu_avatar {
    width: calc(160px - 1vw);
    height: calc(160px - 1vw);
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 50%;
    bottom: -80px;
    transition: transform 0.5s ease;
    transform-origin: center center;
    transform: translateX(-50%) rotate(0deg);
}

#hu_avatar:hover {
    transform: translateX(-50%) rotate(360deg);
}

#hu_name {
    margin-top: 70px;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
}

#hu_desc {
    margin-top: 5px;
    font-size: 18px;
    text-align: center;
}

#hu_hitokoto {
    margin-top: 5px;
    text-align: center;
}

.navbar {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.navbar a {
    color: #000;
    white-space: nowrap;
}

.navbar a:hover {
    color: #1e0ceb;
}

.navbar i {
    font-size: 20px;
}

.navbar img {
    transform: translateY(8px);
    width: 27px;
    height: 27px;
}

section {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 20px;
    margin-top: 20px;
}

section .title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.title i {
    margin-right: 10px;
}

/* 联系方式 */
section .contact {
    margin-left: 100px;
}

.contact i {
    margin-right: 5px;
}

/* 视频主页 */
section .video {
    margin-left: 100px;
}

/* 内容平台 */
section .content-platform {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 40px;
}

.content-platform .card {
    position: relative;
    width: 60px;
    height: 100px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.content-platform a {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-platform img {
    width: 90%;
    height: 90%;
    display: block;
    margin: 0;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform-origin: center center;
}

.card:hover img {
    transform: scale(1.1);
}

.content-platform .card-desc {
    opacity: 0;
    position: absolute;
    top: 66px;
    left: 50%;
    padding: 0 5px;
    white-space: nowrap;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 1px solid #fff;
    border-radius: 8px;
    transition: transform 1s ease;
    pointer-events: none;
    z-index: 2;
}

.card:hover .card-desc {
    opacity: 1;
}

/* 音乐 */
section .musician {
    padding-left: 100px;
}

section .music {
    margin: 20px 10px 0;
}

/* 成长箴言 */
section #playBtn {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    font-size: 14px;
    color: white;
    background-color: blue;
    box-shadow: 0 4px 12px rgba(232, 74, 67, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
}

section .proverb {
    font-size: 14px;
    line-height: 2;
    text-align: center;
}

.proverb .title-1 {
    font-size: 16px;
    color: red;
}

.proverb .title-2 {
    font-size: 16px;
    color: blue;
}

/* 更多 */
/* 一言打字动画 */
#hitokoto-type {
    text-indent: 2em;
    text-align: justify;
    line-height: 2;
    margin: 10px 0 16px;
}

.cursor {
    display: inline-block;
    vertical-align: middle;
    width: 2px;
    height: 20px;
    background-color: #333333;
    animation: blink 0.5s infinite alternate;
    margin-left: 2px;
    transform: translateY(-2px);
}

@keyframes blink {
    from { opacity: 1; }
    to { opacity: 0; }
}

section .more {
    text-indent: 2em;
    text-align: justify;
    line-height: 2;
}

@media (max-width: 768px) {

    section .contact,
    section .video {
        margin-left: 0;
        text-align: left;
    }

    section .musician {
        padding-left: 0;
        text-align: left;
    }

    .navbar,
    section .content-platform {
        gap: 10px 20px;
    }

    .content-platform .card {
        height: 60px;
    }
}