.content{
    margin-top: 50px;
    display: flex; /* 使用弹性布局 */
    flex-direction: row; /* 水平排列子元素 */
    justify-content: center; /* 水平居中对齐 */
    align-items: center; /* 垂直居中对齐 */
    gap: 100px;
}
h1{
    font-size: 42px;
    margin-top: 100px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500; /* 字体粗细 */
}
.p p{
    font-style: italic; /* 斜体字 */
}
p{
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;    width: 905.15px;
    line-height: 2; /* 行高为2倍字体大小 */
}
p a{
    text-decoration: none; /* 移除链接的下划线 */
    color: #1565c0;
}
p a:hover{
    text-decoration: underline; /* 鼠标悬停时链接添加下划线 */
}

.education ul li {
    padding-top: 1.5em; 
}
