|
|
 |
|
 |
|
|
¼½Ä¼³¸í |
|
|
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ÇØÃËÁõ¸í¼ ÀÎÆ÷±×·¡ÇÈ</title>
<style>
#ai_editor {
max-width: 1200px ;
margin: 0 auto ;
padding: 50px 40px ;
background-color: #f8fbff ;
font-family: 'Malgun Gothic', 'Noto Sans KR', sans-serif ;
line-height: 1.7 ;
color: #2c3e50 ;
box-sizing: border-box ;
}
#ai_editor * {
box-sizing: border-box ;
}
#ai_editor .header {
text-align: center ;
margin-bottom: 75px ;
}
#ai_editor .main-title {
font-size: 42px ;
font-weight: bold ;
color: #5a9bd5 ;
margin: 0 0 20px 0 ;
line-height: 1.3 ;
}
#ai_editor .subtitle {
font-size: 20px ;
color: #7db3e0 ;
margin: 0 0 30px 0 ;
font-weight: 500 ;
line-height: 1.5 ;
}
#ai_editor .description {
font-size: 18px ;
color: #34495e ;
max-width: 800px ;
margin: 0 auto ;
background: white ;
padding: 28px 32px ;
border-radius: 15px ;
box-shadow: 0 4px 15px rgba(90, 155, 213, 0.12) ;
text-align: left ;
line-height: 1.8 ;
}
#ai_editor .content-grid {
display: grid ;
grid-template-columns: 1fr 1fr ;
gap: 30px ;
margin-bottom: 75px ;
}
#ai_editor .info-section {
background: white ;
padding: 38px 32px ;
border-radius: 20px ;
box-shadow: 0 6px 20px rgba(90, 155, 213, 0.12) ;
border-left: 6px solid #5a9bd5 ;
}
#ai_editor .section-title {
font-size: 24px ;
font-weight: bold ;
color: #5a9bd5 ;
margin: 0 0 25px 0 ;
display: flex ;
align-items: center ;
line-height: 1.3 ;
}
#ai_editor .section-icon {
font-size: 28px ;
margin-right: 12px ;
line-height: 1 ;
}
#ai_editor .info-section ul {
font-size: 17px ;
color: #34495e ;
line-height: 1.8 ;
margin: 0 ;
padding-left: 20px ;
}
#ai_editor .info-section li {
margin-bottom: 12px ;
}
#ai_editor .info-section li:last-child {
margin-bottom: 0 ;
}
#ai_editor .items-grid {
display: grid ;
grid-template-columns: repeat(3, 1fr) ;
gap: 28px ;
margin-bottom: 75px ;
}
#ai_editor .item-card {
background: white ;
padding: 35px 28px ;
border-radius: 15px ;
box-shadow: 0 4px 15px rgba(90, 155, 213, 0.1) ;
text-align: center ;
border: 2px solid #ebf3fd ;
transition: all 0.3s ease ;
}
#ai_editor .item-card:hover {
transform: translateY(-5px) ;
box-shadow: 0 8px 25px rgba(90, 155, 213, 0.18) ;
border-color: #5a9bd5 ;
}
#ai_editor .item-icon {
font-size: 48px ;
margin-bottom: 18px ;
display: block ;
line-height: 1 ;
}
#ai_editor .item-title {
font-size: 20px ;
font-weight: bold ;
color: #2c3e50 ;
margin: 0 0 12px 0 ;
line-height: 1.4 ;
}
#ai_editor .item-desc {
font-size: 17px ;
color: #5a6c7d ;
line-height: 1.6 ;
margin: 0 ;
}
#ai_editor .usage-section {
background: #e8f4fd ;
padding: 45px 40px ;
border-radius: 20px ;
margin-bottom: 75px ;
border: 2px solid #bbdefb ;
}
#ai_editor .usage-title {
font-size: 32px ;
font-weight: bold ;
color: #5a9bd5 ;
text-align: center ;
margin: 0 0 38px 0 ;
line-height: 1.4 ;
}
#ai_editor .usage-list {
display: grid ;
grid-template-columns: repeat(4, 1fr) ;
gap: 20px ;
}
#ai_editor .usage-item {
background: white ;
padding: 22px 18px ;
border-radius: 12px ;
box-shadow: 0 3px 10px rgba(90, 155, 213, 0.12) ;
display: flex ;
align-items: center ;
transition: transform 0.3s ease ;
}
#ai_editor .usage-item:hover {
transform: translateX(3px) ;
}
#ai_editor .usage-item-icon {
font-size: 24px ;
margin-right: 12px ;
min-width: 30px ;
line-height: 1 ;
}
#ai_editor .usage-item-text {
font-size: 17px ;
color: #2c3e50 ;
line-height: 1.5 ;
}
#ai_editor .process-section {
margin-bottom: 75px ;
}
#ai_editor .process-title {
font-size: 32px ;
font-weight: bold ;
color: #5a9bd5 ;
text-align: center ;
margin: 0 0 50px 0 ;
line-height: 1.4 ;
}
#ai_editor .process-steps {
display: grid ;
grid-template-columns: repeat(4, 1fr) ;
gap: 28px ;
}
#ai_editor .step-card {
background: white ;
padding: 45px 25px 32px ;
border-radius: 15px ;
box-shadow: 0 4px 15px rgba(90, 155, 213, 0.12) ;
text-align: center ;
position: relative ;
border-top: 4px solid #5a9bd5 ;
transition: transform 0.3s ease ;
}
#ai_editor .step-card:hover {
transform: translateY(-5px) ;
}
#ai_editor .step-number {
position: absolute ;
top: -22px ;
left: 50% ;
transform: translateX(-50%) ;
background: #5a9bd5 ;
color: white ;
width: 44px ;
height: 44px ;
border-radius: 50% ;
display: flex ;
align-items: center ;
justify-content: center ;
font-weight: bold ;
font-size: 20px ;
}
#ai_editor .step-title {
font-size: 20px ;
font-weight: bold ;
color: #2c3e50 ;
margin: 0 0 15px 0 ;
line-height: 1.4 ;
}
#ai_editor .step-desc {
font-size: 17px ;
color: #5a6c7d ;
line-height: 1.6 ;
margin: 0 ;
}
#ai_editor .footer-note {
background: #e8f4fd ;
padding: 35px 32px ;
border-radius: 15px ;
text-align: center ;
border: 2px solid #bee5eb ;
}
#ai_editor .footer-text {
font-size: 18px ;
color: #2c3e50 ;
margin: 0 0 15px 0 ;
line-height: 1.7 ;
}
#ai_editor .footer-highlight {
font-size: 20px ;
font-weight: bold ;
color: #5a9bd5 ;
margin: 0 ;
line-height: 1.5 ;
}
@media (max-width: 992px) {
#ai_editor {
padding: 45px 35px ;
}
#ai_editor .header {
margin-bottom: 65px ;
}
#ai_editor .main-title {
font-size: 38px ;
}
#ai_editor .subtitle {
font-size: 19px ;
}
#ai_editor .description {
padding: 26px 30px ;
font-size: 17px ;
}
#ai_editor .content-grid {
gap: 28px ;
margin-bottom: 65px ;
}
#ai_editor .info-section {
padding: 35px 30px ;
}
#ai_editor .section-title {
font-size: 22px ;
}
#ai_editor .info-section ul {
font-size: 16px ;
}
#ai_editor .items-grid {
grid-template-columns: repeat(2, 1fr) ;
gap: 25px ;
margin-bottom: 65px ;
}
#ai_editor .item-card {
padding: 32px 25px ;
}
#ai_editor .item-icon {
font-size: 46px ;
}
#ai_editor .item-title {
font-size: 19px ;
}
#ai_editor .item-desc {
font-size: 16px ;
}
#ai_editor .usage-section {
padding: 42px 35px ;
margin-bottom: 65px ;
}
#ai_editor .usage-title {
font-size: 30px ;
margin-bottom: 35px ;
}
#ai_editor .usage-list {
grid-template-columns: repeat(2, 1fr) ;
gap: 18px ;
}
#ai_editor .usage-item {
padding: 20px 16px ;
}
#ai_editor .usage-item-text {
font-size: 16px ;
}
#ai_editor .process-section {
margin-bottom: 65px ;
}
#ai_editor .process-title {
font-size: 30px ;
margin-bottom: 45px ;
}
#ai_editor .process-steps {
grid-template-columns: repeat(2, 1fr) ;
gap: 25px ;
}
#ai_editor .step-card {
padding: 42px 22px 30px ;
}
#ai_editor .step-number {
width: 42px ;
height: 42px ;
font-size: 19px ;
}
#ai_editor .step-title {
font-size: 19px ;
}
#ai_editor .step-desc {
font-size: 16px ;
}
#ai_editor .footer-note {
padding: 32px 30px ;
}
#ai_editor .footer-text {
font-size: 17px ;
}
#ai_editor .footer-highlight {
font-size: 19px ;
}
}
@media (max-width: 768px) {
#ai_editor {
padding: 40px 30px ;
}
#ai_editor .header {
margin-bottom: 60px ;
}
#ai_editor .main-title {
font-size: 32px ;
}
#ai_editor .subtitle {
font-size: 18px ;
}
#ai_editor .description {
padding: 24px 26px ;
font-size: 17px ;
}
#ai_editor .content-grid {
grid-template-columns: 1fr ;
gap: 22px ;
margin-bottom: 60px ;
}
#ai_editor .info-section {
padding: 32px 28px ;
}
#ai_editor .section-title {
font-size: 21px ;
}
#ai_editor .items-grid {
grid-template-columns: 1fr ;
gap: 20px ;
margin-bottom: 60px ;
}
#ai_editor .item-card {
padding: 35px 28px ;
}
#ai_editor .item-icon {
font-size: 48px ;
}
#ai_editor .item-title {
font-size: 20px ;
}
#ai_editor .item-desc {
font-size: 17px ;
}
#ai_editor .usage-section {
padding: 38px 28px ;
margin-bottom: 60px ;
}
#ai_editor .usage-title {
font-size: 28px ;
margin-bottom: 32px ;
}
#ai_editor .usage-list {
grid-template-columns: 1fr ;
gap: 16px ;
}
#ai_editor .usage-item {
padding: 22px 18px ;
}
#ai_editor .usage-item-text {
font-size: 17px ;
}
#ai_editor .process-section {
margin-bottom: 60px ;
}
#ai_editor .process-title {
font-size: 28px ;
margin-bottom: 40px ;
}
#ai_editor .process-steps {
grid-template-columns: 1fr ;
gap: 35px ;
}
#ai_editor .step-card {
padding: 45px 25px 32px ;
}
#ai_editor .step-number {
width: 44px ;
height: 44px ;
font-size: 20px ;
}
#ai_editor .step-title {
font-size: 20px ;
}
#ai_editor .step-desc {
font-size: 17px ;
}
#ai_editor .footer-note {
padding: 32px 28px ;
}
#ai_editor .footer-text {
font-size: 18px ;
}
#ai_editor .footer-highlight {
font-size: 20px ;
}
}
@media (max-width: 480px) {
#ai_editor {
padding: 35px 20px ;
}
#ai_editor .header {
margin-bottom: 50px ;
}
#ai_editor .main-title {
font-size: 26px ;
}
#ai_editor .subtitle {
font-size: 17px ;
}
#ai_editor .description {
padding: 22px 20px ;
font-size: 16px ;
border-radius: 12px ;
}
#ai_editor .content-grid {
gap: 18px ;
margin-bottom: 50px ;
}
#ai_editor .info-section {
padding: 28px 22px ;
border-radius: 15px ;
border-left-width: 5px ;
}
#ai_editor .section-title {
font-size: 20px ;
margin-bottom: 20px ;
}
#ai_editor .section-icon {
font-size: 26px ;
}
#ai_editor .info-section ul {
font-size: 16px ;
line-height: 1.7 ;
}
#ai_editor .info-section li {
margin-bottom: 10px ;
}
#ai_editor .items-grid {
gap: 16px ;
margin-bottom: 50px ;
}
#ai_editor .item-card {
padding: 30px 22px ;
border-radius: 12px ;
}
#ai_editor .item-icon {
font-size: 44px ;
margin-bottom: 15px ;
}
#ai_editor .item-title {
font-size: 19px ;
margin-bottom: 10px ;
}
#ai_editor .item-desc {
font-size: 16px ;
}
#ai_editor .usage-section {
padding: 32px 22px ;
margin-bottom: 50px ;
border-radius: 15px ;
}
#ai_editor .usage-title {
font-size: 24px ;
margin-bottom: 28px ;
}
#ai_editor .usage-list {
gap: 14px ;
}
#ai_editor .usage-item {
padding: 20px 16px ;
border-radius: 10px ;
}
#ai_editor .usage-item-icon {
font-size: 22px ;
margin-right: 10px ;
}
#ai_editor .usage-item-text {
font-size: 16px ;
}
#ai_editor .process-section {
margin-bottom: 50px ;
}
#ai_editor .process-title {
font-size: 24px ;
margin-bottom: 35px ;
}
#ai_editor .process-steps {
gap: 30px ;
}
#ai_editor .step-card {
padding: 42px 20px 28px ;
border-radius: 12px ;
}
#ai_editor .step-number {
width: 40px ;
height: 40px ;
font-size: 18px ;
top: -20px ;
}
#ai_editor .step-title {
font-size: 19px ;
margin-bottom: 12px ;
}
#ai_editor .step-desc {
font-size: 16px ;
}
#ai_editor .footer-note {
padding: 28px 22px ;
border-radius: 12px ;
}
#ai_editor .footer-text {
font-size: 16px ;
margin-bottom: 12px ;
}
#ai_editor .footer-highlight {
font-size: 18px ;
}
}
</style>
<div id="ai_editor">
<div class="header">
<h1 class="main-title">📋 ÇØÃËÁõ¸í¼</h1>
<p class="subtitle">Á÷¿øÀÇ Åð»ç ¹× ÇØÃË »ç½ÇÀ» Áõ¸íÇÏ´Â °ø½Ä ¼·ù</p>
<div class="description">
¼º¸í, Áֹεî·Ï¹øÈ£, ÀçÁ÷±â°£, ¼Ò¼Ó, µî·Ï¹øÈ£, ÀÚ°Ý, ¿ëµµÀÇ Ç׸ñÀ¸·Î ±¸¼ºµÇ¾îÀÖ´Â
ÇØÃËÁõ¸í¼·Î, Åð»çÇÑ Á÷¿øÀÇ ±Ù¹« À̷°ú ÇØÃË »ç½ÇÀ» °ø½ÄÀûÀ¸·Î Áõ¸íÇÕ´Ï´Ù.
</div>
</div>
<div class="content-grid">
<div class="info-section">
<h2 class="section-title">
<span class="section-icon">📄</span>
¼½ÄÀÇ Æ¯Â¡
</h2>
<ul>
<li>🔸 ¹ýÀû È¿·ÂÀ» °®´Â °ø½Ä Áõ¸í¼</li>
<li>🔸 Ç¥ÁØÈµÈ ¾ç½ÄÀ¸·Î ÀÛ¼º</li>
<li>🔸 ȸ»ç °øÀÎ ¹× ´ã´çÀÚ ³¯ÀÎ Çʼö</li>
<li>🔸 ¸íÈ®ÇÑ ÇØÃË »çÀ¯ ¸í½Ã</li>
<li>🔸 Á¤È®ÇÑ ÀçÁ÷ ±â°£ ±â·Ï</li>
</ul>
</div>
<div class="info-section">
<h2 class="section-title">
<span class="section-icon">⚖️</span>
¹ýÀû ±Ù°Å
</h2>
<ul>
<li>🔸 ±Ù·Î±âÁعý Á¦39Á¶</li>
<li>🔸 ÅðÁ÷±Þ¿©º¸Àå¹ý</li>
<li>🔸 ±¹¹Î¿¬±Ý¹ý</li>
<li>🔸 °í¿ëº¸Çè¹ý</li>
<li>🔸 °¢Á¾ ÀÎ»ç °ü·Ã ¹ý·É</li>
</ul>
</div>
</div>
<div class="items-grid">
<div class="item-card">
<span class="item-icon">👤</span>
<h3 class="item-title">¼º¸í</h3>
<p class="item-desc">ÇØÃËµÈ Á÷¿øÀÇ<br>Á¤È®ÇÑ ¼º¸í</p>
</div>
<div class="item-card">
<span class="item-icon">🆔</span>
<h3 class="item-title">Áֹεî·Ï¹øÈ£</h3>
<p class="item-desc">°³ÀÎ ½Äº°À» À§ÇÑ<br>Áֹεî·Ï¹øÈ£</p>
</div>
<div class="item-card">
<span class="item-icon">📅</span>
<h3 class="item-title">ÀçÁ÷±â°£</h3>
<p class="item-desc">ÀÔ»çÀϺÎÅÍ Åð»çÀϱîÁö<br>Á¤È®ÇÑ ±Ù¹« ±â°£</p>
</div>
<div class="item-card">
<span class="item-icon">🏢</span>
<h3 class="item-title">¼Ò¼Ó</h3>
<p class="item-desc">ÀçÁ÷Çß´ø ºÎ¼ ¶Ç´Â<br>±Ù¹« ºÎ¼¸í</p>
</div>
<div class="item-card">
<span class="item-icon">🎖️</span>
<h3 class="item-title">ÀÚ°Ý</h3>
<p class="item-desc">ÀçÁ÷ Áß ´ã´çÇß´ø<br>Á÷Ã¥ ¹× Á÷±Þ</p>
</div>
<div class="item-card">
<span class="item-icon">📋</span>
<h3 class="item-title">¿ëµµ</h3>
<p class="item-desc">Áõ¸í¼ ¹ß±Þ ¸ñÀû<br>¹× Á¦Ãâó</p>
</div>
</div>
<div class="usage-section">
<h2 class="usage-title">💼 Ȱ¿ë ºÐ¾ß</h2>
<div class="usage-list">
<div class="usage-item">
<span class="usage-item-icon">🏛️</span>
<span class="usage-item-text">°ü°ø¼ Á¦Ãâ¿ë</span>
</div>
<div class="usage-item">
<span class="usage-item-icon">🏦</span>
<span class="usage-item-text">±ÝÀ¶±â°ü ´ëÃ⠽ɻç</span>
</div>
<div class="usage-item">
<span class="usage-item-icon">🏢</span>
<span class="usage-item-text">»õ·Î¿î Á÷Àå ÀÔ»ç</span>
</div>
<div class="usage-item">
<span class="usage-item-icon">💰</span>
<span class="usage-item-text">ÅðÁ÷±Ý ½Åû</span>
</div>
<div class="usage-item">
<span class="usage-item-icon">🛡️</span>
<span class="usage-item-text">½Ç¾÷±Þ¿© ½Åû</span>
</div>
<div class="usage-item">
<span class="usage-item-icon">📋</span>
<span class="usage-item-text">°¢Á¾ Áõ¸í¼ ¹ß±Þ</span>
</div>
<div class="usage-item">
<span class="usage-item-icon">🏥</span>
<span class="usage-item-text">°Ç°º¸Çè º¯°æ</span>
</div>
<div class="usage-item">
<span class="usage-item-icon">📊</span>
<span class="usage-item-text">±¹¹Î¿¬±Ý Á¤»ê</span>
</div>
</div>
</div>
<div class="process-section">
<h2 class="process-title">⚙️ ¹ß±Þ ÀýÂ÷</h2>
<div class="process-steps">
<div class="step-card">
<div class="step-number">1</div>
<h3 class="step-title">½Åû¼ ÀÛ¼º</h3>
<p class="step-desc">ÇØÃËÁõ¸í¼ ¹ß±Þ ½Åû¼¸¦ ÀÛ¼ºÇϰí ÇÊ¿ä ¼·ù¸¦ ÁغñÇÕ´Ï´Ù.</p>
</div>
<div class="step-card">
<div class="step-number">2</div>
<h3 class="step-title">ÀλçºÎ¼ Á¦Ãâ</h3>
<p class="step-desc">¿Ï¼ºµÈ ½Åû¼¿Í ¼·ù¸¦ Àλç´ã´ç ºÎ¼¿¡ Á¦ÃâÇÕ´Ï´Ù.</p>
</div>
<div class="step-card">
<div class="step-number">3</div>
<h3 class="step-title">³»¿ë °ËÅä</h3>
<p class="step-desc">Àλç´ã´çÀÚ°¡ ÀçÁ÷ ±â°£, Á÷±Þ µî ±âÀç ³»¿ëÀÇ Á¤È®¼ºÀ» °ËÅäÇÕ´Ï´Ù.</p>
</div>
<div class="step-card">
<div class="step-number">4</div>
<h3 class="step-title">½ÂÀÎ ¹× ³¯ÀÎ</h3>
<p class="step-desc">´ã´çÀÚ È®ÀÎ ÈÄ È¸»ç °øÀÎÀ» ³¯ÀÎÇÏ¿© °ø½Ä È¿·ÂÀ» ºÎ¿©ÇÕ´Ï´Ù.</p>
</div>
</div>
</div>
<div class="footer-note">
<p class="footer-text">ÇØÃËÁõ¸í¼´Â Åð»çÇÑ Á÷¿øÀÇ ±ÇÀÍ º¸È£¿Í »õ·Î¿î Ãâ¹ßÀ» À§ÇÑ Áß¿äÇÑ ¼·ùÀÔ´Ï´Ù.</p>
<p class="footer-highlight">Á¤È®ÇÏ°í ½Å¼ÓÇÑ ¹ß±ÞÀ¸·Î Á÷¿øÀÇ ±Ç¸®¸¦ º¸ÀåÇϼ¼¿ä! ✨</p>
</div>
</div>
|
|
|
 |
|
 |
|