Loading...
正在加载...
请稍候

Building the Self Like a Car

✨步子哥 (steper) 2025年12月13日 08:18
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Building the Self Like a Car: A Framework for Mental Health</title> <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Roboto', sans-serif; background-color: #f5f7fa; color: #333; line-height: 1.6; } .poster-container { width: 720px; min-height: 960px; margin: 0 auto; background: linear-gradient(135deg, #e0f2fe, #dbeafe); padding: 40px; position: relative; overflow: hidden; } .background-shape { position: absolute; border-radius: 50%; opacity: 0.1; z-index: 0; } .shape1 { width: 400px; height: 400px; background-color: #3b82f6; top: -100px; right: -100px; } .shape2 { width: 300px; height: 300px; background-color: #10b981; bottom: -50px; left: -50px; } .grid-texture { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px); background-size: 20px 20px; z-index: 1; } .content { position: relative; z-index: 2; } .header { text-align: center; margin-bottom: 30px; } .title { font-size: 40px; font-weight: 700; color: #1e40af; margin-bottom: 10px; line-height: 1.2; } .subtitle { font-size: 18px; color: #4b5563; font-weight: 400; } .section { background-color: rgba(255, 255, 255, 0.85); border-radius: 16px; padding: 24px; margin-bottom: 24px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); } .section-title { font-size: 24px; font-weight: 600; color: #1e40af; margin-bottom: 16px; display: flex; align-items: center; } .section-title .material-icons { margin-right: 8px; color: #3b82f6; } .section-content { display: flex; flex-direction: column; gap: 16px; } .key-point { display: flex; align-items: flex-start; gap: 12px; } .key-point .material-icons { color: #10b981; font-size: 20px; margin-top: 2px; } .key-point-text { flex: 1; } .highlight { background-color: rgba(251, 191, 36, 0.2); padding: 2px 4px; border-radius: 4px; font-weight: 500; } .drives-container { display: flex; justify-content: space-between; margin-top: 16px; gap: 12px; } .drive-card { flex: 1; background-color: rgba(255, 255, 255, 0.7); border-radius: 12px; padding: 16px; text-align: center; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); border-top: 4px solid; } .drive-card.generative { border-top-color: #10b981; } .drive-card.aggressive { border-top-color: #ef4444; } .drive-card.pleasure { border-top-color: #f59e0b; } .drive-title { font-weight: 600; margin-bottom: 8px; color: #1f2937; } .drive-description { font-size: 14px; color: #4b5563; } .defense-mechanisms { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 16px; } .defense-card { background-color: rgba(255, 255, 255, 0.7); border-radius: 12px; padding: 16px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); } .defense-title { font-weight: 600; margin-bottom: 8px; color: #1f2937; display: flex; align-items: center; } .defense-title .material-icons { font-size: 18px; margin-right: 6px; color: #3b82f6; } .defense-description { font-size: 14px; color: #4b5563; } .quote { font-style: italic; color: #4b5563; border-left: 3px solid #3b82f6; padding-left: 16px; margin: 16px 0; } .footer { text-align: center; margin-top: 30px; color: #4b5563; font-size: 14px; } .image-container { text-align: center; margin: 16px 0; } .image-container img { max-width: 100%; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } </style> </head> <body> <div class="poster-container"> <div class="background-shape shape1"></div> <div class="background-shape shape2"></div> <div class="grid-texture"></div> <div class="content"> <div class="header"> <h1 class="title">Building the Self Like a Car</h1> <p class="subtitle">A Framework for Mental Health by Dr. Paul Conti</p> </div> <div class="section"> <h2 class="section-title"> <i class="material-icons">engineering</i> Active Self-Construction </h2> <div class="section-content"> <div class="key-point"> <i class="material-icons">check_circle</i> <div class="key-point-text"> View mental health through the metaphor of <span class="highlight">building a car</span> — where drives act as the "engine" and agency as the "steering wheel" </div> </div> <div class="key-point"> <i class="material-icons">check_circle</i> <div class="key-point-text"> Shift from reactive fixes to <span class="highlight">proactive self-improvement</span>, promoting long-term well-being </div> </div> <div class="quote"> "Instead of passively addressing issues as they arise (like a repairman), individuals act as engineers, designing and optimizing their inner workings." </div> <div class="image-container"> <img src="https://sfile.chatglm.cn/moeSlide/image/03/03960266.jpg" alt="Car metaphor for mental health" style="max-height: 180px;"> </div> </div> </div> <div class="section"> <h2 class="section-title"> <i class="material-icons">foundation</i> Pillars of Mental Health </h2> <div class="section-content"> <div class="key-point"> <i class="material-icons">check_circle</i> <div class="key-point-text"> <span class="highlight">Agency</span> — the ability to influence change and affect one's environment </div> </div> <div class="key-point"> <i class="material-icons">check_circle</i> <div class="key-point-text"> <span class="highlight">Gratitude</span> — appreciating life's complexities and acknowledging the world's intricacies </div> </div> <div class="key-point"> <i class="material-icons">check_circle</i> <div class="key-point-text"> These elements provide stability like twin pillars supporting a structure, shifting focus from constant happiness to empowered, balanced living </div> </div> <div class="image-container"> <img src="https://sfile.chatglm.cn/moeSlide/image/d9/d90ea3f0.jpg" alt="Pillars of mental health" style="max-height: 180px;"> </div> </div> </div> <div class="section"> <h2 class="section-title"> <i class="material-icons">psychology</i> Generative Drive as Leader </h2> <div class="section-content"> <div class="key-point"> <i class="material-icons">check_circle</i> <div class="key-point-text"> The <span class="highlight">generative drive</span> fuels creation, learning, and love, fostering inner peace when it oversees other drives </div> </div> <div class="key-point"> <i class="material-icons">check_circle</i> <div class="key-point-text"> Imbalance occurs when aggressive or pleasure drives dominate, but redirecting them through generative pursuits can restore balance </div> </div> <div class="drives-container"> <div class="drive-card generative"> <div class="drive-title">Generative Drive</div> <div class="drive-description">Creation, learning, love</div> </div> <div class="drive-card aggressive"> <div class="drive-title">Aggressive Drive</div> <div class="drive-description">Energy for action</div> </div> <div class="drive-card pleasure"> <div class="drive-title">Pleasure Drive</div> <div class="drive-description">Seeking enjoyment</div> </div> </div> </div> </div> <div class="section"> <h2 class="section-title"> <i class="material-icons">shield</i> Defense Mechanisms </h2> <div class="section-content"> <div class="key-point"> <i class="material-icons">check_circle</i> <div class="key-point-text"> Defense mechanisms protect the psyche but can <span class="highlight">undermine relationships</span> and self-growth if not managed </div> </div> <div class="defense-mechanisms"> <div class="defense-card"> <div class="defense-title"> <i class="material-icons">arrow_outward</i> Projection </div> <div class="defense-description">Attributing your feelings to others</div> </div> <div class="defense-card"> <div class="defense-title"> <i class="material-icons">swap_horiz</i> Displacement </div> <div class="defense-description">Redirecting emotions to safer targets</div> </div> <div class="defense-card"> <div class="defense-title"> <i class="material-icons">visibility_off</i> Avoidance </div> <div class="defense-description">Evading confronting issues</div> </div> <div class="defense-card"> <div class="defense-title"> <i class="material-icons">brush</i> Sublimation </div> <div class="defense-description">Channeling impulses constructively</div> </div> </div> <div class="image-container"> <img src="https://sfile.chatglm.cn/moeSlide/image/18/18bb8649.jpg" alt="Defense mechanisms" style="max-height: 180px;"> </div> </div> </div> <div class="footer"> Framework based on Dr. Paul Conti's work with Huberman Lab </div> </div> </div> </body> </html>

讨论回复

0 条回复

还没有人回复,快来发表你的看法吧!