/* 在你的 app.css 或 index.css 中 */
@layer components {
    /* 假设 ExoClick 的标题类名是 .exo-native-title */
    .exo-native-widget-header {
    display:none !important;
    }
    .exo-native-widget-item-container {
    padding-right: 0px !important;
    padding-bottom: 0px !important;
}
.exo-native-widget-item-text, .exo-native-widget-item-brand {
display:none !important;
}
.exo-native-widget-outer-container {
margin-bottom: 0px !important;
margin-right: 0px !important;
}

.exo-native-widget-item-content {
    all: unset !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    /* 强制手动设置 padding */
    padding-left: 10px !important;
    padding-right: 10px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    /* 继承你的 DaisyUI 字体变量 */
    color: oklch(var(--bc) / 0.7) !important;
    font-size: 0.875rem !important;
}
.exo-native-widget-item-title {
all: unset !important;
@apply font-medium text-sm text-base-content/70 leading-relaxed line-clamp-1 break-all !important;
}

}