.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333; /* 文本颜色 */
    font-size: 16px; /* 文本大小 */
}

.info-block i {
    font-size: 24px; /* 图标大小 */
    color: #5cb85c; /* 图标颜色，可以调整 */
}

.info-block a {
    color: inherit; /* 链接颜色继承文本颜色 */
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline; /* 鼠标悬停时下划线 */
}

.zs-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}