.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: #ffe4e1;
    color: #d14774;
    padding: 20px;
}

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

h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* 信件的样式 */
.letter {
    background: rgba(255, 255, 255, 0.8); /* 轻微透明背景 */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
    text-align: left;
}

/* "这是什么？点一下" 按钮 */
.profile-link {
    display: block;
    margin-top: 20px;
    text-decoration: none;
    color: #d14774;
    font-weight: bold;
    transition: 0.3s;
}

.profile-link:hover {
    color: #ff4f70;
}

/* 让 "返回" 按钮更有趣 */
.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;
}