.title-icon {
    width: 60px;  
    height: auto; 
    vertical-align: middle; /* 图片和文字垂直居中 */
    position: relative; /* 让它可以移动 */
    top: -4px; /* 向上移动 3px，你可以调整数值 */
}

body {
    font-family: "Arial", sans-serif;
    text-align: center;
    background-color: #f8f9fa;
    color: #333;
    padding: 20px;
}

.profile-container {
    max-width: 600px;
    margin: auto;
}

/* 标题 */
h1 {
    font-size: 28px;
    color: #d14774;
    margin-bottom: 20px;
}

/* 档案卡片 */
.profile-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    line-height: 1.8;
}

/* 让 "返回" 按钮更有趣 */
.back-link {
    display: block;
    margin-top: 20px;
    text-decoration: none;
    color: #d14774;
    font-weight: bold;
    border-bottom: 2px solid #d14774;
    padding-bottom: 5px;
    transition: 0.3s;
}

.back-link:hover {
    color: #ff4f70;
    border-bottom: 2px solid #ff4f70;
}

/* 仅针对 .music-link 内的 a 标签 */
.music-link a {
    text-decoration: none;  /* 去掉下划线 */
    color: red;  /* 变成红色 */
    font-weight: bold;  /* 加粗 */
}

/* 鼠标悬停时的效果 */
.music-link a:hover {
    color: darkred; /* 悬停时变成深红色 */
}

