 |
|
 |
|
|
¼½Ä¼³¸í |
|
|
<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 ;
background-color: #f7fafb ;
padding: 20px ;
box-sizing: border-box ;
font-family: 'Malgun Gothic', sans-serif ;
color: #2c3e50 ;
line-height: 1.6 ;
}
#ai_editor h1 {
text-align: center ;
font-size: 42px ;
color: #6ea8d4 ;
margin-bottom: 50px ;
font-weight: bold ;
line-height: 1.3 ;
}
#ai_editor .main-container {
display: grid ;
grid-template-columns: 1fr 1fr ;
gap: 25px ;
margin-bottom: 75px ;
}
#ai_editor .envelope-visual {
background: #e8f2f9 ;
border: 3px solid #6ea8d4 ;
border-radius: 15px ;
padding: 40px 30px ;
display: flex ;
flex-direction: column ;
align-items: center ;
justify-content: center ;
min-height: 300px ;
box-shadow: 0 8px 25px rgba(110, 168, 212, 0.12) ;
}
#ai_editor .envelope-shape {
width: 250px ;
height: 150px ;
background-color: #ffffff ;
border: 2px solid #6ea8d4 ;
border-radius: 8px ;
position: relative ;
margin-bottom: 30px ;
box-shadow: 0 4px 12px rgba(110, 168, 212, 0.15) ;
}
#ai_editor .envelope-front {
position: absolute ;
top: 50% ;
left: 50% ;
transform: translate(-50%, -50%) ;
font-size: 24px ;
font-weight: bold ;
color: #6ea8d4 ;
writing-mode: vertical-rl ;
text-orientation: upright ;
}
#ai_editor .envelope-back {
position: absolute ;
bottom: 10px ;
right: 15px ;
font-size: 16px ;
color: #6ea8d4 ;
writing-mode: vertical-rl ;
text-orientation: mixed ;
}
#ai_editor .envelope-visual > p {
font-size: 18px ;
color: #3a3a3a ;
font-weight: bold ;
text-align: center ;
margin: 0 ;
line-height: 1.5 ;
}
#ai_editor .features-list {
background: #ffffff ;
border-radius: 15px ;
padding: 35px 30px ;
box-shadow: 0 6px 20px rgba(110, 168, 212, 0.1) ;
}
#ai_editor .features-list h2 {
font-size: 24px ;
color: #3a3a3a ;
margin-bottom: 30px ;
text-align: center ;
font-weight: bold ;
}
#ai_editor .feature-item {
display: flex ;
align-items: flex-start ;
margin-bottom: 20px ;
padding: 18px 15px ;
background-color: #f7fafb ;
border-radius: 10px ;
border-left: 4px solid #6ea8d4 ;
}
#ai_editor .feature-item:last-child {
margin-bottom: 0 ;
}
#ai_editor .feature-number {
background-color: #6ea8d4 ;
color: #ffffff ;
border-radius: 50% ;
width: 28px ;
height: 28px ;
display: flex ;
align-items: center ;
justify-content: center ;
font-weight: bold ;
font-size: 16px ;
margin-right: 15px ;
flex-shrink: 0 ;
}
#ai_editor .feature-content {
font-size: 16px ;
color: #2c3e50 ;
line-height: 1.6 ;
}
#ai_editor .feature-title {
font-weight: bold ;
color: #3a3a3a ;
margin-bottom: 5px ;
}
#ai_editor .usage-guide {
background: #ffffff ;
border-radius: 15px ;
padding: 40px 35px ;
margin-bottom: 75px ;
box-shadow: 0 6px 20px rgba(110, 168, 212, 0.1) ;
}
#ai_editor .usage-guide h2 {
font-size: 32px ;
color: #3a3a3a ;
margin-bottom: 50px ;
text-align: center ;
font-weight: bold ;
}
#ai_editor .usage-steps {
display: grid ;
grid-template-columns: repeat(3, 1fr) ;
gap: 25px ;
}
#ai_editor .step-card {
background: #e8f2f9 ;
border-radius: 12px ;
padding: 30px 25px ;
text-align: center ;
border: 2px solid #d4e6f1 ;
transition: transform 0.3s ease ;
}
#ai_editor .step-card:hover {
transform: translateY(-5px) ;
}
#ai_editor .step-number {
background-color: #6ea8d4 ;
color: #ffffff ;
border-radius: 50% ;
width: 45px ;
height: 45px ;
display: flex ;
align-items: center ;
justify-content: center ;
font-weight: bold ;
font-size: 20px ;
margin: 0 auto 20px auto ;
}
#ai_editor .step-title {
font-size: 19px ;
font-weight: bold ;
color: #3a3a3a ;
margin-bottom: 12px ;
}
#ai_editor .step-description {
font-size: 16px ;
color: #2c3e50 ;
line-height: 1.6 ;
}
#ai_editor .important-notes {
background: #e8f2f9 ;
border-radius: 15px ;
padding: 40px 35px ;
border: 2px solid #6ea8d4 ;
}
#ai_editor .important-notes h2 {
font-size: 32px ;
color: #3a3a3a ;
margin-bottom: 40px ;
text-align: center ;
font-weight: bold ;
}
#ai_editor .notes-grid {
display: grid ;
grid-template-columns: 1fr 1fr ;
gap: 25px ;
}
#ai_editor .note-item {
background: #ffffff ;
border-radius: 10px ;
padding: 25px 20px ;
box-shadow: 0 4px 12px rgba(110, 168, 212, 0.1) ;
}
#ai_editor .note-icon {
font-size: 24px ;
color: #6ea8d4 ;
margin-bottom: 10px ;
}
#ai_editor .note-text {
font-size: 16px ;
color: #2c3e50 ;
font-weight: 500 ;
line-height: 1.6 ;
}
#ai_editor .highlight {
color: #6ea8d4 ;
font-weight: bold ;
}
@media (max-width: 992px) {
#ai_editor {
padding: 18px ;
}
#ai_editor h1 {
font-size: 36px ;
margin-bottom: 45px ;
}
#ai_editor .main-container {
gap: 22px ;
margin-bottom: 60px ;
}
#ai_editor .envelope-visual {
padding: 35px 28px ;
min-height: 280px ;
}
#ai_editor .envelope-shape {
width: 230px ;
height: 140px ;
margin-bottom: 28px ;
}
#ai_editor .envelope-front {
font-size: 22px ;
}
#ai_editor .envelope-visual > p {
font-size: 17px ;
}
#ai_editor .features-list {
padding: 32px 28px ;
}
#ai_editor .features-list h2 {
font-size: 22px ;
margin-bottom: 28px ;
}
#ai_editor .feature-item {
padding: 16px 14px ;
margin-bottom: 18px ;
}
#ai_editor .usage-guide {
padding: 35px 30px ;
margin-bottom: 60px ;
}
#ai_editor .usage-guide h2,
#ai_editor .important-notes h2 {
font-size: 28px ;
margin-bottom: 40px ;
}
#ai_editor .usage-steps {
gap: 22px ;
}
#ai_editor .step-card {
padding: 28px 22px ;
}
#ai_editor .step-number {
width: 42px ;
height: 42px ;
font-size: 19px ;
margin-bottom: 18px ;
}
#ai_editor .step-title {
font-size: 18px ;
}
#ai_editor .important-notes {
padding: 35px 30px ;
}
#ai_editor .notes-grid {
gap: 22px ;
}
#ai_editor .note-item {
padding: 22px 18px ;
}
}
@media (max-width: 768px) {
#ai_editor {
padding: 15px ;
}
#ai_editor h1 {
font-size: 28px ;
margin-bottom: 40px ;
}
#ai_editor .main-container {
grid-template-columns: 1fr ;
gap: 20px ;
margin-bottom: 50px ;
}
#ai_editor .envelope-visual {
padding: 30px 25px ;
min-height: 260px ;
}
#ai_editor .envelope-shape {
width: 220px ;
height: 130px ;
margin-bottom: 25px ;
}
#ai_editor .envelope-front {
font-size: 20px ;
}
#ai_editor .envelope-back {
font-size: 15px ;
}
#ai_editor .envelope-visual > p {
font-size: 16px ;
}
#ai_editor .features-list {
padding: 28px 25px ;
}
#ai_editor .features-list h2 {
font-size: 20px ;
margin-bottom: 25px ;
}
#ai_editor .feature-item {
padding: 15px 12px ;
margin-bottom: 16px ;
}
#ai_editor .feature-number {
width: 26px ;
height: 26px ;
font-size: 15px ;
margin-right: 12px ;
}
#ai_editor .usage-guide {
padding: 30px 25px ;
margin-bottom: 50px ;
}
#ai_editor .usage-guide h2,
#ai_editor .important-notes h2 {
font-size: 24px ;
margin-bottom: 35px ;
}
#ai_editor .usage-steps {
grid-template-columns: 1fr ;
gap: 20px ;
}
#ai_editor .step-card {
padding: 25px 20px ;
}
#ai_editor .step-number {
width: 40px ;
height: 40px ;
font-size: 18px ;
margin-bottom: 16px ;
}
#ai_editor .step-title {
font-size: 17px ;
}
#ai_editor .important-notes {
padding: 30px 25px ;
}
#ai_editor .notes-grid {
grid-template-columns: 1fr ;
gap: 20px ;
}
#ai_editor .note-item {
padding: 20px 18px ;
}
}
@media (max-width: 480px) {
#ai_editor h1 {
font-size: 24px ;
}
#ai_editor .main-container {
margin-bottom: 45px ;
}
#ai_editor .envelope-visual {
padding: 28px 22px ;
min-height: 240px ;
}
#ai_editor .envelope-shape {
width: 200px ;
height: 120px ;
margin-bottom: 22px ;
}
#ai_editor .envelope-front {
font-size: 19px ;
}
#ai_editor .features-list {
padding: 25px 20px ;
}
#ai_editor .features-list h2 {
font-size: 19px ;
}
#ai_editor .usage-guide {
padding: 28px 22px ;
margin-bottom: 45px ;
}
#ai_editor .usage-guide h2,
#ai_editor .important-notes h2 {
font-size: 22px ;
margin-bottom: 30px ;
}
#ai_editor .step-card {
padding: 22px 18px ;
}
#ai_editor .step-number {
width: 38px ;
height: 38px ;
font-size: 17px ;
}
#ai_editor .important-notes {
padding: 28px 22px ;
}
#ai_editor .note-item {
padding: 18px 16px ;
}
}
</style>
<div id="ai_editor">
<h1>📮 ºÎÀǺÀÅõ ¼½Ä ÀÛ¼º °¡À̵å</h1>
<div class="main-container">
<div class="envelope-visual">
<div class="envelope-shape">
<div class="envelope-front">ºÎÀÇ</div>
<div class="envelope-back">È«±æµ¿<br>¡Û¡Ûȸ»ç</div>
</div>
<p>±Ô°ÝºÀÅõ »çÀÌÁî (220¡¿105mm)</p>
</div>
<div class="features-list">
<h2>🏷️ ÁÖ¿ä Æ¯Â¡</h2>
<div class="feature-item">
<div class="feature-number">1</div>
<div class="feature-content">
<div class="feature-title">Ç¥ÁØ ±Ô°Ý ºÀÅõ</div>
ÀϹÝÀûÀÎ ±Ô°ÝºÀÅõ Å©±â·Î Á¦À۵Ǿî ÀÖ¾î ÇÁ¸°ÅÍ Ãâ·Â¿¡ ÃÖÀûÈ
</div>
</div>
<div class="feature-item">
<div class="feature-number">2</div>
<div class="feature-content">
<div class="feature-title">ÇÑÀÚ Ç¥±â</div>
ÀüÅëÀûÀÎ ÇÑÀÚ 'ºÎÀÇ(ݸëð)' »ç¿ëÀ¸·Î °Ý½ÄÀÖ´Â Á¶ÀÇ Ç¥Çö
</div>
</div>
<div class="feature-item">
<div class="feature-number">3</div>
<div class="feature-content">
<div class="feature-title">¼¼·Î ¾²±â ¹æ½Ä</div>
Çѱ¹ ÀüÅë ¿¹Àý¿¡ ¸Â´Â ¼¼·Î ¹æÇâ ÅØ½ºÆ® ¹èÄ¡
</div>
</div>
<div class="feature-item">
<div class="feature-number">4</div>
<div class="feature-content">
<div class="feature-title">Ãâ·Â ÃÖÀûÈ</div>
ºÀÅõ ¸Ó¸®ºÎºÐÀ» ¸ÕÀú ³Ö°í Ãâ·ÂÇÏ´Â ¹æ½ÄÀ¸·Î ¼³°è
</div>
</div>
</div>
</div>
<div class="usage-guide">
<h2>📝 ÀÛ¼º ¹æ¹ý</h2>
<div class="usage-steps">
<div class="step-card">
<div class="step-number">1</div>
<div class="step-title">¾Õ¸é ÀÛ¼º</div>
<div class="step-description">ºÀÅõ Áß¾Ó¿¡ '<span class="highlight">ºÎÀÇ</span>' ¶Ç´Â '<span class="highlight">±ÙÁ¶</span>' µîÀÇ Á¶ÀÇ ¹®±¸¸¦ ¼¼·Î·Î ÀÛ¼º</div>
</div>
<div class="step-card">
<div class="step-number">2</div>
<div class="step-title">µÞ¸é ÀÛ¼º</div>
<div class="step-description">¿ÞÂÊ ÇÏ´Ü¿¡ <span class="highlight">À̸§À» ¼¼·Î·Î</span> ÀÛ¼ºÇϰí, ¼Ò¼ÓÀº À̸§ ¿ìÃø »ó´Ü¿¡ ±âÀç</div>
</div>
<div class="step-card">
<div class="step-number">3</div>
<div class="step-title">Ãâ·Â ¹× »ç¿ë</div>
<div class="step-description">ºÀÅõÀÇ <span class="highlight">¸Ó¸®ºÎºÐÀ» ¸ÕÀú</span> ÇÁ¸°ÅÍ¿¡ ³Ö°í Ãâ·Â ÈÄ ºÎÀÇ±Ý ºÀÀÔ</div>
</div>
</div>
</div>
<div class="important-notes">
<h2>⚠️ Áß¿ä »çÇ×</h2>
<div class="notes-grid">
<div class="note-item">
<div class="note-icon">💰 <span class="highlight" style="font-size: 16px;">Ȧ¼ö ±Ý¾×</span><span style="color: rgb(44, 62, 80); font-size: 16px;">À¸·Î ºÎÀDZÝÀ» Áغñ (3¸¸¿ø, 5¸¸¿ø, 10¸¸¿ø µî)</span></div>
</div>
<div class="note-item">
<div class="note-icon">✍️ <span style="color: rgb(44, 62, 80); font-size: 16px;">°ËÀº»ö º¼ÆæÀ̳ª º×ÆæÀ¸·Î </span><span class="highlight" style="font-size: 16px;">Á¤¼º½º·´°Ô</span><span style="color: rgb(44, 62, 80); font-size: 16px;"> ÀÛ¼º</span></div>
</div>
</div>
</div>
</div>
<style type="text/css">
.VBN_42585 {WORD-BREAK: break-all; font-family:±¼¸²;font-size:9pt;line-height:normal;color:#000000;padding-left:10;padding-right:10;padding-bottom:15;padding-top:15;}
.VBN_42585 p, .VBN_42585 td, .VBN_42585 li{font-family:±¼¸²;font-size:9pt;color:#000000;TEXT-DECORATION:none;line-height:normal;margin-top:2;margin-bottom:2}
.VBN_42585 font{line-height:normal;margin-top:2;margin-bottom:2}
.VBN_97131{font-family:±¼¸²; font-size:9pt;}
</style>
<span id="VBN_23247" style="position:relative">
<div class="VBN_42585" style="WIDTH: 100%">
<p> </p><p> </p><p> </p><p> </p><p> </p><p> </p><p style="text-align: center; " align="center"><img border="0" src="http://www.bizforms.co.kr/forms_contents/20080331_923501.gif"></p>
</div>
</span>
|
|
|
 |
|
 |
|