.main-text {
    margin-left: 200px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.section {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    margin-bottom: 50px;
    gap: 30px;
}

.section_title {
    display: grid;
    align-self: flex-start;
    margin-left: 10px;
    place-items: center;
    height: 70px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 35px;
    background-color: #ffcc85;
    border: 3px solid #e88d61;
}

.section_title p {
    margin: auto;
    font-size: 30px;
    font-family: 'HoboFont', sans-serif;
    color: #bb5220;
}

.block {
    border-radius: 50px;
    width: 100%;
    padding: 30px;
    background-color: #f1f3ff;
}

.border-block {
    border-radius: 50px;
    width: 100%;
    padding: 30px;
    background-color: #bfc5f5;
    border: 3px solid #7b83cd;
}

.flex-column {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 20px;
    width: 100%;
}

.flex-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    width: 100%;
}

.subtitle {
    font-family: 'HoboFont';
    font-size: 32px;
    font-weight: bold;
    text-decoration: none;
    /* 移除下划线 */
    transition: color 0.3s;
    /* 添加颜色变化的过渡效果 */
    color: #000;
    /* 默认文字颜色 */
}

.subsubtitle {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    /* 移除下划线 */
    transition: color 0.3s;
    /* 添加颜色变化的过渡效果 */
    color: #000;
    /* 默认文字颜色 */
    font-family: 'Times New Roman';
}

.subtitle:hover {
    color: #ff7af5;
    /* 悬停时的文字颜色 */
}

.image-block {
    width: 50%;
}

.image-block img {
    width: 100%;
    height: auto;
}

.text-block {
    width: 50%;
}

.text-block p {
    font-family: 'Times New Roman';
    font-size: 20px;
    line-height: 1.5;
}

.quote-text {
    color: #4e137b;
    font-size: 15px;
    line-height: 1.3;
    font-style: italic;
}

.reference {
    font-style: italic;
}