
.button-container {
    display: flex;
    align-items: center;
    cursor: pointer; 
    padding: 10px; /* 添加内边距作为间隔 */
    background-color: #c1c1c1; /* 默认背景色 */
    border-radius: 10px; /* 为整个容器添加圆角 */
   width: 70%; 
    margin-left: auto;
    margin-right: auto;
}

.button-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover; /* 确保图片始终覆盖整个容器 */
    margin-right: 10px; /* 右边距，以便与文本分开 */
}

.button-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.title-first-line {
    font-size: 1.5em;
    color: #000;
    margin-bottom: 5px; 
}

.title-second-line {
    font-size: 0.85em;
    color: #000;
}


.button-container:hover  {
    background-color: #e9e9e9; 
}