Comprehensive divination service with interactive sessions and beautiful HTML reports.
玄学推算 ≠ 现实分析
When user requests fortune-telling:
| Method | Info Required | Difficulty | Best For |
|---|---|---|---|
| -------- | -------------- | ------------ | ---------- |
| I Ching | Question + 3 coins | Medium | Decision making, future trends |
| Ba Zi | Birth date/time/place | Hard | Deep destiny analysis |
| Zi Wei | Birth date/time/place | Hard | Chinese astrology |
| Tarot | Question + cards | Medium | Life guidance |
| Numerology | Name + birth date | Easy | Personality insights |
| Palmistry | Palm photo | Medium | Character reading |
| Runes | Question + intent | Easy | Quick guidance |
For divination methods ONLY:
IMPORTANT: Do NOT ask for or use user's real-world background information such as:
The divination tools themselves provide the information - we don't need user context.
Critical: ALL information comes from the divination, NOT from user input.
【卦象/命盘推算】
↓
本卦/变卦显示...
用神/主星状态...
五行生克关系...
↓
【玄学结论】
→ 根据卦象/命盘推算的结果
→ 不依赖任何现实信息
Create a beautiful HTML card:
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>易经卦象解读</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;700&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Noto Serif SC', serif;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
min-height: 100vh;
padding: 20px;
}
.card {
max-width: 600px;
margin: 0 auto;
background: linear-gradient(145deg, #1e1e32 0%, #252545 100%);
border-radius: 24px;
padding: 40px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 100px rgba(255, 215, 0, 0.1);
border: 1px solid rgba(255, 215, 0, 0.2);
}
.title { font-size: 28px; color: #ffd700; text-align: center; margin-bottom: 8px; }
.subtitle { color: #8b8b9e; font-size: 14px; text-align: center; margin-bottom: 30px; }
.question-box {
background: rgba(255, 215, 0, 0.1);
border: 1px solid rgba(255, 215, 0, 0.3);
border-radius: 16px;
padding: 20px;
margin-bottom: 30px;
text-align: center;
}
.question-label { color: #ffd700; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.question-text { color: #fff; font-size: 18px; }
.hexagrams { display: flex; justify-content: center; gap: 40px; margin-bottom: 30px; }
.hexagram { text-align: center; }
.hexagram-name { color: #ffd700; font-size: 20px; margin-bottom: 10px; }
.hexagram-symbol { font-size: 48px; }
.divider { text-align: center; margin: 20px 0; color: #666; }
.result-box {
background: rgba(0, 0, 0, 0.3);
border-radius: 12px;
padding: 20px;
margin-bottom: 20px;
}
.result-main { color: #4ade80; font-size: 24px; font-weight: bold; text-align: center; margin-bottom: 15px; }
.result-detail { color: #ccc; font-size: 14px; line-height: 1.8; }
.advice-box {
background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
border: 1px solid rgba(255, 215, 0, 0.3);
border-radius: 12px;
padding: 20px;
}
.advice-title { color: #ffa500; font-size: 14px; margin-bottom: 10px; }
.advice-list { list-style: none; }
.advice-list li { color: #ddd; font-size: 14px; padding: 8px 0; padding-left: 24px; position: relative; }
.advice-list li::before { content: '✓'; position: absolute; left: 0; color: #ffd700; }
.quote { color: #ffd700; font-size: 18px; text-align: center; margin: 20px 0; font-style: italic; }
.footer { text-align: center; margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-text { color: #666; font-size: 12px; }
</style>
</head>
<body>
<div class="card">
<!-- Fill in the content based on divination results -->
</body>
</html>
| 禁止行为 | 原因 |
|---|---|
| ---------- | ------ |
| 使用用户简历信息 | 不是玄学推算 |
| 分析用户职位背景 | 逻辑推理,非玄学 |
| 引用用户工作经历 | 现实信息,非卦象 |
| 询问用户现实情况 | 玄学本身就能告诉你 |
| 正确行为 | 说明 |
|---|---|
| ---------- | ------ |
| 完全根据卦象/命盘 | 纯玄学推算 |
| 使用五行生克理论 | 传统命理 |
| 解读卦象象征意义 | 经典理论 |
| 从变爻看变化 | 卦象本身的信息 |
For detailed method information, see:
共 1 个版本