/**
 * 标题列表页重定向样式
 * 覆盖手风琴样式，改为卡片跳转模式
 */

/* 隐藏手风琴展开的内容 */
.template-card .template-body {
    display: none !important;
}

/* 卡片悬停效果 */
.template-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.15) !important;
}

/* 修改箭头样式 */
.template-card .toggle-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.template-card:hover .toggle-icon {
    transform: translateX(4px);
    color: #e91e63;
}
