Facial Nerve Palsy

안면 신경 마비 정보

안면 신경 마비 (Facial Nerve Palsy)

원인, 진단, 치료 방법 및 운동 요법

한국어
English
웹 코드

안면 신경 마비 개요

안면 신경 마비는 얼굴의 한쪽 또는 양쪽 근육을 조절하는 안면 신경(제7뇌신경)에 문제가 생겨 발생하는 상태입니다. 갑작스러운 얼굴 근육의 약화나 마비가 특징입니다.

주요 원인

  • 벨 마비(Bell’s palsy): 가장 흔한 원인 (70-80%), 원인 불명의 급성 안면 신경 마비
  • 감염: 헤르페스 바이러스, 라임병, 중이염 등
  • 외상: 두부 외상, 수술 후 합병증
  • 종양: 뇌종양, 청신경종 등
  • 기타: 당뇨병, 임신, 자가면역 질환

주요 증상

  • 얼굴 한쪽의 근육 약화 또는 마비
  • 눈 감기 어려움
  • 미각 감소
  • 귀 뒤 통증
  • 눈물이나 침 분비 변화

진단 방법

  1. 병력 청취 및 신체 검사
  2. 신경학적 검사: 얼굴 근육 운동 평가
  3. 영상 검사: MRI 또는 CT
  4. 전기진단검사: 신경 전도 검사

치료 방법

1. 약물 치료

  • 스테로이드(프레드니솔론)
  • 항바이러스제(헤르페스 의심 시)
  • 진통제

2. 침 치료

전통 한의학적 접근으로 얼굴과 사지의 특정 경혈을 자극하여 혈액 순환 개선과 신경 기능 회복을 도모합니다.

3. 한약 치료

기혈 순환을 촉진하는 처방으로 보양환오탕, 계지가황기탁 등이 사용됩니다.

4. 운동 요법

얼굴 운동 1 얼굴 운동 2 얼굴 운동 3
  • 얼굴 근육 운동: 이마 찡그리기, 눈 감기, 휘파람 불기 등
  • 저작 운동: 껌 씹기
  • 마사지: 근육 긴장 완화

5. 기타 치료

  • 눈 보호: 인공 눈물, 안대
  • 물리 치료: 열 치료, 전기 자극

Facial Nerve Palsy Overview

Facial nerve palsy is a condition that results from dysfunction of the facial nerve (cranial nerve VII), causing weakness or paralysis of the facial muscles on one or both sides.

Main Causes

  • Bell’s palsy: Most common cause (70-80%), idiopathic acute facial nerve paralysis
  • Infections: Herpes virus, Lyme disease, otitis media
  • Trauma: Head injury, surgical complications
  • Tumors: Brain tumors, acoustic neuroma
  • Others: Diabetes, pregnancy, autoimmune diseases

Main Symptoms

  • Facial muscle weakness or paralysis on one side
  • Difficulty closing the eye
  • Reduced taste sensation
  • Pain behind the ear
  • Changes in tear or saliva production

Diagnostic Methods

  1. Medical history and physical examination
  2. Neurological examination: Facial muscle movement assessment
  3. Imaging tests: MRI or CT
  4. Electrodiagnostic tests: Nerve conduction studies

Treatment Methods

1. Medication

  • Steroids (prednisone)
  • Antivirals (if herpes suspected)
  • Pain relievers

2. Acupuncture

Traditional Korean medicine approach stimulating specific facial and limb acupoints to improve blood circulation and nerve function.

3. Herbal Medicine

Formulas to promote qi and blood circulation such as Boyanghwanotang, Gyejigagwanggitak.

4. Exercise Therapy

Facial exercise 1 Facial exercise 2 Facial exercise 3
  • Facial muscle exercises: Forehead wrinkling, eye closing, whistling
  • Mastication exercises: Gum chewing
  • Massage: To relieve muscle tension

5. Other Treatments

  • Eye protection: Artificial tears, eye patch
  • Physical therapy: Heat therapy, electrical stimulation

웹 구현 코드

HTML 코드

<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>안면 신경 마비 정보</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <header>
        <h1>안면 신경 마비 (Facial Nerve Palsy)</h1>
        <p>원인, 진단, 치료 방법 및 운동 요법</p>
    </header>
    
    <div class="tab-container">
        <div class="tab active" onclick="showContent('korean')">한국어</div>
        <div class="tab" onclick="showContent('english')">English</div>
        <div class="tab" onclick="showContent('code')">웹 코드</div>
    </div>
    
    <div id="korean" class="content-section active">
        <!-- 한국어 내용 -->
    </div>
    
    <div id="english" class="content-section">
        <!-- 영어 내용 -->
    </div>
    
    <div id="code" class="content-section">
        <!-- 코드 내용 -->
    </div>
    
    <script src="script.js"></script>
</body>
</html>

CSS 코드

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
}

header {
    background-color: #4a6fa5;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 30px;
}

.tab-container {
    display: flex;
    margin-bottom: 20px;
}

.tab {
    padding: 10px 20px;
    background-color: #e0e0e0;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    margin-right: 5px;
}

.tab.active {
    background-color: #4a6fa5;
    color: white;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.exercise-images {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

JavaScript 코드

function showContent(sectionId) {
    // 모든 콘텐츠 섹션 숨기기
    const sections = document.querySelectorAll('.content-section');
    sections.forEach(section => {
        section.classList.remove('active');
    });
    
    // 모든 탭 비활성화
    const tabs = document.querySelectorAll('.tab');
    tabs.forEach(tab => {
        tab.classList.remove('active');
    });
    
    // 선택한 섹션과 탭 활성화
    document.getElementById(sectionId).classList.add('active');
    document.querySelector(`.tab[onclick="showContent('${sectionId}')"]`).classList.add('active');
}

// 이미지 로드 실패 시 대체 이미지 표시
document.querySelectorAll('.exercise-images img').forEach(img => {
    img.onerror = function() {
        this.src = 'placeholder.jpg';
        this.alt = '이미지를 불러올 수 없습니다';
    };
});

© 2023 안면 신경 마비 정보 센터. 모든 권리 보유.

댓글 달기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다