| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <!DOCTYPE html>
- <HTML lang="ko">
- <head>
- <meta charset="UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title>UPRO</title>
- <meta name="format-detection" content="telephone=no">
- <link rel="stylesheet" type="text/css" href="/css/common.css">
- <link rel="stylesheet" type="text/css" href="/css/sub.css">
- <script type="text/javascript" charset="utf-8" src="/js/jquery-1.11.2.min.js"></script>
- <script type="text/javascript" charset="utf-8" src="/js/jquery.jqtransform.js"></script>
- <script type="text/javascript" charset="utf-8" src="/js/ui.js"></script>
- </head>
- <body>
- <!-- s : header -->
- <? include("../include/inc_header.html"); ?>
- <!-- // e : header -->
- <section id="wrap">
- <section id="visual" class="visual_customer">
- <h2>고객센터</h2>
- <p>쉽고 간편한 내차팔기, 견적산출, 최종 매각까지 어떤 수수료도 요구하지 않습니다.</p>
- </section>
- <section id="content">
- <ul class="location">
- <li><a href="/" class="home">홈</a></li>
- <li><span class="depth1">고객센터</span></li>
- <li><span class="depth2">1:1 문의</span></li>
- </ul>
- <h3 class="customer_tit">1:1 문의</h3>
- <table class="tbl_h">
- <colgroup>
- <col width="18%">
- <col width="*">
- </colgroup>
- <tr>
- <th>문의유형</th>
- <td>
- <span class="check_wrap"><input type="radio" name="radiobutton" id="ask1"><i></i><label for="ask1">일반문의</label></span>
- <span class="check_wrap"><input type="radio" name="radiobutton" id="ask2"><i></i><label for="ask2">회원문의</label></span>
- <span class="check_wrap"><input type="radio" name="radiobutton" id="ask3"><i></i><label for="ask3">딜러가입문의</label></span>
- </td>
- </tr>
- <tr>
- <th>제목</th>
- <td><input type="text" class="inp_txt" style="width:100%;"></td>
- </tr>
- <tr>
- <th>이름</th>
- <td><input type="text" class="inp_txt" style="width:40%;"></td>
- </tr>
- <tr>
- <th>연락처</th>
- <td><input type="text" class="inp_txt" style="width:40%;"> <span class="td_txt">숫자만 입력</span></td>
- </tr>
- <tr>
- <th>이메일</th>
- <td><input type="text" class="inp_txt" style="width:40%;"> @
- <span class="select" style="width:210px;">
- <select>
- <option value="">직접입력</option>
- </select>
- </span>
- </td>
- </tr>
- <tr>
- <th>내용</th>
- <td><textarea cols="80" rows="10" style="margin:10px 0;height:300px;"></textarea></td>
- </tr>
- <tr>
- <th>첨부파일</th>
- <td>
- <div class="filebox">
- <label for="file_photo">찾아보기</label>
- <input class="upload-name" value="">
- <input type="file" id="file_photo" class="upload-hidden">
- </div>
- </td>
- </tr>
- </table>
- <div class="btn_center">
- <a href="#" class="button">문의하기</a>
- </div>
- </section>
- </section>
- <!-- s : footer -->
- <? include("../include/inc_footer.html"); ?>
- <!-- // e : footer -->
- </body>
- </html>
|