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

body {
    font-family: "Arial", sans-serif;
    text-align: center;
    background-color: #ffe4e1; /* 浪漫粉色 */
    color: #d14774;
    padding: 20px;
}

#content,
#questionBox {
    margin-top: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

input,
button {
    margin-top: 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

button {
    background-color: #ff7f9c;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #ff4f70;
}
