.container {
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    width: 100%;
}

.image {
    margin-right: 15px; /* 图片和文字之间的间距 */
}

.text-container {
    display: flex;
    flex-direction: column; /* 使标题和文字垂直排列 */
}

.title {
    margin: 0; /* 移除默认的外边距 */
}

.description {
    margin-top: 2px; /* 在标题和文字之间添加一些间距 */
}

