/* ========== 发现页样式 ========== */

/* 圈子卡片 */
.circle-card {
    transition: all 0.2s ease;
}

.circle-card:active {
    transform: scale(0.98);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 圈子列表项 */
.circle-item {
    transition: background 0.2s ease;
}

.circle-item:active {
    background: #f9f9f9;
}

/* 话题项 */
.topic-item {
    transition: background 0.2s ease;
}

.topic-item:active {
    background: #f9f9f9;
}

/* 情绪仪表盘 */
.sentiment-gauge {
    position: relative;
    width: 200px;
    height: 100px;
    margin: 0 auto;
}

/* 风口板块卡片 */
.sector-item {
    transition: all 0.2s ease;
}

.sector-item:active {
    transform: scale(0.98);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 涨停股池项 */
.stock-pool-item {
    transition: all 0.2s ease;
}

.stock-pool-item:active {
    transform: scale(0.95);
    background: #ffeaea;
}
