/* 自定义飞书风格字体与配色 */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    background-color: #ffffff;
    color: #1f2329; /* 飞书深灰 */
}
.feishu-blue {
    color: #3370ff;
}
.bg-feishu-blue {
    background-color: #3370ff;
}
.hover-bg-feishu-dark:hover {
    background-color: #285ecf;
}
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid #e2e6ea;
}
/* 占位图样式 */
.placeholder-img {
    background-color: #f0f2f5;
    /* border: 2px dashed #cbd5e1; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.9rem;
    text-align: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}
.placeholder-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #3370ff;
    color: white;
    padding: 2px 8px;
    font-size: 10px;
    border-radius: 4px;
}

/* 卡片悬停动画效果 */
.card-hover-effect {
    transition: transform 0.3s ease;
}

.card-hover-effect:hover {
    transform: translateY(-2px);
}

/* 为所有卡片添加悬停效果 */
.p-8.bg-white.rounded-2xl,
.bg-white.p-6.rounded-xl {
    transition: transform 0.3s ease;
}

.p-8.bg-white.rounded-2xl:hover,
.bg-white.p-6.rounded-xl:hover {
    transform: translateY(-2px);
}
