File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
2023-06-22
File name
Commit message
Commit date
2024-11-22
2023-12-15
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>문자온_선거전송</title>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/publish/css/reset.css">
<link rel="stylesheet" href="/publish/css/jquery.mCustomScrollbar.css">
<link rel="stylesheet" href="/publish/css/common.css">
<link rel="stylesheet" href="/publish/css/button.css">
<link rel="stylesheet" href="/publish/css/content.css">
<link rel="stylesheet" href="/publish/css/font.css">
<link rel="stylesheet" href="/publish/css/popupLayer.css">
<link rel="stylesheet" href="/publish/js/datepicker/classic.css">
<link rel="stylesheet" href="/publish/js/datepicker/classic.date.css">
<script src="/publish/js/jquery-3.5.0.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<script src="/publish/js/jquery.mCustomScrollbar.concat.min.js"></script>
<script src="/publish/js/common.js"></script>
<!-- <script src="/js/MJUtill.js"></script> -->
<script src="/publish/js/content.js"></script>
<script src="/publish/js/popup.js"></script>
<script src="/publish/js/popupLayer.js"></script>
<script src="/publish/js/publish.js"></script>
<!-- 외부 script / css -->
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.13.2/themes/base/jquery-ui.css">
<script type="text/javascript" src="/publish/js/datepicker/picker.js"></script>
<script type="text/javascript" src="/publish/js/datepicker/picker.date.js"></script>
<script type="text/javascript" src="/publish/js/datepicker/ko_KR.js"></script>
<script>
$(function(){
$(".mask").addClass("on");
$(".alert_layer_popup").find(".tooltip-close:not(.fill_blue)").click(function(){
location.href="/web/main/mainPage.do"
})
// 즉시/예약 시 예약설정 노출
$("[name=reserYn]").change(function(){
var thisVal = $(this).val();
if(thisVal == "Y"){
$(".use_enter,.rev_selected").show();
$(".send_content").css("padding","0");
}else{
$(".use_enter,.rev_selected").hide();
$(".send_content").removeAttr("style");
}
});
/* td_number가 아닐 때 selectable 자체 차단 */
$(".table_20 .tbody_ul").on("mousedown", function (e) {
if (!$(e.target).closest(".td_number").length) {
e.preventDefault();
e.stopImmediatePropagation();
}
});
/* td_number에서만 항상 다중 선택 모드 */
$(".table_20 .tbody_ul").on("mousedown", ".td_number", function (e) {
e.ctrlKey = true;
});
$(".table_20 .tbody_ul").selectable({
filter: ".td_number",
selected: function (event, ui) {
$(ui.selected).closest("li").addClass("ui-selected").find("input[type=checkbox]").prop("checked", true);
},
unselected: function (event, ui) {
$(ui.unselected).closest("li").removeClass("ui-selected").find("input[type=checkbox]").prop("checked", false);
}
});
// 1명씩 선택 클릭 시
onlongclick(".btn_check_one", 20, function (e) {
var checkbox = $('[name=receipt_number_check]');
publishCommon.longMousePressCheck(checkbox, 20, $(".btn_check_one"));
});
// 선거문구 쓰는지 안쓰는지 체크
$(".election_button").on("click", function () {
if ($(this).find("input").is(":checked")) {
// 체크된 상태
$(".send_20").find(".ad_txt, .deny_txt").show();
$(".send_20+.send_right").find(".ad_tit,.deny_receipt").show();
} else {
// 체크 안 된 상태
$(".send_20").find(".ad_txt, .deny_txt").hide();
$(".send_20+.send_right").find(".ad_tit,.deny_receipt").hide();
}
});
// sendBySpace 설정에 따라 Space / Enter 키로 수신번호 자동 선택 후 발송 처리
var enterTimer = null;
$(document).on("keydown", function (e) {
var isChecked = $("input:checkbox[name='sendBySpace']").is(":checked");
var checkbox = $('[name=receipt_number_check]');
var checkedCnt = checkbox.filter(":checked").length;
// Space 발송
if (e.keyCode === 32 && isChecked && !$(".put_text").is(':focus')) {
e.preventDefault();
if (checkedCnt > 0) {
setTimeout(function () {
$(".btn_send").click();
}, 500);
} else {
alert("발송할 대상을 선택해 주세요.");
return;
}
}
// Enter 길게
if (e.keyCode === 13 && !isChecked && !$(".put_text").is(':focus')) {
e.preventDefault();
if (enterTimer) return;
enterTimer = setTimeout(function () {
publishCommon.longMousePressCheck(checkbox,20,$(".btn_check_one"));
setTimeout(function () {
var totalCnt = checkbox.length;
var checkedCnt = checkbox.filter(":checked").length;
if (totalCnt > 0 && totalCnt === checkedCnt) {
$(".btn_send").click();
}
}, 600);
}, 500);
}
});
$(document).on("keyup", function (e) {
if (e.keyCode === 13) {
clearTimeout(enterTimer);
enterTimer = null;
publishCommon.isHolding = false;
}
});
})
function confirmAlert() {
if (confirm('후보자를 등록 하시겠습니까?')) {
alert('후보자 등록이 완료되었습니다.');
}
}
</script>
</head>
<body>
<!-- 선거문자 이용안내 data-tooltip:alert_layer_popup -->
<div class="tooltip-wrap">
<div class="popup-com alert_layer_popup" tabindex="0" data-tooltip-con="alert_layer_popup" data-focus="alert_layer_popup" data-focus-prev="alert_layer_popup-close" style="width: 450px;display:block;opacity: 1;left: 50%;top: 50%;transform: translate(-50%, -50%);">
<div class="popup_heading">
<p>선거문자 이용안내</p>
<button type="button" class="tooltip-close" data-focus="alert_layer_popup-close"><img src="/publish/images/content/layerPopup_close.png" alt="팝업 닫기"></button>
</div>
<div class="layer_in">
<p>선거문자 발송은 후보자 등록 후 이용 가능합니다. <br />등록을 먼저 진행해주세요.</p>
<div class="btn_wrap popup">
<button type="button" class="btnType fill_blue tooltip-close" data-tooltip="candidate_popup01">확인</button>
<button type="button" class="btnType fill_gray tooltip-close" data-focus="alert_layer_popup-close" data-focus-next="alert_layer_popup">닫기</button>
</div>
</div>
</div>
</div>
<!-- //선거문자 이용안내 data-tooltip:alert_layer_popup -->
<!-- 선거문자 이용안내 data-tooltip:alert_layer_popup -->
<div class="tooltip-wrap">
<div class="popup-com alert_layer_popup alert_layer_popup02" tabindex="0" data-tooltip-con="alert_layer_popup02" data-focus="alert_layer_popup" data-focus-prev="alert_layer_popup02-close" style="width: 450px;">
<div class="popup_heading">
<!-- 기업회원일 경우 -->
<p>선거문자 이용안내</p>
<button type="button" class="tooltip-close" data-focus="alert_layer_popup02-close"><img src="/publish/images/content/layerPopup_close.png" alt="팝업 닫기"></button>
</div>
<div class="layer_in">
<p>선거문자 발송은 개인회원이 후보자 등록 후 <br />이용 가능합니다.</p>
<div class="btn_wrap popup">
<button type="button" class="btnType fill_blue tooltip-close" onclick="location.href='/web/main/mainPage.do'">메인화면 바로가기</button>
</div>
</div>
</div>
</div>
<!-- //선거문자 이용안내 data-tooltip:alert_layer_popup -->
<!-- 후보자등록 팝업 data-tooltip:candidate_popup01 -->
<div class="tooltip-wrap">
<div class="popup-com candidate_layer candidate_popup01" tabindex="0" data-tooltip-con="candidate_popup01" data-focus="candidate_popup01" data-focus-prev="candidate_popup01-close" style="width: 620px;">
<div class="popup_heading">
<p>후보자 등록</p>
<button type="button" class="tooltip-close" data-focus="candidate_popup01-close"><img src="/publish/images/content/layerPopup_close.png" alt="팝업 닫기"></button>
</div>
<form id="candiForm" name="candiForm" method="post">
<input type="hidden" id="dataType" name="dataType" value="Reg"/>
<div class="layer_in">
<p class="adr_pop_title">선거문자는 반드시 <span class="c_002c9a">후보자 등록</span>을 하셔야만 이용 가능합니다. <br/>입력하신 내용은 세금계산서 발행을 위한 정보로만 사용됩니다.</p>
<div class="candidate_table">
<p>후보자</p>
<table>
<caption>후보자 등록을 위한 성명, 주민등록번호, 주소를 입력하는 표</caption>
<colgroup>
<col style="width: 125px;">
<col style="width: auto;">
</colgroup>
<tbody>
<tr>
<th scope="row">성명</th>
<td>
<label for="candidateNm" class="label"></label>
<input type="text" id="candidateNm" name="candidateNm" value="" placeholder="후보자 성명 입력" onfocus="this.placeholder=''" onblur="this.placeholder='후보자 성명 입력'" class="inputLight">
</td>
</tr>
<tr class="residentNum">
<th scope="row">주민등록번호</th>
<td>
<label for="regidentNo1" class="label"></label>
<input type="text" id="regidentNo1" name="regidentNo1" value="" maxlength="6" placeholder="주민등록번호 앞 6자리" onfocus="this.placeholder=''" onblur="this.placeholder='주민등록번호 앞 6자리'" class="inputLight">
<span>-</span>
<label for="regidentNo2" class="label"></label>
<input type="password" id="regidentNo2" name="regidentNo2" value="" maxlength="7" placeholder="주민등록번호 뒤 7자리" onfocus="this.placeholder=''" onblur="this.placeholder='주민등록번호 뒤 7자리'" class="inputLight">
</td>
</tr>
<tr>
<th scope="row">주소</th>
<td>
<label for="candidateAddr" class="label"></label>
<input type="text" id="candidateAddr" name="candidateAddr" value="">
</td>
</tr>
</tbody>
</table>
</div>
<div class="candidate_table" style="margin-top: 40px;">
<p>담당자</p>
<table>
<caption>후보자 등록을 위한 성명, 주민등록번호, 주소를 입력하는 표</caption>
<colgroup>
<col style="width: 125px;">
<col style="width: auto;">
</colgroup>
<tbody>
<tr>
<th scope="row">성명</th>
<td>
<label for="managerNm" class="label"></label>
<input type="text" id="managerNm" name="managerNm" value="" placeholder="담당자 성명 입력" onfocus="this.placeholder=''" onblur="this.placeholder='담당자 성명 입력'" class="inputLight">
</td>
</tr>
<tr>
<th scope="row">휴대폰</th>
<td>
<label for="phoneNo" class="label"></label>
<input type="text" id="phoneNo" name="phoneNo" value="" placeholder="‘-’ 없이 숫자만 입력" onfocus="this.placeholder=''" onblur="this.placeholder='‘-’ 없이 숫자만 입력'" class="inputLight">
</td>
</tr>
<tr class="emailWrap3">
<th scope="row">이메일</th>
<td>
<label for="email" class="label"></label>
<input type="text" id="email" name="email" value="">
<span>@</span>
<label for="emailDomain" class="label"></label>
<input type="text" id="emailDomain" name="emailDomain" value="">
<label for="" class="label">이메일 선택</label>
<select class="list_selType1" id="taxEmailSelect" onchange="emailChange(this)">
<option value="">직접입력</option>
</select>
</td>
</tr>
</tbody>
</table>
</div>
<div class="btn_wrap popup">
<button type="button" class="btnType fill_blue tooltip-close" onclick="confirmAlert();$('.alert_layer_popup').hide();">등록</button>
<button type="button" class="btnType fill_gray tooltip-close" data-focus="candidate_popup01-close" data-focus-next="alert_layer_popup">닫기</button>
</div>
</div>
</form>
</div>
</div>
<!--// 후보자등록 팝업 -->
<!--선거문자 이용안내 팝업 -->
<div class="tooltip-wrap">
<div class="popup-com ad_layer candidate_popup03" tabindex="0" data-tooltip-con="candidate_popup03" data-focus="candidate_popup03" data-focus-prev="candidate_popup03-close" style="width: 795px">
<div class="popup_heading">
<p>선거문자 안내</p>
<button type="button" class="tooltip-close" data-focus="candidate_popup03-close"><img src="/publish/images/content/layerPopup_close.png" alt="팝업 닫기"></button>
</div>
<div class="layer_in">
<img src="/publish/images/content/candidatePop_banner.png" alt="선거문자 이용안내 배너" class="candidate_banner">
<ul class="info_list">
<li>- 90byte 초과 시, 자동으로 장문으로 전환됩니다. 장문 문자는 최대 2,000byte까지만 작성할 수 있습니다.</li>
<li>- 그림문자 1건당 최대 3장까지 이미지 첨부 가능 [권장 사이즈 : <strong>640 x 960</strong>픽셀 / 최대용량 : <strong>10MB</strong> 이내]</li>
<li>- 선거문자는 반드시 발송규정을 사전 확인 후 발송해 주시기 바랍니다.</li>
</ul>
<!-- 이용방법/혜택 -->
<div class="cdpop_cont current" id="listTab2_1">
<div>
<p class="cdpop_title">
<i class="cdpop_title_icon1"></i>선거문자 이용방법
<span class="customReq">
<button type="button" onclick="goToCustom();"><i></i>선거문자 맞춤제작</button>
</span>
</p>
<ul class="cdpop_info">
<li>
<i class="info_step1"></i>
<div>
<p>회원가입</p>
</div>
</li>
<li>
<i class="info_step2"></i>
<div>
<p>후보자등록</p>
</div>
</li>
<li>
<i class="info_step3"></i>
<div>
<p>전용계좌</p>
</div>
</li>
<li>
<i class="info_step4"></i>
<div>
<p>발신번호 인증</p>
</div>
</li>
<li>
<i class="info_step5"></i>
<div>
<p>문자전송</p>
</div>
</li>
<li>
<i class="info_step6"></i>
<div>
<p>세금계산서</p>
</div>
</li>
</ul>
</div>
<div>
<p class="cdpop_title"><i class="cdpop_title_icon2"></i>문자온 선거문자만의 장점 및 혜택</p>
<ul class="cdpop_benefit">
<li>
<div>
<i class="benefit1"></i>
<p>한 번에 대량으로 보내야 한다면?<span>30만건까지 동시 전송 가능</span></p>
</div>
<p>문자온의 대량전송(엑셀·TXT) 모듈을 통해
30만건의 대량문자도 쉽고 빠르게 전송 가능합니다.</p>
</li>
<li>
<div>
<i class="benefit2"></i>
<p>수신거부 번호가 필요하세요?<span>080 수신거부 번호 무료제공</span></p>
</div>
<p>선거문자 발송규정 준수를 위해
080 수신거부 번호를 무료로 제공해 드립니다.</p>
</li>
<li>
<div>
<i class="benefit3"></i>
<p>주소록 등록이 번거로우신가요?<span>주소록 등록 무료대행</span></p>
</div>
<p>주소록 등록파일(엑셀·TXT)을 문자온에 제공해
주시면 무료로 빠르고 신속하게 등록해 드립니다.</p>
</li>
<li>
<div>
<i class="benefit4"></i>
<p>홍보효과를 높이고 싶다면?<span>후보자만의 그림문자 맞춤제작</span></p>
</div>
<p>선거공약, 인사말, 후보자 사진 등을 넣어 그림문자를
맞춤 제작하여 홍보효과를 극대화할 수 있습니다.</p>
</li>
<li>
<div>
<i class="benefit5"></i>
<p>오류·실패건의 문자를 보상받고 싶다면?<span>오류·실패건 문자 100% 환불</span></p>
</div>
<p>번호오류, 수신거부, 수신실패 등으로 인해 문자전송이
실패한 경우 100% 환불(자동충전)해 드립니다.</p>
</li>
<li>
<div>
<i class="benefit6 "></i>
<p>전송결과가 궁금하다면?<span>실시간 전송결과 확인 가능</span></p>
</div>
<p>전송결과 및 실패사유를 실시간으로 제공해드립니다.</p>
</li>
<li>
<div>
<i class="benefit7"></i>
<p>20건씩 나눠서 보내야한다면?<span>20건씩 분할 예약 전송 가능</span></p>
</div>
<p>누구나 쉽고 편리하게 20건씩 나눠서 분할 전송이 가능합니다.</p>
</li>
<li>
<div>
<i class="benefit8"></i>
<p>필요한 서류가 있다면?<span>문자온에서 간편하게 신청 가능</span></p>
</div>
<p>문자온에서 발송내역서 출력이 가능하며,
세금계산서는 메일로 자동으로 발행됩니다.</p>
</li>
</ul>
</div>
</div><!--// 이용방법/혜택 -->
</div>
<div class="popup_btn_wrap2" style="margin: 0 auto 30px auto;">
<button type="button" class="tooltip-close" data-focus="candidate_popup03-close" data-focus-next="candidate_popup03">닫기</button>
</div>
</div>
</div>
<!--// 선거문자 이용안내 팝업 -->
<!-- toast(시작) -->
<div class="toast_popup success">
<i class="icon check"></i>
<p class="title">처리가 완료되었습니다.</p>
<button type="button" class="btn_close" onclick="publishCommon.toastsUtil('','active','success')"><i></i></button>
</div>
<!-- toast(끝) -->
<div data-include-path="/publish/layout/_header.html"></div>
<div class="mask"></div>
<!-- content 영역 -->
<div id="container" class="cont sub">
<div class="inner">
<!-- send top -->
<div class="send_top">
<!-- tab button -->
<ul class="tabType1">
<li class="tab active"><button type="button" onclick="TabType1(this,'1');">자동동보문자</button></li>
<li class="tab"><button type="button" onclick="TabType1(this,'2');">20건 수동문자</button></li>
</ul>
<!--// tab button -->
<!-- tab content1 -->
<div class="top_content current election contentArea" id="tab1_1">
<div class="heading">
<h2>자동동보문자</h2>
<div class="election_btnWrap">
<button type="button" class="button2 info" onclick="infoListPop('electionRule','792','800');">발송규정</button>
<button type="button" class="button2 info" data-tooltip="candidate_popup03">사용안내</button>
<button type="button" class="btnType" data-tooltip="alert_layer_popup"><i class="election_btn1"></i>후보자 등록</button>
</div>
</div>
<div class="send_general">
<!-- send left 문자 보내기 입력 -->
<div class="send_left">
<table class="tType1">
<caption>일반 문자보내기 분류 번호 내용 등을 입력하는 표</caption>
<colgroup>
<col style="width: 120px;">
<col style="width: auto;">
</colgroup>
<tbody>
<tr>
<th scope="row">발신번호</th>
<td class="put_num">
<label for="num" class="label"></label>
<select id="num" class="sel_number">
<option value="">010-1234-5678</option>
<option value="">010-1234-5678</option>
<option value="">010-1234-5678</option>
<option value="">010-1234-5678</option>
</select>
<button type="button" class="btnType btnType6">번호등록</button>
</td>
</tr>
<tr class="msg_title active">
<th scope="row">제목</th>
<td>
<ul class="title_wrap">
<li>
<input id="title_y" type="radio" name="title_status" value="Y" onchange="titleStatus(this);">
<label for="title_y">사용</label>
<input id="title_n" type="radio" name="title_status" value="N" onchange="titleStatus(this);" checked="checked">
<label for="title_n">사용안함</label>
</li>
<li class="textbox">
<label for="mmsSubject" class="label"></label>
<input type="text" size="20" id="mmsSubject" name="mmsSubject" class="w100" maxlength="20" placeholder="" onfocus="this.placeholder=''">
</li>
</ul>
</td>
</tr>
<!-- 단문 -->
<tr>
<th scope="row" class="vTop">내용</th>
<td class="putText">
<div class="clearfix">
<div class="put_left long">
<!-- 업로드한 이미지의 썸네일 영역 -->
<ul class="thumb_wrap liOnImg ui-sortable"></ul>
<!-- //업로드한 이미지의 썸네일 영역 -->
<label for="smsTxtArea" class="label"></label>
<div class="ad_txt">
<p>(선거운동정보)</p>
</div>
<textarea id="smsTxtArea" name="smsTxtArea" class="put_text"></textarea>
<div class="text_length">
<div class="deny_txt">불법수집정보 신고번호 : <br>선거관리위원회 ☎1390<br>무료거부 0808800858</div>
<div name="afterDeny">
<p>
<span class="fwMd" id="msgLeng">81 / </span>
<span class="c_002c9a fwMd" id="limitLeng">90</span>byte
</p>
<span class="msg_com msg_short">단문</span>
</div>
</div>
</div>
<div class="put_right">
<div class="btn_popup_wrap spc_wrap">
<button type="button" class="btnType btnType7" onclick="miniPopup(this)">특수문자</button>
<div class="send_miniPop spc_character">
<div class="tab_character">
<a href="#none" class="on">특수문자</a>
<a href="#none">웃음</a>
<a href="#none">슬픔</a>
<a href="#none">분노</a>
<a href="#none">사랑</a>
<a href="#none">그외</a>
</div>
<!-- 특수문자 -->
<div class="cnt_character on">
<div class="box_character">
<a href="#">※</a>
<a href="#">☆</a>
<a href="#">★</a>
<a href="#">○</a>
<a href="#">●</a>
<a href="#">◎</a>
<a href="#">◇</a>
<a href="#">◆</a>
<a href="#">□</a>
<a href="#">■</a>
<a href="#">△</a>
<a href="#">▲</a>
<a href="#">▽</a>
<a href="#">▼</a>
<a href="#">→</a>
<a href="#">←</a>
<a href="#">↑</a>
<a href="#">↓</a>
<a href="#">↔</a>
<a href="#">〓</a>
<a href="#">◁</a>
<a href="#">♪</a>
<a href="#">◀</a>
<a href="#">▷</a>
<a href="#">▶</a>
<a href="#">♤</a>
<a href="#">♠</a>
<a href="#">♡</a>
<a href="#">♥</a>
<a href="#">♧</a>
<a href="#">♣</a>
<a href="#">⊙</a>
<a href="#">◈</a>
<a href="#">▣</a>
<a href="#">◐</a>
<a href="#">◑</a>
<a href="#">▒</a>
<a href="#">▦</a>
<a href="#">♨</a>
<a href="#">☏</a>
<a href="#">☎</a>
<a href="#">☞</a>
<a href="#">☜</a>
<a href="#">㈜</a>
<a href="#">™</a>
<a href="#">℡</a>
<a href="#">ㆀ</a>
<a href="#">ε</a>
<a href="#">『</a>
<a href="#">』</a>
<a href="#">ⓛ</a>
<a href="#">∏</a>
<a href="#">ご</a>
<a href="#">♂</a>
<a href="#">↗</a>
<a href="#">↙</a>
<a href="#">↖</a>
<a href="#">↘</a>
<a href="#">ψ</a>
</div>
</div>
<!-- //특수문자 -->
<!-- 웃음 -->
<div class="cnt_character emt_character">
<div class="box_character">
<a href="#">⌒⌒</a>
<a href="#">^_^</a>
<a href="#">^0^</a>
<a href="#">s( ̄▽ ̄)/</a>
<a href="#">(/^^)/</a>
<a href="#">^o^~♬</a>
<a href="#">^.~</a>
<a href="#">^-^b</a>
<a href="#">^▽^</a>
<a href="#">^ε^</a>
<a href="#">(^^)γ</a>
<a href="#">(~^^)~</a>
<a href="#">☆(~.^)/</a>
<a href="#">(*^o^*)</a>
<a href="#">n_n</a>
<a href="#">↖(^▽^)↗</a>
<a href="#">( ̄∇ ̄)</a>
<a href="#">(*^.^)♂</a>
<a href="#">*^^*</a>
<a href="#">ㅎ.ㅎ</a>
<a href="#">=^.^=</a>
<a href="#">^▽^</a>
<a href="#">~_~</a>
<a href="#">(=^▽^)/♪</a>
</div>
</div>
<!-- //웃음 -->
<!-- 슬픔 -->
<div class="cnt_character emt_character">
<div class="box_character">
<a href="#">(づ_T)</a>
<a href="#">(ㅠ.ㅠ)</a>
<a href="#">(#_-)</a>
<a href="#">o(T^T)o</a>
<a href="#">ㅠ.ㅠ</a>
<a href="#">(-_-メ)</a>
<a href="#">Y.Y</a>
<a href="#">TmT</a>
<a href="#">ご.ご</a>
<a href="#">(=_=;)</a>
<a href="#">⊇.⊆</a>
<a href="#">(o_Φ)</a>
<a href="#">∋.∈</a>
<a href="#">(___)_</a>
<a href="#">(-.¥)</a>
<a href="#">@_O</a>
<a href="#">●⊙</a>
<a href="#">(♨_♨)</a>
<a href="#">(X_X)</a>
<a href="#">Θ_Θ</a>
<a href="#">(∏.∏)</a>
<a href="#">(づ_ど)</a>
<a href="#">( ̄^ ̄)</a>
</div>
</div>
<!-- //슬픔 -->
<!-- 분노 -->
<div class="cnt_character emt_character">
<div class="box_character">
<a href="#">Θ_Θ</a>
<a href="#">=-_-a</a>
<a href="#">('o')</a>
<a href="#">(`へ´)</a>
<a href="#">(-ヘㅡメ)凸</a>
<a href="#">⊙⊙ㆀ</a>
<a href="#">⊙.⊙</a>
<a href="#">ㅡㅡ+</a>
<a href="#">(`o´)y</a>
<a href="#">づºДº)つ</a>
<a href="#">O_O</a>
<a href="#">(@.@)</a>
<a href="#">★.★</a>
<a href="#">(;¬_¬)</a>
<a href="#">┏(;-_-)┛</a>
<a href="#">┏(-_-メ)┓</a>
<a href="#">(><ㆀ)/</a>
<a href="#">--メ凸</a>
<a href="#">(`_)乂(_′)</a>
<a href="#">(-_-)c+_=)</a>
</div>
</div>
<!-- //분노 -->
<!-- 사랑 -->
<div class="cnt_character emt_character">
<div class="box_character">
<a href="#">♥.♥</a>
<a href="#">^o^~♬</a>
<a href="#">(*^}{^*)</a>
<a href="#">ⓛⓞⓥⓔ</a>
<a href="#">(*_*)</a>
<a href="#">(♡.♡)</a>
<a href="#">ε♡₃ε♥</a>
<a href="#">(*..)(..*)</a>
<a href="#">(~.^)s</a>
<a href="#">☞♡☜</a>
<a href="#">*♥o♥*</a>
<a href="#">(/^o^)/♡</a>
<a href="#">@-m-m--</a>
<a href="#">=>>------▷♡</a>
<a href="#">(*^^)σ(^_^)</a>
<a href="#">(*^-^)♡(^o^*)</a>
<a href="#">(づ^.^)づ~♡</a>
<a href="#">\(*^▽^*)ノ</a>
<a href="#">*⌒З^)^.⌒*)</a>
<a href="#">(づ ̄³ ̄)づ~</a>
<a href="#">(づ ̄³ ̄)づ</a>
<a href="#">(^*^)kiss</a>
<a href="#">(*'-⌒*)ⓥ</a>
<a href="#">s( ̄▽ ̄)/</a>
</div>
</div>
<!-- //사랑 -->
<!-- 그외 -->
<div class="cnt_character emt_character emt_etc ">
<div class="box_character">
<a href="#"><:3)--</a>
<a href="#">(^(oo)^)</a>
<a href="#">(:::[</a>
<a href="#">]:::)</a>
<a href="#">[( ̄. ̄)]zZ</a>
<a href="#">(``)(``)</a>
<a href="#">(T(oo)T)</a>
<a href="#">(^.^)=O)#.#)</a>
<a href="#">?‥…─━★</a>
<a href="#">(__)zzz</a>
<a href="#">(=ㅅ)=333</a>
<a href="#"><(>.<ㆀ)></a>
<a href="#">>(/////)<</a>
<a href="#">((ど(</a>
<a href="#">^0^</a>
<a href="#">)つ))</a>
<a href="#">■■■■■□90%</a>
<a href="#">( ̄_ ̄>-(^▽^;)</a>
<a href="#">∑⊙)++333=◀</a>
<a href="#">(ノ^_^)ノ~~⑩</a>
<a href="#">(^▽^)/\(^_^)</a>
<a href="#">(*.*)@==(`.`)</a>
<a href="#">(っㅡㅡ)つ━●</a>
<a href="#">(``)(</a>
<a href="#">:)(..)(:</a>
<a href="#">(``)</a>
</div>
</div>
<!-- //그외 -->
<button type="button" class="btn_close" onclick="miniPopup(this)">닫기</button>
</div>
</div>
<div class="btn_popup_wrap convers_wrap">
<button type="button" class="btnType btnType7" onclick="miniPopup(this)">특정문구 일괄변환<i class="qmMark"></i></button>
<div class="send_miniPop convers">
<div>
<div class="convers_top">
<span>특정문구 일괄변환이란?</span>
<p>주소록, 엑셀에 입력된 내용을 이용해 수신자마다 다른 내용의<br> 메시지를 발송하는 기능</p>
</div>
<div class="convers_middle"><a href="javascript:void(0)" class="changeWord" value="[*이름*]">[*이름*]</a></div>
<div class="convers_bottom">
<a href="javascript:void(0)" class="changeWord" value="[*1*]">[*1*]</a>
<a href="javascript:void(0)" class="changeWord" value="[*2*]">[*2*]</a>
<a href="javascript:void(0)" class="changeWord" value="[*3*]">[*3*]</a>
<a href="javascript:void(0)" class="changeWord" value="[*4*]">[*4*]</a>
</div>
</div>
<button type="button" class="btn_close" onclick="miniPopup(this);">닫기</button>
</div>
</div>
<button type="button" class="btnType btnType7">내문자함</button>
<button type="button" class="btnType btnType8" onclick="showPotoediter();">이미지 불러오기</button>
<div class="send_btnWrap">
<button type="button" class="btnType btnType9">문자저장</button>
<button type="button" class="btnType btnType9">초기화</button>
</div>
</div>
</div>
<p>* 현재 [단문] <span class="c_e40000 fwBold">120,000</span>건 발송 가능합니다.</p>
</td>
</tr>
<!-- 포토 -->
<tr>
<th scope="row" class="vTop">받는사람</th>
<td class="putText">
<div class="clearfix receipt_num">
<div class="receipt_num_top">
<label for="" class="label">받는 번호입력</label>
<textarea name="callTo" id="callTo" cols="30" rows="10" class="receipt_num" placeholder="번호를 입력하세요" onfocus="this.placeholder=''" onblur="this.placeholder='번호를 입력하세요'" style="width:340px;height:84px;"></textarea>
<div class="btn_popup_wrap">
<button type="button" class="btnType btnType6 btn_add_number addCallToF">번호추가<i class="qmMark"></i></button>
<span style="display:block;margin:6px 0 0 0;"><span class="vMiddle">*</span> 중복번호는 한번만 추가됩니다.</span>
<!-- <span style="display:block;"><span class="vMiddle">*</span> 일부 안심번호(050*)는 발송이 제한될 수 있습니다.</span> -->
<div class="error_hover_cont send_hover_cont">
<p>줄바꿈(Enter) 기준으로 핸드폰 번호 입력이 가능합니다.</p>
<span>
(예시)<br>
010-1234-0001↵<br>
010-1235-0002↵<br>
01012350003↵<br>
01012350004↵<br>
</span>
</div>
</div>
</div>
<div class="receipt_num_midde receipt_number_table_wrap">
<div class="put_left">
<div class="listType list01">
<div class="list_table list_head">
<div class="cb_wrap">
<label for="" class="label"></label>
<input type="checkbox">
</div>
<div class="list_table_num">
<p>번호</p>
<img src="/publish/images/sortUp.png">
<img src="/publish/images/sortDown.png">
</div>
<div class="list_table_name">
<p>이름</p>
<img src="/publish/images/sortUp.png">
<img src="/publish/images/sortDown.png">
</div>
</div>
<div class="list_table list_body">
<div class="cb_wrap">
<label for="" class="label"></label>
<input type="checkbox">
</div>
<div class="list_table_num">
<p>010-1234-5678</p>
</div>
<div class="list_table_name">
<p>홍길동</p>
</div>
</div>
<div class="list_table list_body">
<div class="cb_wrap">
<label for="" class="label"></label>
<input type="checkbox">
</div>
<div class="list_table_num">
<p>010-1234-5678</p>
</div>
<div class="list_table_name">
<p>홍길동</p>
</div>
</div>
</div>
<div class="list_bottom">
<div class="remove_btnWrap">
<button type="button" class="btnType15"><i class="remove_img"></i>전체삭제</button>
<button type="button" class="btnType15"><i class="remove_img"></i>선택삭제</button>
</div>
<div class="list_bottom_right">
<p>총 <span class="c_e40000">120</span>건 / 중복 <span class="c_002c9a">9</span>건</p>
<button type="button" class="address_reg2">주소록에 등록</button>
</div>
</div>
</div>
<div class="put_right">
<div class="btn_popup_wrap spc_wrap">
<button type="button" data-tooltip="popup06" class="btnType btnType7">주소록 불러오기</button>
</div>
<div class="btn_popup_wrap">
<button type="button" data-tooltip="popup02" class="btnType btnType7">엑셀 불러오기</button>
</div>
<div class="btn_popup_wrap">
<button type="button" data-tooltip="popup03" class="btnType btnType7 tab1">최근 전송내역</button>
</div>
<div class="btn_popup_wrap">
<button type="button" data-tooltip="popup03" class="btnType btnType7 tab2">자주보내는 번호</button>
</div>
<div class="btn_popup_wrap">
<button type="button" data-tooltip="popup05" class="btnType btnType7 tab2" onclick="getMjMsgSentListAll('1');">재전송</button>
</div>
<!-- <div class="btn_popup_wrap check_validity_wrap">
<button type="button" class="btnType btnType7">오류 검사<i class="qmMark error_qm"></i></button>
<div class="error_hover_cont send_hover_cont">
<p>등록하신 전화번호(형식 등)가 정확하게 입력되었는지 오류여부를 자동으로 검사할 수 있습니다.</p>
<span>(예시) 010-1234-0001(O),<br> 010-123-0001(X)</span>
</div>
</div> -->
</div>
</div>
</div>
</td>
</tr>
<tr>
<th colspan="2" class="billingAmount">
<div>
<div class="final_pay">
<div class="pay_info_list">
<p>발송금액 :</p>
<div class="info" id="repPriceTxt" style="display: none;">
단문 : <strong>20</strong>건<span>/</span>장문 : <strong>150</strong>건<span>/</span>그림문자 : <strong>30</strong>건
</div>
</div>
<p class="price"><span id="repPriceTxt"></span><span id="totalPriceTxt">0</span> 원<span></span></p>
</div>
<p style="text-align: right; font-size: 14px; color: #666; margin: -10px 0 15px 0; font-weight: 300;">* 이벤트회원의 발송금액은 이벤트단가를 적용하여 계산된 금액이므로 실제 발송금액과 다를 수 있습니다.</p>
<div class="pay_type clearfix">
<div>
<input type="radio" id="radio_bill_1" name="radio_bill" checked="checked">
<label for="radio_bill_1">보유잔액</label>
<label for="userMoney" class="label">보유잔액</label>
<input type="text" id="userMoney" name="userMoney" value="0" readonly="">
<span class="won">원</span>
<button type="button" class="btnType btnType21" onclick="location.href='/web/member/pay/PayView.do'">충전</button>
</div>
<div><button type="button" data-tooltip="popup07" class="btnType btnType3 btn_event_cash">이벤트 잔액</button></div>
</div>
<!--발송금액 아래 등급별 가격안내 추가-->
<div class="my_price_wrap">
<div class="center-line"></div>
<ul>
<li class="title">
<img src="/publish/images/content/icon_mypage_message.png" alt="">나의 단가 <span>:</span>
</li>
<li class="price_line">
<span class="type">단문</span>
<span class="price">18</span>원
<span class="line">/ </span>
</li>
<li class="price_line">
<span class="type">장문</span>
<span class="price">50</span>원
<span class="line">/ </span>
</li>
<li class="price_line">
<span class="type">그림</span>
<span class="price">90</span>원
(2장 : 110원 / 3장 : 130원)
</li>
</ul>
</div>
</div>
</th>
</tr>
<!-- <tr>
<th scope="row">추천인 ID</th>
<td class="check_num">
<input id="radio5" type="radio" name="recom" checked="checked">
<label for="radio5">없음</label>
<input id="radio6" type="radio" name="recom">
<label for="radio6">있음</label>
<div>
<label for="id" class="label"></label>
<input type="text" size="20" id="id" placeholder="추천인 아이디 입력" onfocus="this.placeholder=''" onblur="this.placeholder='추천인 아이디 입력'">
<button type="button" class="btnType btnType9">추천인 확인</button>
</div>
</td>
</tr> -->
</tbody>
</table>
</div><!-- send left 문자 보내기 입력 -->
<!-- send right 문자 보내기 미리보기 -->
<div class="send_right">
<div class="phone">
<div class="phoneIn">
<div>
<p class="prev_p"><img src="/publish/images/search.png">미리보기</p>
<div class="text_length2 clearfix" style="display: none;">
<span class="msg_com msg_short">단문</span>
<div>
<span>글자크기</span>
<button type="button"><img src="/publish/images/content/font_plus.png"></button>
<button type="button"><img src="/publish/images/content/font_minus.png"></button>
</div>
</div>
<div class="text_length2 clearfix">
<span class="msg_com msg_photo">포토</span>
<ul class="photo_msg_num">
<li onclick="imgClick(0);"><a href="#none">1</a></ li>
<li onclick="imgClick(1);"><a href="#none">2</a></ li>
<li onclick="imgClick(2);"><a href="#none">3</a></ li>
</ul>
<div>
<span>글자크기</span>
<button type="button"><img src="/publish/images/content/font_plus.png"></button>
<button type="button"><img src="/publish/images/content/font_minus.png"></button>
</div>
</div>
<!-- 텍스트 미리보기 -->
<div class="text_preview">
<div class="preiew_img">
<div class="img_box">
<img src="/publish/images/content/photo_sample01.jpg">
</div>
<div class="img_box">
<img src="/publish/images/content/photo_sample01.jpg">
</div>
<div class="img_box">
<img src="/publish/images/content/excel.jpg">
</div>
</div>
<div class="preview_auto">
<p class="ad_tit">(선거운동정보)</p>
<p class="none_txt">내용을 입력해주세요.</p>
<p class="realtime"></p>
<p class="deny_receipt">불법수집정보 신고번호:<br />선거관리위원회 ☎1390 <br />무료거부 0808800858</p>
</div>
</div>
<!-- //텍스트 미리보기 -->
</div>
</div>
<p class="addText">※ 단말기 설정에 따라 다르게 보일 수 있습니다<p>
</div>
<div class="phone_bottom">
<div class="send_rev">
<div class="send_content">
<div class="rev_radio">
<ul>
<li><input type="radio" id="reserYnN" name="reserYn" value="N" checked="checked"><label for="reserYnN">즉시</label></li>
<li><input type="radio" id="reserYnY" name="reserYn" value="Y"><label for="reserYnY">예약</label></li>
</ul>
</div>
<div class="send_btn">
<button type="button" class="btnType btnType11" onclick="publishCommon.toastsUtil('처리가 완료되었습니다.','active', 'success')">발송하기</button>
<button type="button" class="btnType btnType10" onclick="javascript:fnTestSend(); return false;">테스트발송</button>
</div>
</div>
<div class="rev_selected" style="display:none;">
<div class="rev_top">
<span>날짜 :</span>
<div class="calendar_wrap">
<input type="text" class="startDate inp calendar picker__input" title="검색 시작일" id="startDate" name="startDate" value="" data-datecontrol="true" readonly="" aria-haspopup="true" aria-expanded="false" aria-readonly="false" aria-owns="startDate_root">
</div>
<div class="selBox">
<select class="selType1" id="msgResHour" name="msgResHour">
<option value="00">00시</option>
<option value="01">01시</option>
<option value="02">02시</option>
<option value="03">03시</option>
<option value="04">04시</option>
<option value="05">05시</option>
<option value="06">06시</option>
<option value="07">07시</option>
<option value="08">08시</option>
<option value="09">09시</option>
<option value="10">10시</option>
<option value="11">11시</option>
<option value="12">12시</option>
<option value="13">13시</option>
<option value="14">14시</option>
<option value="15">15시</option>
<option value="16">16시</option>
<option value="17">17시</option>
<option value="18">18시</option>
<option value="19">19시</option>
<option value="20">20시</option>
<option value="21">21시</option>
<option value="22">22시</option>
<option value="23">23시</option>
<option value="24">24시</option>
</select>
<select class="selType1" id="msgResMin" name="msgResMin">
<option value="00">00분</option>
<option value="05">05분</option>
<option value="10">10분</option>
<option value="15">15분</option>
<option value="20">20분</option>
<option value="25">25분</option>
<option value="30">30분</option>
<option value="35">35분</option>
<option value="40">40분</option>
<option value="45">45분</option>
<option value="50">50분</option>
<option value="55">55분</option>
</select>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--// send right 문자 보내기 미리보기 -->
</div>
<!-- tab content2 -->
<div class="top_content election contentArea" id="tab1_2">
<div class="heading">
<h2>20건 수동문자</h2>
<div class="election_btnWrap">
<button type="button" class="button2 info" onclick="infoListPop('electionRule','792','800');">발송규정</button>
<button type="button" class="button2 info" data-tooltip="candidate_popup03">사용안내</button>
<button type="button" class="btnType" data-tooltip="alert_layer_popup02"><i class="election_btn1"></i>후보자 등록</button>
</div>
</div>
<div class="send_general">
<!-- send left 문자 보내기 입력 -->
<div class="send_left send_20">
<table class="tType1">
<caption>일반 문자보내기 분류 번호 내용 등을 입력하는 표</caption>
<colgroup>
<col style="width: 120px;">
<col style="width: auto;">
</colgroup>
<tbody>
<tr>
<th scope="row">발신번호</th>
<td class="put_num">
<label for="num" class="label"></label>
<select id="num" class="sel_number">
<option value="">010-1234-5678</option>
<option value="">010-1234-5678</option>
<option value="">010-1234-5678</option>
<option value="">010-1234-5678</option>
</select>
<button type="button" class="btnType btnType6">번호변경</button>
</td>
</tr>
<tr class="msg_title active">
<th scope="row">제목</th>
<td>
<ul class="title_wrap">
<li>
<input id="title_y" type="radio" name="title_status" value="Y" onchange="titleStatus(this);">
<label for="title_y">사용</label>
<input id="title_n" type="radio" name="title_status" value="N" onchange="titleStatus(this);" checked="checked">
<label for="title_n">사용안함</label>
</li>
<li class="textbox">
<label for="mmsSubject" class="label"></label>
<input type="text" size="20" id="mmsSubject" name="mmsSubject" class="w100" maxlength="20" placeholder="" onfocus="this.placeholder=''">
</li>
</ul>
</td>
</tr>
<!-- 단문 -->
<tr>
<th scope="row" class="vTop">내용</th>
<td class="putText">
<div class="clearfix">
<div class="put_left short">
<!-- 업로드한 이미지의 썸네일 영역 -->
<ul class="thumb_wrap liOnImg ui-sortable"></ul>
<!-- //업로드한 이미지의 썸네일 영역 -->
<label for="smsTxtArea" class="label"></label>
<div class="ad_txt">
<p>(선거운동정보)</p>
</div><textarea id="smsTxtArea" name="smsTxtArea" class="put_text"></textarea>
<div class="text_length">
<div class="deny_txt">불법수집정보 신고번호 :<br>선거관리위원회 ☎1390<br>무료거부 0808800858</div>
<div name="afterDeny">
<p>
<span class="fwMd" id="msgLeng">81 / </span>
<span class="c_002c9a fwMd" id="limitLeng">90</span>byte
</p>
<span class="msg_com msg_short">단문</span>
</div>
</div>
</div>
<div class="put_right">
<div class="btn_popup_wrap spc_wrap">
<button type="button" class="btnType btnType7" onclick="miniPopup(this)">특수문자</button>
<div class="send_miniPop spc_character">
<div class="tab_character">
<a href="#none" class="on">특수문자</a>
<a href="#none">웃음</a>
<a href="#none">슬픔</a>
<a href="#none">분노</a>
<a href="#none">사랑</a>
<a href="#none">그외</a>
</div>
<!-- 특수문자 -->
<div class="cnt_character on">
<div class="box_character">
<a href="#">※</a>
<a href="#">☆</a>
<a href="#">★</a>
<a href="#">○</a>
<a href="#">●</a>
<a href="#">◎</a>
<a href="#">◇</a>
<a href="#">◆</a>
<a href="#">□</a>
<a href="#">■</a>
<a href="#">△</a>
<a href="#">▲</a>
<a href="#">▽</a>
<a href="#">▼</a>
<a href="#">→</a>
<a href="#">←</a>
<a href="#">↑</a>
<a href="#">↓</a>
<a href="#">↔</a>
<a href="#">〓</a>
<a href="#">◁</a>
<a href="#">♪</a>
<a href="#">◀</a>
<a href="#">▷</a>
<a href="#">▶</a>
<a href="#">♤</a>
<a href="#">♠</a>
<a href="#">♡</a>
<a href="#">♥</a>
<a href="#">♧</a>
<a href="#">♣</a>
<a href="#">⊙</a>
<a href="#">◈</a>
<a href="#">▣</a>
<a href="#">◐</a>
<a href="#">◑</a>
<a href="#">▒</a>
<a href="#">▦</a>
<a href="#">♨</a>
<a href="#">☏</a>
<a href="#">☎</a>
<a href="#">☞</a>
<a href="#">☜</a>
<a href="#">㈜</a>
<a href="#">™</a>
<a href="#">℡</a>
<a href="#">ㆀ</a>
<a href="#">ε</a>
<a href="#">『</a>
<a href="#">』</a>
<a href="#">ⓛ</a>
<a href="#">∏</a>
<a href="#">ご</a>
<a href="#">♂</a>
<a href="#">↗</a>
<a href="#">↙</a>
<a href="#">↖</a>
<a href="#">↘</a>
<a href="#">ψ</a>
</div>
</div>
<!-- //특수문자 -->
<!-- 웃음 -->
<div class="cnt_character emt_character">
<div class="box_character">
<a href="#">⌒⌒</a>
<a href="#">^_^</a>
<a href="#">^0^</a>
<a href="#">s( ̄▽ ̄)/</a>
<a href="#">(/^^)/</a>
<a href="#">^o^~♬</a>
<a href="#">^.~</a>
<a href="#">^-^b</a>
<a href="#">^▽^</a>
<a href="#">^ε^</a>
<a href="#">(^^)γ</a>
<a href="#">(~^^)~</a>
<a href="#">☆(~.^)/</a>
<a href="#">(*^o^*)</a>
<a href="#">n_n</a>
<a href="#">↖(^▽^)↗</a>
<a href="#">( ̄∇ ̄)</a>
<a href="#">(*^.^)♂</a>
<a href="#">*^^*</a>
<a href="#">ㅎ.ㅎ</a>
<a href="#">=^.^=</a>
<a href="#">^▽^</a>
<a href="#">~_~</a>
<a href="#">(=^▽^)/♪</a>
</div>
</div>
<!-- //웃음 -->
<!-- 슬픔 -->
<div class="cnt_character emt_character">
<div class="box_character">
<a href="#">(づ_T)</a>
<a href="#">(ㅠ.ㅠ)</a>
<a href="#">(#_-)</a>
<a href="#">o(T^T)o</a>
<a href="#">ㅠ.ㅠ</a>
<a href="#">(-_-メ)</a>
<a href="#">Y.Y</a>
<a href="#">TmT</a>
<a href="#">ご.ご</a>
<a href="#">(=_=;)</a>
<a href="#">⊇.⊆</a>
<a href="#">(o_Φ)</a>
<a href="#">∋.∈</a>
<a href="#">(___)_</a>
<a href="#">(-.¥)</a>
<a href="#">@_O</a>
<a href="#">●⊙</a>
<a href="#">(♨_♨)</a>
<a href="#">(X_X)</a>
<a href="#">Θ_Θ</a>
<a href="#">(∏.∏)</a>
<a href="#">(づ_ど)</a>
<a href="#">( ̄^ ̄)</a>
</div>
</div>
<!-- //슬픔 -->
<!-- 분노 -->
<div class="cnt_character emt_character">
<div class="box_character">
<a href="#">Θ_Θ</a>
<a href="#">=-_-a</a>
<a href="#">('o')</a>
<a href="#">(`へ´)</a>
<a href="#">(-ヘㅡメ)凸</a>
<a href="#">⊙⊙ㆀ</a>
<a href="#">⊙.⊙</a>
<a href="#">ㅡㅡ+</a>
<a href="#">(`o´)y</a>
<a href="#">づºДº)つ</a>
<a href="#">O_O</a>
<a href="#">(@.@)</a>
<a href="#">★.★</a>
<a href="#">(;¬_¬)</a>
<a href="#">┏(;-_-)┛</a>
<a href="#">┏(-_-メ)┓</a>
<a href="#">(><ㆀ)/</a>
<a href="#">--メ凸</a>
<a href="#">(`_)乂(_′)</a>
<a href="#">(-_-)c+_=)</a>
</div>
</div>
<!-- //분노 -->
<!-- 사랑 -->
<div class="cnt_character emt_character">
<div class="box_character">
<a href="#">♥.♥</a>
<a href="#">^o^~♬</a>
<a href="#">(*^}{^*)</a>
<a href="#">ⓛⓞⓥⓔ</a>
<a href="#">(*_*)</a>
<a href="#">(♡.♡)</a>
<a href="#">ε♡₃ε♥</a>
<a href="#">(*..)(..*)</a>
<a href="#">(~.^)s</a>
<a href="#">☞♡☜</a>
<a href="#">*♥o♥*</a>
<a href="#">(/^o^)/♡</a>
<a href="#">@-m-m--</a>
<a href="#">=>>------▷♡</a>
<a href="#">(*^^)σ(^_^)</a>
<a href="#">(*^-^)♡(^o^*)</a>
<a href="#">(づ^.^)づ~♡</a>
<a href="#">\(*^▽^*)ノ</a>
<a href="#">*⌒З^)^.⌒*)</a>
<a href="#">(づ ̄³ ̄)づ~</a>
<a href="#">(づ ̄³ ̄)づ</a>
<a href="#">(^*^)kiss</a>
<a href="#">(*'-⌒*)ⓥ</a>
<a href="#">s( ̄▽ ̄)/</a>
</div>
</div>
<!-- //사랑 -->
<!-- 그외 -->
<div class="cnt_character emt_character emt_etc ">
<div class="box_character">
<a href="#"><:3)--</a>
<a href="#">(^(oo)^)</a>
<a href="#">(:::[</a>
<a href="#">]:::)</a>
<a href="#">[( ̄. ̄)]zZ</a>
<a href="#">(``)(``)</a>
<a href="#">(T(oo)T)</a>
<a href="#">(^.^)=O)#.#)</a>
<a href="#">?‥…─━★</a>
<a href="#">(__)zzz</a>
<a href="#">(=ㅅ)=333</a>
<a href="#"><(>.<ㆀ)></a>
<a href="#">>(/////)<</a>
<a href="#">((ど(</a>
<a href="#">^0^</a>
<a href="#">)つ))</a>
<a href="#">■■■■■□90%</a>
<a href="#">( ̄_ ̄>-(^▽^;)</a>
<a href="#">∑⊙)++333=◀</a>
<a href="#">(ノ^_^)ノ~~⑩</a>
<a href="#">(^▽^)/\(^_^)</a>
<a href="#">(*.*)@==(`.`)</a>
<a href="#">(っㅡㅡ)つ━●</a>
<a href="#">(``)(</a>
<a href="#">:)(..)(:</a>
<a href="#">(``)</a>
</div>
</div>
<!-- //그외 -->
<button type="button" class="btn_close" onclick="miniPopup(this)">닫기</button>
</div>
</div>
<div class="btn_wrap btn_02">
<button type="button" class="btnType btnType7" onclick="miniPopup(this)">[*이름*]</button>
<!-- <button type="button" class="btnType btnType7" onclick="miniPopup(this)">선거문구</button> -->
<label for="election_text" class="election_button btnType btnType7">
<input type="checkbox" id="election_text"/>선거문구
</label>
</div>
<button type="button" class="btnType btnType7">내문자함</button>
<button type="button" class="btnType btnType8" onclick="showPotoediter();">이미지 불러오기</button>
<div class="send_btnWrap">
<button type="button" class="btnType btnType9">문자저장</button>
<button type="button" class="btnType btnType9">초기화</button>
</div>
</div>
</div>
<p>* 현재 [단문] <span class="c_e40000 fwBold">120,000</span>건 발송 가능합니다.</p>
</td>
</tr>
<!-- 포토 -->
<tr>
<th scope="row" class="vTop">받는사람</th>
<td class="putText">
<div class="clearfix receipt_num">
<!-- <div class="receipt_num_top" style="gap:6px;align-items:center;">
<label for="" class="label">받는 번호입력</label>
<input type="text" placeholder="번호를 입력하세요" onfocus="this.placeholder=''" onblur="this.placeholder='번호를 입력하세요'" style="width:340px;">
<button type="button" class="btnType btnType6">번호추가</button>
<span><span class="vMiddle">*</span> 중복번호는 한번만 발송됩니다.</span>
</div> -->
<div class="receipt_num_midde receipt_number_table_wrap table_20">
<div class="put_left">
<div class="receipt_num_top right">
<div class="btn_popup_wrap">
<button type="button" class="btnType btn_yellow fill btn_check_one">1명씩 선택<i class="qmMark"></i></button>
<div class="error_hover_cont send_hover_cont">
<p>마우스를 누르고 있으면 받는사람을 연속적으로 20명까지 선택할 수 있습니다.</p>
</div>
</div>
<button type="button" class="btnType btn_gray fill" onclick="publishCommon.uncheckAll('receipt_number_check');">선택해제</button>
</div>
<div class="listType list" style="height:647px;">
<ul class="thead_ul table_ul table_ul_20">
<li class="input_wrap">
<!-- <div class="input_wrap"><input type="checkbox" id="checkAll" name="receipt_number_check"></div> -->
</li>
<li class="td_name">
이름
<button type="button" class="btn_sort_up"><img src="/publish/images/sortUp.png"></button>
<button type="button" class="btn_sort_down"><img src="/publish/images/sortDown.png"></button>
</li>
<li class="td_number">
번호
<button type="button" class="btn_sort_up"><img src="/publish/images/sortUp.png"></button>
<button type="button" class="btn_sort_down"><img src="/publish/images/sortDown.png"></button>
</li>
<li class="td_status">
발송여부
<button type="button" class="btn_sort_up"><img src="/publish/images/sortUp.png"></button>
<button type="button" class="btn_sort_down"><img src="/publish/images/sortDown.png"></button>
</li>
</ul>
<ul class="tbody_ul table_ul table_ul_20">
<li>
<div class="input_wrap"></div>
<div class="td_name">김길동</div>
<div class="td_number">010-1234-5678</div>
<div class="td_status complete">발송완료</div>
</li>
<li>
<div class="input_wrap"></div>
<div class="td_name">김길동</div>
<div class="td_number">010-1234-5678</div>
<div class="td_status exclude">발송제외</div>
</li>
<li>
<div class="input_wrap"><input type="checkbox" id="check03" name="receipt_number_check"></div>
<div class="td_name">김길동</div>
<div class="td_number">010-1234-5678</div>
<div class="td_status c_002c9a">발송전</div>
</li>
<li>
<div class="input_wrap"><input type="checkbox" id="check04" name="receipt_number_check"></div>
<div class="td_name">김길동</div>
<div class="td_number">010-1234-5678</div>
<div class="td_status c_002c9a">발송전</div>
</li>
<li>
<div class="input_wrap"><input type="checkbox" id="check05" name="receipt_number_check"></div>
<div class="td_name">김길동</div>
<div class="td_number">010-1234-5678</div>
<div class="td_status c_002c9a">발송전</div>
</li>
<li>
<div class="input_wrap"><input type="checkbox" id="check06" name="receipt_number_check"></div>
<div class="td_name">김길동</div>
<div class="td_number">010-1234-5678</div>
<div class="td_status c_002c9a">발송전</div>
</li>
<li>
<div class="input_wrap"><input type="checkbox" id="check07" name="receipt_number_check"></div>
<div class="td_name">김길동</div>
<div class="td_number">010-1234-5678</div>
<div class="td_status c_002c9a">발송전</div>
</li>
<li>
<div class="input_wrap"><input type="checkbox" id="check08" name="receipt_number_check"></div>
<div class="td_name">김길동</div>
<div class="td_number">010-1234-5678</div>
<div class="td_status c_002c9a">발송전</div>
</li>
<li>
<div class="input_wrap"><input type="checkbox" id="check09" name="receipt_number_check"></div>
<div class="td_name">김길동</div>
<div class="td_number">010-1234-5678</div>
<div class="td_status c_002c9a">발송전</div>
</li>
<li>
<div class="input_wrap"><input type="checkbox" id="check10" name="receipt_number_check"></div>
<div class="td_name">김길동</div>
<div class="td_number">010-1234-5678</div>
<div class="td_status c_002c9a">발송전</div>
</li>
<li>
<div class="input_wrap"><input type="checkbox" id="check11" name="receipt_number_check"></div>
<div class="td_name">김길동</div>
<div class="td_number">010-1234-5678</div>
<div class="td_status c_002c9a">발송전</div>
</li>
<li>
<div class="input_wrap"><input type="checkbox" id="check12" name="receipt_number_check"></div>
<div class="td_name">김길동</div>
<div class="td_number">010-1234-5678</div>
<div class="td_status c_002c9a">발송전</div>
</li>
<li>
<div class="input_wrap"><input type="checkbox" id="check13" name="receipt_number_check"></div>
<div class="td_name">김길동</div>
<div class="td_number">010-1234-5678</div>
<div class="td_status c_002c9a">발송전</div>
</li>
<li>
<div class="input_wrap"><input type="checkbox" id="check14" name="receipt_number_check"></div>
<div class="td_name">김길동</div>
<div class="td_number">010-1234-5678</div>
<div class="td_status c_002c9a">발송전</div>
</li>
<li>
<div class="input_wrap"><input type="checkbox" id="check15" name="receipt_number_check"></div>
<div class="td_name">김길동</div>
<div class="td_number">010-1234-5678</div>
<div class="td_status c_002c9a">발송전</div>
</li>
<li>
<div class="input_wrap"><input type="checkbox" id="check16" name="receipt_number_check"></div>
<div class="td_name">김길동</div>
<div class="td_number">010-1234-5678</div>
<div class="td_status c_002c9a">발송전</div>
</li>
<li>
<div class="input_wrap"><input type="checkbox" id="check17" name="receipt_number_check"></div>
<div class="td_name">김길동</div>
<div class="td_number">010-1234-5678</div>
<div class="td_status c_002c9a">발송전</div>
</li>
<li>
<div class="input_wrap"><input type="checkbox" id="check18" name="receipt_number_check"></div>
<div class="td_name">김길동</div>
<div class="td_number">010-1234-5678</div>
<div class="td_status c_002c9a">발송전</div>
</li>
<li>
<div class="input_wrap"><input type="checkbox" id="check19" name="receipt_number_check"></div>
<div class="td_name">김길동</div>
<div class="td_number">010-1234-5678</div>
<div class="td_status c_002c9a">발송전</div>
</li>
<li>
<div class="input_wrap"><input type="checkbox" id="check20" name="receipt_number_check"></div>
<div class="td_name">김길동</div>
<div class="td_number">010-1234-5678</div>
<div class="td_status c_002c9a">발송전</div>
</li>
<li>
<div class="input_wrap"><input type="checkbox" id="check21" name="receipt_number_check"></div>
<div class="td_name">김길동</div>
<div class="td_number">010-1234-5678</div>
<div class="td_status c_002c9a">발송전</div>
</li>
</ul>
</div>
<div class="list_bottom">
<ul class="pagination">
<li class="page_first"><a href="#" title="첫페이지" onclick="customSampleListAjax(1);return false;"><button type="button"><img src="/publish/images/content/page_first.png" alt="첫페이지"></button></a></li>
<li class="page_prev"><a href="#" title="이전10페이지" onclick="customSampleListAjax(1);return false;"><button type="button"><img src="/publish/images/content/page_prev.png" alt="이전10페이지"></button></a></li>
<li class="on"><button type="button"><a href="#" title="현재페이지">1</a></button></li>
<li><button type="button" onclick="customSampleListAjax(2);return false;"><a href="#" title="2페이지">2</a></button></li>
<li><button type="button" onclick="customSampleListAjax(3);return false;"><a href="#" title="3페이지">3</a></button></li>
<li><button type="button" onclick="customSampleListAjax(4);return false;"><a href="#" title="4페이지">4</a></button></li>
<li><button type="button" onclick="customSampleListAjax(5);return false;"><a href="#" title="5페이지">5</a></button></li>
<li class="page_next"><a href="#" title="다음10페이지" onclick="customSampleListAjax(11);return false;"><button type="button"><img src="/publish/images/content/page_next.png" alt="다음10페이지"></button></a></li>
<li class="page_last"><a href="#" title="마지막페이지" onclick="customSampleListAjax(52);return false;"><button type="button"><img src="/publish/images/content/page_last.png" alt="마지막페이지"></button></a></li>
</ul>
<!-- <div class="list_bottom_right">
<input type="checkbox" id="page_auto"><label for="page_auto">다음페이지 자동넘김</label>
</div> -->
</div>
</div>
<div class="put_right">
<div class="btn_wrap">
<button type="button" class="btnType btnType7">주소록 불러오기</button>
<button type="button" class="btnType btnType7">엑셀 불러오기</button>
<!-- <div class="btn_popup_wrap">
<button type="button" class="btnType btnType3">오류 검사 <i class="qmMark"></i></button>
<div class="error_hover_cont send_hover_cont">
<p>마우스를 계속 누르고 있으면 받는 사람이 연속으로 선택됩니다.</p>
<span>(예시) 010-1234-0001(O) / 010-123-0001(X)</span>
</div>
</div> -->
</div>
<dl class="receipt_info">
<dt>전체 받는사람 <button type="button" class="btn_reset"><i></i>초기화</button></dt>
<dd>
<p><b>10,000,000</b>명</p>
</dd>
<dt>
<div class="btn_popup_wrap">
<div class="title">
발송완료 <i class="icon qmMark"></i>
</div>
<div class="error_hover_cont send_hover_cont">
<p>실제 발송결과는 발송결과 페이지에서<br />확인하실 수 있습니다.</p>
</div>
</div>
</dt>
<dd>
<p><b class="c_e40000">20</b>명</p>
</dd>
<dt>
<div class="btn_popup_wrap exclude">
<div class="title">
발송제외 <i class="icon qmMark"></i>
</div>
<div class="error_hover_cont send_hover_cont">
<p>수신거부로 인해 발송 대상에서<br />제외된 상태입니다.</p>
</div>
</div>
</dt>
<dd>
<p><b class="c_666">20</b>명</p>
</dd>
<dt>잔여 받는사람</dt>
<dd>
<p><b class="c_002c9a">20</b>명</p>
</dd>
<dd class="info_text">
<i class="icon info"></i>
<p>
불러온 명단은 화면<br />
이동 시에도 유지되며,<br />필요시 초기화 할 수 있습니다.
</p>
</dd>
</dl>
<div class="form_wrap column">
<label class="option_item" for="autoPageMove">
<input type="checkbox" id="autoPageMove" name="autoPageMove">
<span class="option_label">다음페이지 자동넘김</span>
</label>
<label class="option_item" for="sendBySpace">
<input type="checkbox" id="sendBySpace" name="sendBySpace">
<span class="option_label">스페이스바로 발송하기</span>
</label>
</div>
<div class="send_btn">
<!-- <button type="button" class="btnType btnType11 btn_send" onclick="javascript:fn_sendMsgData();">발송하기</button> -->
<button type="button" class="btnType btnType11 btn_send" onclick="javascript:fn_sendMsgData();">발송하기</button>
</div>
</div>
</div>
</div>
</td>
</tr>
<tr>
<th colspan="2" class="billingAmount">
<div>
<div class="final_pay">
<div class="pay_info_list">
<p>발송금액 :</p>
<div class="info" id="repPriceTxt" style="display: none;">
단문 : <strong>20</strong>건<span>/</span>장문 : <strong>150</strong>건<span>/</span>그림문자 : <strong>30</strong>건
</div>
</div>
<p class="price"><span id="repPriceTxt"></span><span id="totalPriceTxt">0</span> 원<span></span></p>
</div>
<p style="text-align: right; font-size: 14px; color: #666; margin: -10px 0 15px 0; font-weight: 300;">* 이벤트회원의 발송금액은 이벤트단가를 적용하여 계산된 금액이므로 실제 발송금액과 다를 수 있습니다.</p>
<div class="pay_type clearfix">
<div>
<input type="radio" id="radio_bill_1" name="radio_bill" checked="checked">
<label for="radio_bill_1">보유잔액</label>
<label for="userMoney" class="label">보유잔액</label>
<input type="text" id="userMoney" name="userMoney" value="0" readonly="">
<span class="won">원</span>
<button type="button" class="btnType btnType21" onclick="location.href='/web/member/pay/PayView.do'">충전</button>
</div>
<div><button type="button" data-tooltip="popup07" class="btnType btnType3 btn_event_cash">이벤트 잔액</button></div>
</div>
<!--발송금액 아래 등급별 가격안내 추가-->
<div class="my_price_wrap">
<div class="center-line"></div>
<ul>
<li class="title">
<img src="/publish/images/content/icon_mypage_message.png" alt="">나의 단가 <span>:</span>
</li>
<li class="price_line">
<span class="type">단문</span>
<span class="price">18</span>원
<span class="line">/ </span>
</li>
<li class="price_line">
<span class="type">장문</span>
<span class="price">50</span>원
<span class="line">/ </span>
</li>
<li class="price_line">
<span class="type">그림</span>
<span class="price">90</span>원
(2장 : 110원 / 3장 : 130원)
</li>
</ul>
</div>
</div>
</th>
</tr>
<tr>
<th scope="row">추천인 ID</th>
<td class="check_num">
<input id="radio5" type="radio" name="recom" checked="checked">
<label for="radio5">없음</label>
<input id="radio6" type="radio" name="recom">
<label for="radio6">있음</label>
<div>
<label for="id" class="label"></label>
<input type="text" size="20" id="id" placeholder="추천인 아이디 입력" onfocus="this.placeholder=''" onblur="this.placeholder='추천인 아이디 입력'">
<button type="button" class="btnType btnType9">추천인 확인</button>
</div>
</td>
</tr>
</tbody>
</table>
</div><!-- send left 문자 보내기 입력 -->
<!-- send right 문자 보내기 미리보기 -->
<div class="send_right">
<div class="phone">
<div class="phoneIn">
<div>
<p class="prev_p"><img src="/publish/images/search. png">미리보기</p>
<div class="text_length2 clearfix" style="display: none;">
<span class="msg_com msg_short">단문</span>
<div>
<span>글자크기</span>
<button type="button"><img src="/publish/images/content/font_plus.png"></button>
<button type="button"><img src="/publish/images/content/font_minus.png"></button>
</div>
</div>
<div class="text_length2 clearfix">
<span class="msg_com msg_photo">포토</span>
<ul class="photo_msg_num">
<li onclick="imgClick(0);"><a href="#none">1</a></ li>
<li onclick="imgClick(1);"><a href="#none">2</a></ li>
<li onclick="imgClick(2);"><a href="#none">3</a></ li>
</ul>
<div>
<span>글자크기</span>
<button type="button"><img src="/publish/images/content/font_plus.png"></button>
<button type="button"><img src="/publish/images/content/font_minus.png"></button>
</div>
</div>
<!-- 텍스트 미리보기 -->
<div class="text_preview">
<div class="preiew_img">
<div class="img_box">
<img src="/publish/images/content/photo_sample01.jpg">
</div>
<div class="img_box">
<img src="/publish/images/content/photo_sample01.jpg">
</div>
<div class="img_box">
<img src="/publish/images/content/excel.jpg">
</div>
</div>
<div class="preview_auto">
<p class="ad_tit">(선거운동정보)</p>
<p class="none_txt">내용을 입력해주세요.</p>
<p class="realtime"></p>
<p class="deny_receipt">불법수집정보 신고번호:<br />선거관리위원회 ☎1390<br />무료거부 0808800858</p>
</div>
</div>
<!-- //텍스트 미리보기 -->
</div>
</div>
<p class="addText">※ 단말기 설정에 따라 다르게 보일 수 있습니다<p>
</div>
<div class="phone_bottom" style="bottom: 130px;">
<!-- <div class="send_rev">
<div class="send_content">
<div class="rev_radio">
<ul>
<li><input type="radio" id="reserYnN" name="reserYn" value="N" checked="checked"><label for="reserYnN">즉시</label></li>
<li><input type="radio" id="reserYnY" name="reserYn" value="Y"><label for="reserYnY">예약</label></li>
</ul>
</div>
<div class="send_btn">
<button type="button" class="btnType btnType11" onclick="javascript:fn_sendMsgData(); return false;">발송하기</button>
<button type="button" class="btnType btnType10" onclick="javascript:fnTestSend(); return false;">테스트발송</button>
</div>
</div>
엔터키로 발송 체크박스
<div class="use_enter" style="display: none;">
<input type="checkbox" id="enterChk" name="enterChk">
<label for="enterChk" id="lblEnterKey">Enter키로 발송하기</label>예약일땐 'Enter키로 예약하기'로 변경부탁드려요
</div>
<div class="rev_selected" style="display: none;">
<div class="rev_top">
<span>날짜 :</span>
<div class="calendar_wrap">
<input type="text" class="startDate2 inp resDate calendar02 picker__input" title="검색 시작일" id="startDate2" name="startDate2" value="" data-datecontrol="true" readonly="" aria-haspopup="true" aria-expanded="false" aria-readonly="false" aria-owns="startDate2_root">
</div>
<label for="msgResHour" class="label">시 선택</label>
<div class="selBox">
<select class="selType1" id="msgResHour" name="msgResHour">
<option value="00">00시</option>
<option value="01">01시</option>
<option value="02">02시</option>
<option value="03">03시</option>
<option value="04">04시</option>
<option value="05">05시</option>
<option value="06">06시</option>
<option value="07">07시</option>
<option value="08">08시</option>
<option value="09">09시</option>
<option value="10">10시</option>
<option value="11">11시</option>
<option value="12">12시</option>
<option value="13">13시</option>
<option value="14">14시</option>
<option value="15">15시</option>
<option value="16">16시</option>
<option value="17">17시</option>
<option value="18">18시</option>
<option value="19">19시</option>
<option value="20">20시</option>
<option value="21">21시</option>
<option value="22">22시</option>
<option value="23">23시</option>
<option value="24">24시</option>
</select>
<select class="selType1" id="msgResMin" name="msgResMin">
<option value="00">00분</option>
<option value="05">05분</option>
<option value="10">10분</option>
<option value="15">15분</option>
<option value="20">20분</option>
<option value="25">25분</option>
<option value="30">30분</option>
<option value="35">35분</option>
<option value="40">40분</option>
<option value="45">45분</option>
<option value="50">50분</option>
<option value="55">55분</option>
</select>
</div>
</div>
</div>
</div> -->
</div>
</div>
</div>
<!--// send right 문자 보내기 미리보기 -->
</div>
<!--// tab content2 -->
</div>
<!--// tab content1 -->
<div class="send_bottom">
<!-- tab button -->
<ul class="tabType2">
<li class="tab"><button type="button" onclick="TabType2(this,'1');">문자 샘플</button></li>
<li class="tab active"><button type="button" onclick="TabType2(this,'2');">그림문자 샘플</button></li>
<li class="tab"><button type="button" onclick="TabType2(this,'3');">지도/약도 추가</button></li>
<li class="tab"><button type="button" onclick="TabType2(this,'4');">내 문자함</button></li>
</ul>
<!--// tab button -->
<div class="search_sample">
<input type="text" placeholder="문자샘플 검색" onfocus="this.placeholder=''" onblur="this.placeholder='문자샘플 검색'">
<button><img src="/publish/images/search02.png" alt=""></button>
</div>
<!-- tab content1 -->
<div class="bottom_content" id="tab2_1">
<div class="area_tabs">
<div class="top_tab">
<div class="tab_depth1">
<a href="#none" class="on">전체</a>
<a href="#none">기업</a>
<a href="#none">개인</a>
<div class="on_active">전체</div>
</div>
<div class="tab_depth2">
<a href="#none" class="on">단문문자</a>
<a href="#none">장문문자</a>
</div>
<select name="" id="" class="selType2">
<option value="">2줄보기</option>
<option value="">4줄보기</option>
<option value="">6줄보기</option>
</select>
<div class="customReq">
<button type="button"><i></i>맞춤제작 요청</button>
</div>
</div>
<div class="bottom_tab">
<div class="tab_depth3">
<a href="#none">All</a>
<a href="#none" class="on">BEST</a>
<a href="#none">요일</a>
<a href="#none">계절/날씨</a>
<a href="#none">선거</a>
<a href="#none">기념일데이</a>
<a href="#none">경조사</a>
<a href="#none">모임/행사</a>
<a href="#none">명절</a>
<a href="#none">연말연시</a>
<a href="#none">감사/축하</a>
<a href="#none">사랑/우정</a>
<a href="#none">격려/위로</a>
<a href="#none">유머/코믹</a>
<a href="#none">좋은글/명언</a>
<a href="#none">운세/별자리</a>
<a href="#none">종교</a>
</div>
<div class="tab_depth4">
<a href="#none" class="on">#봄인사</a>
<a href="#none">#좋은글</a>
<a href="#none">#초대/답례</a>
</div>
</div>
</div>
<ul class="area_tabcontent msg_sample">
<li>
<div class="tit_text_wrap">
<p class="tit_text">화이트 데이 화이트 데이 화이트 데이</p>
</div>
<div class="msg_cont">
<div class="msg_text">즐거운 화이트데이입니다. <br><br>
달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
*""* <br>
*◆○* <br>
*♡◎★* <br>
######## <br>
\_____/<br>
</div>
</div>
<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
</li>
<li>
<div class="tit_text_wrap">
<p class="tit_text">화이트 데이</p>
</div>
<div class="msg_cont">
<div class="msg_text">즐거운 화이트데이입니다. <br><br>
달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
*""* <br>
*◆○* <br>
*♡◎★* <br>
######## <br>
\_____/<br>
</div>
</div>
<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
</li>
<li>
<div class="tit_text_wrap">
<p class="tit_text">화이트 데이</p>
</div>
<div class="msg_cont">
<div class="msg_text">즐거운 화이트데이입니다. <br><br>
달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
*""* <br>
*◆○* <br>
*♡◎★* <br>
######## <br>
\_____/<br>
</div>
</div>
<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
</li>
<li>
<div class="tit_text_wrap">
<p class="tit_text">화이트 데이</p>
</div>
<div class="msg_cont">
<div class="msg_text">즐거운 화이트데이입니다. <br><br>
달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
*""* <br>
*◆○* <br>
*♡◎★* <br>
######## <br>
\_____/<br>
</div>
</div>
<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
</li>
<li>
<div class="tit_text_wrap">
<p class="tit_text">화이트 데이</p>
</div>
<div class="msg_cont">
<div class="msg_text">즐거운 화이트데이입니다. <br><br>
달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
*""* <br>
*◆○* <br>
*♡◎★* <br>
######## <br>
\_____/<br>
</div>
</div>
<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
</li>
<li>
<div class="tit_text_wrap">
<p class="tit_text">화이트 데이</p>
</div>
<div class="msg_cont">
<div class="msg_text">즐거운 화이트데이입니다. <br><br>
달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
*""* <br>
*◆○* <br>
*♡◎★* <br>
######## <br>
\_____/<br>
</div>
</div>
<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
</li>
<li>
<div class="tit_text_wrap">
<p class="tit_text">화이트 데이</p>
</div>
<div class="msg_cont">
<div class="msg_text">즐거운 화이트데이입니다. <br><br>
달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
*""* <br>
*◆○* <br>
*♡◎★* <br>
######## <br>
\_____/<br>
</div>
</div>
<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
</li>
<li>
<div class="tit_text_wrap">
<p class="tit_text">화이트 데이</p>
</div>
<div class="msg_cont">
<div class="msg_text">즐거운 화이트데이입니다. <br><br>
달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
*""* <br>
*◆○* <br>
*♡◎★* <br>
######## <br>
\_____/<br>
</div>
</div>
<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
</li>
<li>
<div class="tit_text_wrap">
<p class="tit_text">화이트 데이</p>
</div>
<div class="msg_cont">
<div class="msg_text">즐거운 화이트데이입니다. <br><br>
달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
*""* <br>
*◆○* <br>
*♡◎★* <br>
######## <br>
\_____/<br>
</div>
</div>
<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
</li>
<li>
<div class="tit_text_wrap">
<p class="tit_text">화이트 데이</p>
</div>
<div class="msg_cont">
<div class="msg_text">즐거운 화이트데이입니다. <br><br>
달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
*""* <br>
*◆○* <br>
*♡◎★* <br>
######## <br>
\_____/<br>
</div>
</div>
<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
</li>
</ul>
<!-- pagination -->
<ul class="pagination">
<li class="page_first"><button><img src="/publish/images/content/page_first.png" alt=""></button></li>
<li class="page_prev"><button><img src="/publish/images/content/page_prev.png" alt=""></button></li>
<li class="on"><button>1</button></li>
<li><button>2</button></li>
<li><button>3</button></li>
<li><button>4</button></li>
<li><button>5</button></li>
<li><button>6</button></li>
<li><button>7</button></li>
<li><button>8</button></li>
<li><button>9</button></li>
<li><button>10</button></li>
<li class="page_next"><button><img src="/publish/images/content/page_next.png" alt=""></button></li>
<li class="page_last"><button><img src="/publish/images/content/page_last.png" alt=""></button></li>
</ul><!-- pagination -->
</div>
<!--// tab content1 -->
<!--// tab content2 -->
<div class="bottom_content current" id="tab2_2">
<div class="area_tabs">
<div class="top_tab">
<div class="tab_depth1">
<a href="#none" class="on">전체</a>
<a href="#none">기업</a>
<a href="#none">개인</a>
<div class="on_active">전체</div>
</div>
<div class="tab_depth2">
<a href="#none" class="on">그림문자</a>
</div>
<select name="" id="" class="selType2">
<option value="">2줄보기</option>
<option value="">4줄보기</option>
<option value="">6줄보기</option>
</select>
<div class="customReq">
<button type="button"><i></i>맞춤제작 요청</button>
</div>
</div>
<div class="bottom_tab">
<div class="tab_depth3">
<a href="#none">All</a>
<a href="#none" class="on">BEST</a>
<a href="#none">요일</a>
<a href="#none">계절/날씨</a>
<a href="#none">선거</a>
<a href="#none">기념일데이</a>
<a href="#none">경조사</a>
<a href="#none">모임/행사</a>
<a href="#none">명절</a>
<a href="#none">연말연시</a>
<a href="#none">감사/축하</a>
<a href="#none">사랑/우정</a>
<a href="#none">격려/위로</a>
<a href="#none">유머/코믹</a>
<a href="#none">좋은글/명언</a>
<a href="#none">운세/별자리</a>
<a href="#none">종교</a>
</div>
<div class="tab_depth4">
<a href="#none" class="on">#봄인사</a>
<a href="#none">#좋은글</a>
<a href="#none">#초대/답례</a>
</div>
</div>
</div>
<ul class="area_tabcontent photo_sample">
<li class="hover_photo">
<div class="hover_cont"><img src="/publish/images/content/photo_sample01.jpg" alt=""></div>
<div class="tit_text_wrap">
<p class="tit_text">추석 입니다 추석 입니다 추석 입니다 추석 입니다</p>
</div>
<div class="photo_cont">
<img src="/publish/images/content/photo_sample01.jpg" alt="">
</div>
</li>
<li>
<div class="hover_cont"><img src="/publish/images/content/photo_sample02.jpg" alt=""></div>
<div class="tit_text_wrap">
<p class="tit_text">추석</p>
</div>
<div class="photo_cont">
<img src="/publish/images/content/photo_sample02.jpg" alt="">
</div>
</li>
<li>
<div class="hover_cont"><img src="/publish/images/content/photo_sample03.jpg" alt=""></div>
<div class="tit_text_wrap">
<p class="tit_text">추석</p>
</div>
<div class="photo_cont">
<img src="/publish/images/content/photo_sample03.jpg" alt="">
</div>
</li>
<li>
<div class="hover_cont"><img src="/publish/images/content/photo_sample04.jpg" alt=""></div>
<div class="tit_text_wrap">
<p class="tit_text">추석</p>
</div>
<div class="photo_cont">
<img src="/publish/images/content/photo_sample04.jpg" alt="">
</div>
</li>
<li>
<div class="hover_cont"><img src="/publish/images/content/photo_sample05.jpg" alt=""></div>
<div class="tit_text_wrap">
<p class="tit_text">추석</p>
</div>
<div class="photo_cont">
<img src="/publish/images/content/photo_sample05.jpg" alt="">
</div>
</li>
<li>
<div class="hover_cont"><img src="/publish/images/content/photo_sample06.jpg" alt=""></div>
<div class="tit_text_wrap">
<p class="tit_text">추석</p>
</div>
<div class="photo_cont">
<img src="/publish/images/content/photo_sample06.jpg" alt="">
</div>
</li>
<li>
<div class="hover_cont"><img src="/publish/images/content/photo_sample07.jpg" alt=""></div>
<div class="tit_text_wrap">
<p class="tit_text">추석</p>
</div>
<div class="photo_cont">
<img src="/publish/images/content/photo_sample07.jpg" alt="">
</div>
</li>
<li>
<div class="hover_cont"><img src="/publish/images/content/photo_sample08.jpg" alt=""></div>
<div class="tit_text_wrap">
<p class="tit_text">추석</p>
</div>
<div class="photo_cont">
<img src="/publish/images/content/photo_sample08.jpg" alt="">
</div>
</li>
<li>
<div class="hover_cont"><img src="/publish/images/content/photo_sample09.jpg" alt=""></div>
<div class="tit_text_wrap">
<p class="tit_text">추석</p>
</div>
<div class="photo_cont">
<img src="/publish/images/content/photo_sample09.jpg" alt="">
</div>
</li>
<li>
<div class="hover_cont"><img src="/publish/images/content/photo_sample10.jpg" alt=""></div>
<div class="tit_text_wrap">
<p class="tit_text">추석</p>
</div>
<div class="photo_cont">
<img src="/publish/images/content/photo_sample10.jpg" alt="">
</div>
</li>
</ul>
<!-- pagination -->
<ul class="pagination">
<li class="page_first"><button><img src="/publish/images/content/page_first.png" alt=""></button></li>
<li class="page_prev"><button><img src="/publish/images/content/page_prev.png" alt=""></button></li>
<li class="on"><button>1</button></li>
<li><button>2</button></li>
<li><button>3</button></li>
<li><button>4</button></li>
<li><button>5</button></li>
<li><button>6</button></li>
<li><button>7</button></li>
<li><button>8</button></li>
<li><button>9</button></li>
<li><button>10</button></li>
<li class="page_next"><button><img src="/publish/images/content/page_next.png" alt=""></button></li>
<li class="page_last"><button><img src="/publish/images/content/page_last.png" alt=""></button></li>
</ul><!-- pagination -->
</div>
<!--// tab content2 -->
<!--tab content3 -->
<div class="bottom_content" id="tab2_3">
<div class="map_search">
<label for="" class="label"></label>
<input type="text" placeholder="도로명 또는 지번을 입력해주세요." onfocus="this.placeholder=''" onblur="this.placeholder='도로명 또는 지번을 입력해주세요.'">
<button type="button" class="btnType map_check">확인</button>
<button type="button" class="btnType map_add">약도링크 추가</button>
<p><span class="vMiddle">*</span> 지도링크는 입력메시지 끝부분에 추가됩니다.</p>
</div>
<img src="/publish/images/content/imsi_map.PNG" alt="지도" style="width: 100%;">
</div>
<!--// tab content3 -->
<!-- tab content4 -->
<div class="bottom_content" id="tab2_4">
<div class="search_wrap clearfix">
<div class="btn_left">
<span>· 기간</span>
<div class="calendar_wrap">
<input type="text" class="startDate inp calendar" title="검색 시작일" id="startDate" name=myMsgStDt value="" data-datecontrol="true">
<span class="dateEtc">~</span>
<input type="text" class="endDate inp calendar" title="검색 종료일" id="endDate" name="myMsgEndDt" value="" data-datecontrol="true">
</div>
<div class="search">
<label for="id" class="label"></label>
<input type="text" id="id" placeholder="내보관함 검색" onfocus="this.placeholder=''" onblur="this.placeholder='내보관함 검색'">
<button type="button" class="btnType btnType2">검색</button>
</div>
</div>
<div class="btn_right">
<button type="button">최근순<i></i></button>
<select name="" id="" class="selType2">
<option value="">전체보기</option>
<option value="">완료</option>
<option value="">수정중</option>
<option value="">수정요청</option>
</select>
<select name="" id="" class="selType2">
<option value="">2줄보기</option>
<option value="">4줄보기</option>
<option value="">6줄보기</option>
</select>
</div>
</div>
<div class="search_wrap_btn">
<button type="button" class="btnType15"><i class="add_img"></i>전체선택</button>
<button type="button" class="btnType15"><i class="remove_img"></i>선택삭제</button>
<p><span class="fwBold c_222">·</span> 총 <span class="c_e40000 fwRg">11</span>건의 보관된 문자가 있습니다. <span class="fwRg c_222"> 메시지를 클릭</span>하시면, <span class="fwRg c_222">발송창에 입력</span>됩니다.<span class="add_text">(내용 수정 및 저장은 발송창에서만 가능)</span></p>
</div>
<ul class="area_tabcontent msg_sample myBox">
<li>
<div class="tit_text_wrap">
<label for="" class="label">내 문자함 체크</label>
<input type="checkbox" id="">
<p class="tit_text">화이트 데이 화이트 데이 화이트 데이</p>
</div>
<div class="msg_cont">
<div class="photo_cont">
<img src="/publish/images/content/photo_sample01.jpg" alt="">
</div>
<div class="msg_text">즐거운 화이트데이입니다. <br><br>
달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
*""* <br>
*◆○* <br>
*♡◎★* <br>
######## <br>
\_____/<br>
</div>
</div>
<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
<div class="myphoto_info">
<p>2021-01-01</p>
</div>
</li>
<li>
<div class="tit_text_wrap">
<label for="" class="label">내 문자함 체크</label>
<input type="checkbox" id="">
<p class="tit_text">화이트 데이</p>
</div>
<div class="msg_cont">
<div class="msg_text">즐거운 화이트데이입니다. <br>
달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br>
맛있게 드시고, 새콤달콤 행복한 하루보내세요~
</div>
</div>
<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
<div class="myphoto_info">
<p>2021-01-01</p>
</div>
</li>
<li>
<div class="tit_text_wrap">
<label for="" class="label">내 문자함 체크</label>
<input type="checkbox" id="">
<p class="tit_text">화이트 데이</p>
</div>
<div class="msg_cont">
<div class="photo_cont">
<img src="/publish/images/content/photo_sample02.jpg" alt="">
</div>
<div class="photo_cont">
<img src="/publish/images/content/photo_sample03.jpg" alt="">
</div>
<div class="msg_text">즐거운 화이트데이입니다. <br><br>
달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
*""* <br>
*◆○* <br>
*♡◎★* <br>
######## <br>
\_____/<br>
</div>
</div>
<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
<div class="myphoto_info">
<p>2021-01-01</p>
</div>
</li>
<li>
<div class="tit_text_wrap">
<label for="" class="label">내 문자함 체크</label>
<input type="checkbox" id="">
<p class="tit_text">화이트 데이</p>
</div>
<div class="msg_cont">
<div class="photo_cont">
<img src="/publish/images/content/photo_sample01.jpg" alt="">
</div>
</div>
<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
<div class="myphoto_info">
<p>2021-01-01</p>
</div>
</li>
<li>
<div class="tit_text_wrap">
<label for="" class="label">내 문자함 체크</label>
<input type="checkbox" id="">
<p class="tit_text">화이트 데이</p>
</div>
<div class="msg_cont">
<div class="msg_text">즐거운 화이트데이입니다. <br><br>
달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
*""* <br>
*◆○* <br>
*♡◎★* <br>
######## <br>
\_____/<br>
</div>
</div>
<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
<div class="myphoto_info">
<p>2021-01-01</p>
</div>
</li>
<li>
<div class="tit_text_wrap">
<label for="" class="label">내 문자함 체크</label>
<input type="checkbox" id="">
<p class="tit_text">화이트 데이</p>
</div>
<div class="msg_cont">
<div class="msg_text">즐거운 화이트데이입니다. <br><br>
달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
*""* <br>
*◆○* <br>
*♡◎★* <br>
######## <br>
\_____/<br>
</div>
</div>
<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
<div class="myphoto_info">
<p>2021-01-01</p>
</div>
</li>
<li>
<div class="tit_text_wrap">
<label for="" class="label">내 문자함 체크</label>
<input type="checkbox" id="">
<p class="tit_text">화이트 데이</p>
</div>
<div class="msg_cont">
<div class="msg_text">즐거운 화이트데이입니다. <br><br>
달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
*""* <br>
*◆○* <br>
*♡◎★* <br>
######## <br>
\_____/<br>
</div>
</div>
<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
<div class="myphoto_info">
<p>2021-01-01</p>
</div>
</li>
<li>
<div class="tit_text_wrap">
<label for="" class="label">내 문자함 체크</label>
<input type="checkbox" id="">
<p class="tit_text">화이트 데이</p>
</div>
<div class="msg_cont">
<div class="msg_text">즐거운 화이트데이입니다. <br><br>
달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
*""* <br>
*◆○* <br>
*♡◎★* <br>
######## <br>
\_____/<br>
</div>
</div>
<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
<div class="myphoto_info">
<p>2021-01-01</p>
</div>
</li>
<li>
<div class="tit_text_wrap">
<label for="" class="label">내 문자함 체크</label>
<input type="checkbox" id="">
<p class="tit_text">화이트 데이</p>
</div>
<div class="msg_cont">
<div class="msg_text">즐거운 화이트데이입니다. <br><br>
달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>
*""* <br>
*◆○* <br>
*♡◎★* <br>
######## <br>
\_____/<br>
</div>
</div>
<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
<div class="myphoto_info">
<p>2021-01-01</p>
</div>
</li>
<li>
<div class="tit_text_wrap">
<label for="" class="label">내 문자함 체크</label>
<input type="checkbox" id="">
<p class="tit_text">화이트 데이</p>
</div>
<div class="msg_cont">
<div class="msg_text">즐거운 화이트데이입니다. <br><br>
달달한 하루보내시라고, 화이트 데이 사탕보냅니다.<br><br>
맛있게 드시고, 새콤달콤 행복한 하루보내세요~<br><br>hayeon1014!
*""* <br>
*◆○* <br>
*♡◎★* <br>
######## <br>
\_____/<br>
</div>
</div>
<p class="info_text">0 / <span class="limit_text">90</span>byte</p>
<div class="myphoto_info">
<p>2021-01-01</p>
</div>
</li>
</ul>
<!-- pagination -->
<ul class="pagination">
<li class="page_first"><button><img src="/publish/images/content/page_first.png" alt=""></button></li>
<li class="page_prev"><button><img src="/publish/images/content/page_prev.png" alt=""></button></li>
<li class="on"><button>1</button></li>
<li><button>2</button></li>
<li><button>3</button></li>
<li><button>4</button></li>
<li><button>5</button></li>
<li><button>6</button></li>
<li><button>7</button></li>
<li><button>8</button></li>
<li><button>9</button></li>
<li><button>10</button></li>
<li class="page_next"><button><img src="/publish/images/content/page_next.png" alt=""></button></li>
<li class="page_last"><button><img src="/publish/images/content/page_last.png" alt=""></button></li>
</ul><!-- pagination -->
</div>
<!--// tab content4 -->
</div>
</div>
<!--// send top -->
</div>
</div>
<!--// content 영역 -->
<!-- footer 영역 -->
<div data-include-path="/publish/layout/_footer.html"></div>
<!--// footer 영역 -->
<div class='long-click'>0.3s Long-Click</div>
<p>버튼을 꾹~ 눌러보세요!</p>
</body>
</html>