/* 自定义链接卡片样式 */
.card-link {
    display: flex; /* 启用 Flexbox */
    flex-direction: column; /* 内容垂直排列 */
    align-items: center; /* 水平居中 */
    justify-content: center; /* 垂直居中 */
    padding: 15px;
    margin: 10px 0;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center; /* 确保文字居中 */
    min-height: 50px; /* 设置最小高度以确保有空间 */
}

.card-link:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}