@charset "UTF-8"; /* CSS Document */ /*basic list*/ .board_list { width:100%; table-layout:fixed; border-top:2px solid #333; } .board_list tr { transition:all 0.3s; } .board_list tr:hover td { background:#f9f9f9; } .board_list th { padding:20px 0; border-bottom:1px solid #333; } .board_list td { padding:25px 0; border-bottom:1px solid #ededed; } .board_list th, .board_list td { transition:all 0.3s; vertical-align:middle; text-align:center; } .board_list td a { width:100%; display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; font-weight:600;} .board_list td.board_tit { text-align:left; } .board_list .board_num strong { font-weight:600; color:#1524cc; } /*basic view*/ .board_header { border-top:2px solid #333;border-bottom:1px solid #ededed; padding:30px 0; } .board_header .info { display:flex; justify-content: space-between; } .board_header strong { font-size:1.5em; line-height:1.6em; margin-bottom:20px; display: block; font-weight:900; } .board_header .by { display: flex; justify-content:flex-start; align-items:center; } .board_header .by p { color:#666; display:inline-block; } .board_header .by p::after { content:''; width:2px; height:2px; background:#666; display:inline-block; border-radius:5px; margin:0 10px 4px; } .board_header .by p a { display:inline-block; position:relative; } .board_header .by p:last-child::after { display:none; } .board_content { padding:50px 0; border-bottom:1px solid #ededed; } /*basic write*/ .board_write { width:100%; border-top:2px solid #333; } .board_write ul li > .title { display:block; margin-bottom:15px; font-weight:900; font-size:1.3em; } .board_write ul > li { width:100%; border-bottom:1px solid #ededed; padding:25px 0; position:relative;} .board_write ul > li .exp { margin:-5px 0 15px 0; display: block; color:#727272; } .board_write ul > li::after { content:''; display:block; clear:both; } .board_write ul > li .input_wrap { margin-bottom:5px; } .board_write ul > li .input_wrap:last-child { margin-bottom:0; } .board_write ul > li .input_option { margin-top:15px; } .caption { display:block; margin-bottom:20px; } .caption .must { font-weight:600; color:#555; } .caption .must em { font-size:1.3em; color:#c51b00; display:inline-block; line-height:.8em; vertical-align:bottom; } .mustText { color:#c51b00; font-weight:600; display: inline-block; margin-left:5px; font-size:1.3em; line-height:.8em;vertical-align:bottom; } /*페이지수*/ .sorting_wrap { margin-bottom:30px; color:#666; } .sorting_wrap::after { content:''; clear:both; display:block; } .sorting_wrap .total { float:left; margin-top:15px; font-weight:500; } .sorting_wrap .total .count { color:#1524cc; font-weight:900; } /*검색*/ .search_box { float:right; width:300px; height:40px; position:relative; border:1px solid #d9d9d9; border-radius:50px; box-shadow:0 0 10px 0 rgba(0,0,0,0.1); transition:all 0.3s; } .search_box:hover { border:1px solid #333; box-shadow:0 0 15px 0 rgba(0,0,0,0.3); } .search_box .inputText { width:calc(100% - 40px); font-weight:600; height:100%; float:left; border:none; padding-left:15px; border-radius:40px 0 0 40px !important; } .search_box .btn_search { width:40px; height:100%; font-size:1.2em; border:none; border-radius:0 40px 40px 0 !important; color:#ccc; transition:all 0.3s; } .search_box button:hover, .search_box .inputText:hover { box-shadow:none; } .search_box .btn_search:hover { color:#000; } /*pagenation*/ .pagination { margin:0 auto; text-align:center; position:relative; } .pagination ul {display:flex; justify-content:center; padding-left:0; border-radius:4px; } .pagination li { box-sizing:border-box; position:relative; cursor:pointer; display:inline-block; margin:0 5px; } .pagination li a { display:inline-block; cursor:pointer; border-radius:50px; width:30px; height:30px; line-height:30px; color:#333; font-size:1em; transition:background-color 0.3s;} .pagination li a:hover { background-color:#ededed; } .pagination li.active a { font-weight:bold; color:#fff; background:#333; } .pagination .first, .pagination .last, .pagination .next, .pagination .prev { margin:0 2px; } .bottom_wrap .pagination { position:absolute; left:50%; transform:translateX(-50%); display:inline-block; } /* input text show */ .text_show { position:relative; transition:all 0.3s; } .text_show label { position:absolute; top:16px; left:8px; transition:all 0.3s; line-height:1em; pointer-events:none; font-weight:400; color:#666; font-size:.9em; padding:0 5px; } .text_show .inputText + label { top:50%; transform:translateY(-50%); } .text_show .textArea + label { top:20px; transform:translateY(-50%); } .text_show.focus label { background:#fff; color:#666; top:-5px; font-size:0.7em; } .text_show.focus .inputText + label, .text_show.focus .textArea + label { transform:translateY(0); } .text_show .inputText[disabled] + label, .text_show .textArea[disabled] + label, .text_show .inputText[readonly] + label, .text_show .textArea[readonly] + label { visibility:hidden; } .text_show.active label { opacity:0; } @media all and (max-width: 1000px) { }