/* 生肖属相查询工具页 */

.chaxun-form {
    grid-template-columns: 1fr 1fr;
}

/* 结果卡片 */
.cx-result {
    margin-top: 1.5rem;
}

.cx-main-card {
    text-align: center;
    padding: 1.8rem 1.5rem;
    background: linear-gradient(135deg, #fef9ec 0%, #fef3c7 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.cx-emoji {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.cx-zodiac {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.3rem;
}

.cx-ganzhi {
    font-size: 1rem;
    color: #92400e;
    font-weight: 600;
}

/* 信息格子 */
.cx-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.cx-info-item {
    padding: 0.8rem;
    background: #f8f9fb;
    border: 1px solid #e8eaf0;
    border-radius: 8px;
}

.cx-info-label {
    font-size: 0.78rem;
    color: #999;
    margin-bottom: 0.3rem;
}

.cx-info-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: #333;
}

/* 春节提示 */
.cx-chunjie-tip {
    padding: 0.7rem 1rem;
    background: #fff8e1;
    border: 1px solid #ffd54f;
    border-left: 4px solid #f59e0b;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #7c4e00;
    line-height: 1.6;
}

/* 生肖特点网格 */
.zodiac-traits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.trait-card {
    padding: 0.9rem 0.7rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
}

.trait-emoji {
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.trait-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.trait-desc {
    font-size: 0.72rem;
    color: #888;
    line-height: 1.4;
}

@media (max-width: 600px) {
    .chaxun-form {
        grid-template-columns: 1fr;
    }
    .cx-info-grid {
        grid-template-columns: 1fr;
    }
    .zodiac-traits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cx-emoji {
        font-size: 3rem;
    }
}
