From 53a7891aee465aefb96b20ccfc36c649320bca62 Mon Sep 17 00:00:00 2001 From: itms-merge-dev Date: Fri, 17 Jul 2026 17:48:30 +0900 Subject: [PATCH] =?UTF-8?q?fix(itms):=20=EA=B2=B0=ED=95=A8=20=EC=A0=95?= =?UTF-8?q?=EB=A6=AC=20=E2=80=94=20datatrans=20=EA=B0=9C=EB=B0=9C=EC=9A=A9?= =?UTF-8?q?=20=ED=95=98=EB=93=9C=EC=BD=94=EB=94=A9=20=EC=A0=9C=EA=B1=B0=20?= =?UTF-8?q?+=20=EB=B0=B1=EC=97=85=ED=8C=8C=EC=9D=BC=20=EC=82=AD=EC=A0=9C?= =?UTF-8?q?=20(R3=C2=B7R4)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - R3: datatrans ncmsDataMapper.xml selectMultimediaAssets 의 개발용 하드코딩 `and id='132041'` + `limit 1` 제거 → 운영 시 전 대상 자산 전송(누락 원인 해소). XML well-formed 검증 통과. 실 로직 SQL(iams_tran_yn/deleted_at 필터)만 유지. - R4: 날짜 접미사 백업 파일 14종 삭제(MailKaTalkSendKiccJob.java.20250703, KicGroupwareMapper.xml.20250701, layout.css.2025*, MainView.jsp.2025*, 이미지 백업 등). 실 파일(.java/.jsp/.css/.png 원본) 전부 잔존 확인. 커밋된 bin/ 은 이미 조립 단계 정리됨(0건). - .gitignore: 날짜 접미사 백업(*.20xxxxxx) 패턴 추가로 재유입 차단. 동작 등가: 소스/리소스 실 파일 불변, 제거 대상은 미사용 백업뿐. R3은 운영 정합성 회복(의도된 개선). Co-Authored-By: Claude Fable 5 --- .gitignore | 2 + .../MailKaTalkSendKiccJob.java.20250703 | 259 ------- .../insa/KicGroupwareMapper.xml.20250701 | 97 --- .../mapper/ncmsdb/sqlmap/ncmsDataMapper.xml | 2 - .../resources/static/css/layout.css.20250424 | 587 --------------- .../resources/static/css/layout.css.20250425 | 658 ----------------- .../resources/static/css/layout.css.20250611 | 667 ------------------ .../images/main/footer_logo.png.20250108 | Bin 2409 -> 0 bytes .../static/images/main/logo.png.20250108 | Bin 3472 -> 0 bytes .../static/images/main/logo_big.png.20250108 | Bin 4805 -> 0 bytes .../static/images/main/logo_w.png.20250108 | Bin 3390 -> 0 bytes .../static/images/main/main_img.png.20251114 | Bin 41819 -> 0 bytes .../images/main/main_img_left.png.20251114 | Bin 6855 -> 0 bytes .../PrsnlPortletCreateManage2.jsp.20251111 | 421 ----------- .../WEB-INF/jsp/main/MainView.jsp.20250310 | 239 ------- .../WEB-INF/jsp/main/MainView.jsp.20251112 | 371 ---------- 16 files changed, 2 insertions(+), 3301 deletions(-) delete mode 100644 batch/src/main/java/com/urpsys/itmsbatch/cmm/excute/MailKaTalkSendKiccJob.java.20250703 delete mode 100644 batch/src/main/resources/mapper/kicinsadb/sqlmap/insa/KicGroupwareMapper.xml.20250701 delete mode 100644 front/src/main/resources/static/css/layout.css.20250424 delete mode 100644 front/src/main/resources/static/css/layout.css.20250425 delete mode 100644 front/src/main/resources/static/css/layout.css.20250611 delete mode 100644 front/src/main/resources/static/images/main/footer_logo.png.20250108 delete mode 100644 front/src/main/resources/static/images/main/logo.png.20250108 delete mode 100644 front/src/main/resources/static/images/main/logo_big.png.20250108 delete mode 100644 front/src/main/resources/static/images/main/logo_w.png.20250108 delete mode 100644 front/src/main/resources/static/images/main/main_img.png.20251114 delete mode 100644 front/src/main/resources/static/images/main/main_img_left.png.20251114 delete mode 100644 front/src/main/webapp/WEB-INF/jsp/itms/sys/PrsnlPortletCreateManage2.jsp.20251111 delete mode 100644 front/src/main/webapp/WEB-INF/jsp/main/MainView.jsp.20250310 delete mode 100644 front/src/main/webapp/WEB-INF/jsp/main/MainView.jsp.20251112 diff --git a/.gitignore b/.gitignore index 8194f2bd..f62955f4 100644 --- a/.gitignore +++ b/.gitignore @@ -19,6 +19,8 @@ *~ .project.bak settings.gradle.bak +# 날짜 접미사 백업 파일(예: *.java.20250703, *.jsp.20251112) 커밋 방지 +*.20[0-9][0-9][0-9][0-9][0-9][0-9] # Maven (legacy/nlib) legacy/nlib/target/ diff --git a/batch/src/main/java/com/urpsys/itmsbatch/cmm/excute/MailKaTalkSendKiccJob.java.20250703 b/batch/src/main/java/com/urpsys/itmsbatch/cmm/excute/MailKaTalkSendKiccJob.java.20250703 deleted file mode 100644 index df86c71d..00000000 --- a/batch/src/main/java/com/urpsys/itmsbatch/cmm/excute/MailKaTalkSendKiccJob.java.20250703 +++ /dev/null @@ -1,259 +0,0 @@ -package com.urpsys.itmsbatch.cmm.excute; - -import java.time.LocalDateTime; -import java.time.format.DateTimeFormatter; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.LinkedHashMap; -import java.util.List; -import java.util.Map; - -import org.quartz.DisallowConcurrentExecution; -import org.quartz.Job; -import org.quartz.JobDataMap; -import org.quartz.JobExecutionContext; -import org.quartz.JobExecutionException; -import org.quartz.PersistJobDataAfterExecution; - -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Value; -import org.springframework.mail.javamail.JavaMailSender; -import org.springframework.stereotype.Component; - -import com.urpsys.basebatch.common.util.CommonUtil; -import com.urpsys.basebatch.common.util.ConvertUtils; -import com.urpsys.basebatch.common.util.HtmlEmailUtil; -import com.urpsys.basebatch.common.util.RestApiCallUtil; -import com.urpsys.itmsbatch.cmm.dao.MailKaTalkDao; -import com.urpsys.itmsbatch.cmm.service.MailKaTalkService; - -import kong.unirest.json.JSONObject; -import lombok.extern.slf4j.Slf4j; - -/** - * KIC(한국투자공사) 메일/카톡 처리 실행 클래스 - * - * @author urp 인프라본부 나혁제 - * @since 2025.06.11 - * @version 1.0.0 - * @see - * - *
- *
- * << 개정이력(Modification information) >>
- *
- *   수정일        수정자         수정내용
- * -----------  ---------    ------------------------
- * 2025.06.11    나혁제         최초작성
- *
- * 
- */ - -@Slf4j -@Component -@PersistJobDataAfterExecution -@DisallowConcurrentExecution -public class MailKaTalkSendKiccJob2 implements Job -{ - @Autowired - MailKaTalkService mailKaTalkService; - - @Autowired - HtmlEmailUtil htmlEmailUtil; - - @Autowired - RestApiCallUtil restApiCallUtil; - - @Value("${custom.api_kic_msg_key}") - private String strApiKicMsgKey; // KIC 메신저서버 api key - - @Override - public void execute(JobExecutionContext context) throws JobExecutionException - { - log.info(" >>>>>>>>>> MailKaTalkSendKiccJob Executed <<<<<<<<<< "); - - JobDataMap dataMap = context.getJobDetail().getJobDataMap(); - - log.info("dataMap date : {}", dataMap.get("date")); - log.info("dataMap executeCount : {}", dataMap.get("executeCount")); - - // 전송메일 대상 조회 - List> listNctn = mailKaTalkService.selectNctnProcSndInfo(); - - for(LinkedHashMap tempMap : listNctn) - { - String strProcRsltCn = ""; - String strProcRsltCd = ""; - - // 메일 처리 - if(tempMap.get("procTy").equals("1")) - { - Map bodyMap = new HashMap(); - - String strMailAddress = CommonUtil.nvl(tempMap.get("rcvrAddr")); - - // 2025.07.01 나혁제 자기 메일로 처리 - // bodyMap.put("email" , "hong@kic.go.kr"); - bodyMap.put("email" , CommonUtil.nvl(tempMap.get("rcvrAddr")) ); - bodyMap.put("to" , CommonUtil.nvl(tempMap.get("rcvrAddr")) ); - bodyMap.put("subject" , CommonUtil.nvl(tempMap.get("ttl")) ); - bodyMap.put("content" , CommonUtil.nvl(tempMap.get("bdy")) ); - // bodyMap.put("content" , "itms 메일테스트 입니다. 메일 삭제해주세요." ); - bodyMap.put("contentType" , "text/html" ); - - try - { - // 메일주소가 없는경우 오류 처리 - if(strMailAddress.equals("")) - { - strProcRsltCn = "메일주소 존재하지 않음"; - strProcRsltCd = "-1"; - } - else - { - // Map retMap = restApiCallUtil.RestApiCallNoAuthKicMailTextHtml(bodyMap, "/test/kicMailTest.do"); - Map retMap = restApiCallUtil.RestApiCallNoAuthKicMailTextHtml(bodyMap, "/api/mail/send/json"); - - strProcRsltCn = retMap.toString(); - strProcRsltCd = "0"; - } - } - catch(Exception e) - { - e.printStackTrace(); - - strProcRsltCn = e.toString(); - strProcRsltCd = "-2"; - } - } - // 메신저 처리 - else if(tempMap.get("procTy").equals("3")) - { - String strTtl = CommonUtil.nvl(tempMap.get("ttl")); - String strRcvrAddr = CommonUtil.nvl(tempMap.get("rcvrAddr")); - String strBdy = CommonUtil.nvl(tempMap.get("bdy")); - String[] srBdy = strBdy.split(","); - - try - { - /* - Map messageMap = new HashMap(); - - messageMap.put("\""+"title" +"\"" , "\""+strTtl+"\"" ); - messageMap.put("\""+"context" +"\"" , "\""+srBdy[0]+"\"" ); - - Map messageFuncMap = new HashMap(); - - messageFuncMap.put("\""+"name" +"\"", "\""+"상세페이지로이동"+"\"" ); - messageFuncMap.put("\""+"type" +"\"", "\""+"link" +"\"" ); - messageFuncMap.put("\""+"data" +"\"", "\""+srBdy[1] +"\"" ); - - messageMap.put("\""+"func"+"\"", messageFuncMap); - */ - - // JSONParser parser = new JSONParser(); - - /* - Map messageMap = new HashMap(); - - messageMap.put("title" , strTtl ); - messageMap.put("context" , srBdy[0] ); - - Map messageFuncMap = new HashMap(); - - messageFuncMap.put("name" , "상세페이지로이동" ); - messageFuncMap.put("type" , "link" ); - messageFuncMap.put("data" , srBdy[1] ); - - messageMap.put("func", messageFuncMap); - - StringBuilder strBulider = new StringBuilder(1000); - - strBulider.append("\""); - strBulider.append(messageMap.toString().replaceAll("\"", "\\\"")); - strBulider.append("\""); - */ - - // 변환처리 - // JSONObject jsonObj = ConvertUtils.getJsonFromMap(messageMap); - - - Map bodyMap = new HashMap(); - - List> targetsList = new ArrayList<>(); - - Map targetMap = new HashMap(); - targetMap.put("targetCode", strRcvrAddr); - targetMap.put("targetType", "UR"); - targetsList.add(targetMap); - - JSONObject jsonObj = new JSONObject(); - - // String str = "\"; - - jsonObj.put("name", "상세페이지로이동"); - jsonObj.put("type", "link"); - jsonObj.put("data", srBdy[1]); - - JSONObject jObj = new JSONObject(); - - jObj.put("title" , strTtl); - jObj.put("context", srBdy[0]); - - jObj.put("func", jsonObj); - - StringBuilder strBulider = new StringBuilder(100); - - // strBulider.append("\""); - strBulider.append(jObj.toString().replaceAll("\"", "\\\"")); - // strBulider.append("\""); - - // bodyMap 구성 - bodyMap.put("SubjectCode", strApiKicMsgKey); - bodyMap.put("targets" , targetsList ); - - // bodyMap.put("message" , jsonObj.toString() ); - - bodyMap.put("message" , strBulider.toString() ); - // bodyMap.put("message" , messageMap.toString() ); - // bodyMap.put("message" , messageMap ); - // bodyMap.put("message" , "테스트" ); - - // Map retMap = restApiCallUtil.RestApiCallNoAuthKicMsg( bodyMap, "/test/kicMsgTest.do"); - Map retMap = restApiCallUtil.RestApiCallNoAuthKicMsg( bodyMap, "/server/na/notice"); - - strProcRsltCn = retMap.toString(); - strProcRsltCd = "0"; - } - catch(Exception e) - { - strProcRsltCn = e.toString(); - strProcRsltCd = "-2"; - } - } - // 오류처리 - else - { - strProcRsltCn = "알수 없는 구분값"; - strProcRsltCd = (strProcRsltCn.equals("")) ? "0" : "-1"; - } - - LinkedHashMap inputMap = new LinkedHashMap(); - - inputMap.put("procRsltCn" , strProcRsltCn); - inputMap.put("procRsltCd" , strProcRsltCd); - inputMap.put("nctnEsntlId" , tempMap.get("nctnEsntlId")); - - mailKaTalkService.updateNtcnProcSndInfo(inputMap); - } - - //JobDataMap를 통해 Job의 실행 횟수를 받아서 횟수 + 1을한다. - int cnt = (int) dataMap.get("executeCount"); - dataMap.put("executeCount", ++cnt); - dataMap.put("date", LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"))); - - log.info(" <<<<<<<<<< MailKaTalkSendKiccJob Executed >>>>>>>>>> "); - } - - -} \ No newline at end of file diff --git a/batch/src/main/resources/mapper/kicinsadb/sqlmap/insa/KicGroupwareMapper.xml.20250701 b/batch/src/main/resources/mapper/kicinsadb/sqlmap/insa/KicGroupwareMapper.xml.20250701 deleted file mode 100644 index 71736f70..00000000 --- a/batch/src/main/resources/mapper/kicinsadb/sqlmap/insa/KicGroupwareMapper.xml.20250701 +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/datatrans/src/main/resources/mapper/ncmsdb/sqlmap/ncmsDataMapper.xml b/datatrans/src/main/resources/mapper/ncmsdb/sqlmap/ncmsDataMapper.xml index 024e71f6..6274ab46 100644 --- a/datatrans/src/main/resources/mapper/ncmsdb/sqlmap/ncmsDataMapper.xml +++ b/datatrans/src/main/resources/mapper/ncmsdb/sqlmap/ncmsDataMapper.xml @@ -101,8 +101,6 @@ from multimedia_assets a where (iams_tran_yn is null or iams_tran_yn = '') and deleted_at is null - and id ='132041' - limit 1; ]]> diff --git a/front/src/main/resources/static/css/layout.css.20250424 b/front/src/main/resources/static/css/layout.css.20250424 deleted file mode 100644 index 09d2d05b..00000000 --- a/front/src/main/resources/static/css/layout.css.20250424 +++ /dev/null @@ -1,587 +0,0 @@ -@charset "utf-8"; - -#wrap {width:100%;margin:0 auto;} -.row::after {content:""; display:block; clear:both;} -.cell {float:left; box-sizing:border-box;} - -/* Layout */ -#container {position:relative; width:100%; margin:0 auto; padding-bottom: 50px; background: #f7f8fa;} -#container:after {display:block;clear:both;content:''} -#content {position: relative; width:100%; margin:0 auto;} -.content {position: relative; width:1400px; margin:0 auto;} -#container .side_Wrap {position:relative; float:left; width:220px; padding-top:20px;} -#container .body_wrap {float: right; width: calc(100% - 250px);} -#container .body_wrap .inner {width:100%; margin:0 auto; padding: 20px 25px 30px; border: 1px solid #e0e0e0; background-color: #fff;} - -/* header */ -.header_wrap {position: relative; width:100%; height: 120px; background:#fff;} -.header_wrap .header-inner {position:relative; width:1400px; min-width: 1400px; height:100%; margin:0 auto;} -.header_wrap .header-top {width: 100%; height: 60px; margin: 0 auto; display: inline-block;} -.header_wrap .header-top > .inner {position: relative; width: 1400px; height: 60px; margin: 0 auto;} - -/* util */ -.header_wrap .header-top .util {float:right; height:60px; margin-top:16px; right:0; display: inline-block;} -.header_wrap .header-top .util li {position: relative; display: inline-block; vertical-align: middle; height:28px; line-height:28px; color:#666; font-size:13px;margin-left: 20px;} -.header_wrap .header-top .util li > img {vertical-align: top;} -.header_wrap .header-top .util li > a {font-size:13px; color:#333;} -.header_wrap .header-top .util li .name {display: inline-block; padding-left:18px; margin-right: 4px;color:#2e389d;font-weight:500;} -.header_wrap .header-top .util li .name:before {position:absolute; content:''; display:block; background: url('../images/main/ico_user.png') 0 0 no-repeat;left:0;top:7px;width:14px;height:14px;} -.header_wrap .header-top .util li .logout {display: inline-block; padding-left:18px; margin-right: 14px;} -.header_wrap .header-top .util li .logout:hover {color:#2e3aaf;} -.header_wrap .header-top .util li .logout:before {position:absolute; content:''; display:block; background: url('../images/main/ico_logout.png') 0 0 no-repeat;left:0;top:7px;width:14px;height:14px;} -.header_wrap .logo {position:relative; display:inline-block; height:35px;width:211px;top:13px;left:0px;cursor:pointer; text-indent: -9999px; background:url(../images/main/logo.png) 0 center no-repeat;} - -/*오픈*/ -.util li a.mysetOpen {width:115px; padding:6px 15px 0 18px; background:url(../images/main/ico_util_sel.png) no-repeat 100% 14px; margin-right: 14px;} -.util li a.mysetOpen.active {background:url(../images/main/ico_util_sel.png) no-repeat 100% 14px;} -.util li a.mysetOpen:before {content:""; display:block; background:url(../images/main/ico_user.png) no-repeat 0 3px; width:100%; height:100%; position:absolute;left:0;top:5px;} -.util li div.my_sett {width:105px; background:#fff; display:none; position:absolute; padding: 5px 0; border-radius: 5px; z-index: 10; box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.2); border:1px solid #ddd;} -.util li div.my_sett a {display:block; color:#333; font-size:13px; padding:0px 0 3px; text-align:center; border-radius: 5px;} -.util li div.my_sett a:hover, -.util li div.my_sett a:focus, -.util li div.my_sett a.active {color:#253fc3;} - -/* gnb */ -.header_wrap .wrap-nav {position: relative; display: inline-block; width:100%; height:55px; margin: 0 auto; background:#2e389d; border-top:1px solid #e6e8eb;border-bottom:1px solid #e6e8eb;} -.header_wrap .wrap-nav:after {display:block;clear:both;content:''} -.header_wrap .wrap-nav .gnb {position:relative; width:100%; height:55px; margin:0 auto; padding-right:80px; display: inline-block;} -.header_wrap .wrap-nav .gnb > li {position:relative; float: left; height:55px;} -.header_wrap .wrap-nav .gnb > li + li {margin-left:30px;} -.header_wrap .wrap-nav .gnb > li > a {font-size:17px;font-weight:500;color:#fff;height:55px;line-height:53px; display: block; position:relative;} -.header_wrap .wrap-nav .gnb > li > a:after {content:""; display:block; clear:both; width: 1px; height: 14px; background-color: #8590cb; position: absolute; top: 20px; left:-14px; margin-top:0;} -.header_wrap .wrap-nav .gnb > li:first-child > a:after {display: none;} -.header_wrap .wrap-nav .gnb > li > a:hover {color:#39d6fd;text-decoration:none;} - -/* 전체메뉴 */ -.header_wrap .all_btn {position:absolute; top:0; right:0;} -.header_wrap .all_btn:after {clear:both; display:block; content:"";} -.header_wrap .all_btn button:first-child {margin-left:0;} -.header_wrap .all_btn .toggle-menu {width:50px; height:55px; background:url("../images/main/btn_hamb.png") no-repeat center center; background-size:25px 20px; position:relative; top:0; font-size:0;} -.allMenu {display:none; width:100%; height:100%; min-height:850px; position:fixed; top:61px; right:0; z-index:6; background-color:#fff; padding:0; text-align: left; z-index:2; margin:0 auto; overflow: hidden;} -.allMenu:before {content:''; position:fixed; width:100%; height:100%; left:0; top:90%; bottom:0; background:rgba(0, 0, 0, 0.5); z-index:0;} -.allMenu .user-wrap {width:100%; height:55px; padding-left:30px; position:relative; background:#2e389d; z-index:99; margin: 0 auto; text-align: center;} -.allMenu .user-wrap .menu-inner {position:relative; width:1400px; max-width: 1400px; height:100%; margin:0 auto;} -.allMenu .user-wrap .menu-logo {position: relative; display:inline-block; margin-left: -130px; padding:0; width:140px; height:100%; background:url('../images/main/logo_w.png') no-repeat 0;} -.allMenu .user-wrap .logo-txt {position: absolute; top:10px; font-size:23px; color:#fff; font-weight: 500;} -.allMenu .m-gnb {display:block; width:100%; height:850px; max-width:1400px; margin:0 auto; padding:35px 0 35px 0; z-index:99;overflow-y: auto;} -.allMenu .m-gnb ul {overflow:hidden; } -.allMenu .m-gnb ul li a {position:relative; font-size:15px; color:#111; font-weight: 500; } -.allMenu .m-gnb ul li a:focus {text-decoration:none;} -.allMenu .m-gnb ul li a:only-child:after {display:none;} -.allMenu .m-gnb > ul > li {float:left; width:18%; min-height:0px; margin: 0 15px 30px 0;} -.allMenu .m-gnb > ul > li > a {display:block; padding:12px 0; font-size:20px; color:#2e389d; font-weight: 500; text-align: center;border:1px dashed #2e389d;border-radius: 7px;} -.allMenu .m-gnb > ul > li > a:hover {color:#2e389d; text-decoration:none;} -.allMenu .m-gnb > ul > li > a .link {display:inline-block; width:12px; height:12px; margin-left:3px; background-size:100%;} -.allMenu .m-gnb > ul > li.curr > a, -.allMenu .m-gnb > ul > li > a:hover {text-decoration:none;} -.allMenu .m-gnb ul.depth-2 {overflow:hidden; padding-bottom:0px; margin-top:10px;} -.allMenu .m-gnb ul.depth-2 > li > a {display:block; font-size:15px; font-weight:400; line-height:30px; color:#444; padding-left:12px;} -.allMenu .m-gnb ul.depth-2 > li > a:before {content:''; position:absolute; top:15px; left:0; width:6px; height:1px; background-color:#777;} -.allMenu .m-gnb ul.depth-2 > li > a:hover {color:#2d39b5; text-decoration:none;} -.allMenu .gnb-close {position:absolute; margin:0; top:0; right:9.2%;z-index:99;} -.allMenu .gnb-close button {width:50px; height:55px; display:block; background:url("../images/main/btn_close.png") no-repeat center; background-size:21px 21px; text-indent:-9999px;} - -/* lnb menu */ -.side_Wrap h2 {overflow: hidden; display: flex; align-items: center; justify-content: center; width: 100%; height: 98px; font-size: 23px; font-weight: normal; line-height: 1; color: #fff; background: #333faf; border-radius: 30px 0 0 0; box-sizing: border-box;} -#lnb {float: left; width: 100%;} -#lm {width: 100%;} -#cssmenu, -#cssmenu ul, -#cssmenu ul li, -#cssmenu ul li a {margin: 0;padding: 0;border: 0;list-style: none;line-height: 1;display: block;letter-spacing:-0.8px;color:#333333;position: relative;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;text-decoration: none;cursor: pointer;} -#cssmenu {width: 100%;} -#cssmenu ul ul {display: none;} -.align-right {float: right;} -.holder {background:none} -.holder::after, .holder::before {display: block;position: absolute;content: "";right: 15px;z-index: 10;background:none} -.holder::after {top: 15px;background:none} -.holder::before {top: 15px;} -#cssmenu > ul > li > a {display: block; position: relative; padding: 15px 15px; font-size: 15px; font-weight: 400; color: #333333; border: 1px solid #ddd; border-top: 0; background:#fff;} -#cssmenu > ul > li > a:before {content:""; display:block; position:absolute; top:50%; right:20px; margin-top:-7px; width:13px; height:13px; background-image:url(../images/common/ico_lnb_1dh.png); background-repeat:no-repeat; transition: all 0s ease 0s } -#cssmenu > ul > li > a:hover:before {background-image:url(../images/common/ico_lnb_1dh_hover.png);} -#cssmenu > ul > li > a:last-child {border-bottom: none;} -#cssmenu > ul > li > a:hover {color: #2e389d;} -#cssmenu > ul > li.active > a, -#cssmenu > ul > li.open > a {display: block; position: relative; color: #fff; border: 0; background: #252e89;} -#cssmenu > ul > li.open > a:before {content:""; display:block; position:absolute; top:50%; right:20px; margin-top:-7px; width:13px; height:13px; background:#252e89 url(../images/common/ico_lnb_1dh_on.png); background-repeat:no-repeat; transition: all 0s ease 0s } -#cssmenu ul ul {background:#f7f9fc;border: 1px solid #ddd;border-top: 0; padding: 7px 0 10px;} -#cssmenu ul ul li a {position: relative; display: block; padding: 8px 0 8px 25px; font-size:14px; font-weight:500; color:#424242 !important; letter-spacing:-0.6px; font-weight: normal;} -#cssmenu ul ul li a:before {display:block; position:absolute; top:14px; left:15px; width:4px; height:4px; background-color:#a9a9ab; content:'';} -#cssmenu ul ul li a.on {color: #2e389d !important; font-weight: normal;} -#cssmenu ul ul li a.on:before {display:block; position:absolute; top:14px; left:15px; width:4px; height:4px; background-color:#2e389d; content:'';} -#cssmenu > ul > li.open > ul {display:block;} -#cssmenu ul ul li:hover a, -#cssmenu ul ul li.open a, -#cssmenu ul ul li.active a {position: relative; display: block; color: #2e389d !important;} -#cssmenu ul ul li:hover a:before,#cssmenu ul ul li.open a:before,#cssmenu ul ul li.active a:before {content:''; display:block; position:absolute; top:14px; left:15px; width:4px; height:4px; background-color:#2e389d;} -#cssmenu ul ul li.active a:after, #cssmenu ul ul li.open a:after, #cssmenu ul ul li a:hover:after {border-color: none;} - -/* title */ -.main_titWrap {/*position:relative; width:100%;*/ display: flex; justify-content: space-between; align-items: center; padding: 20px 0;} -.main_titWrap > * {height: 28px; align-items: center;} -.main_titWrap h3 {position: relative; color:#333; font-size:23px; font-weight:bold; text-align: left; display: flex; -webkt-display: flex; -moz-display: flex;} - -.content-title {font-size:16px; font-weight:500;color:#1a2377;position:relative;padding-left:14px;margin: 15px 0 10px;text-align:left;} -.content-title:before {position:Absolute;content:'';display:block;left:0;top:10px;transform:translateY(-50%);width: 6px; height: 15px;background: #1f287c;border-radius: 3px;margin-top: 0;} - -/* location */ -.location {position:absolute; right:0; box-sizing:border-box;display: flex; -webkt-display: flex; -moz-display: flex;} -.location-cont {} -.location-cont .route_navi {position:relative;} -.location-cont .route_navi li {float: left; line-height:26px; font-size: 15px; color:#555; font-weight:normal; letter-spacing:-0.05em; padding:0 10px 0 16px; background: url('../images/common/route_arrow.png') no-repeat 0 8px;} -.location-cont .route_navi li .home {display: inline-block; background: url('../images/common/icon_home.png') no-repeat 0 0; padding: 0; width: 12px; height:16px; font-size:0; text-indent:-9999px;} -.location-cont .route_navi li.home a span {float: left;font-size: 0; height: 0;line-height: 0;overflow: hidden;position: absolute;visibility: hidden;width: 0;} -.location-cont .route_navi li a:hover {color:#333;} -.location-cont .route_navi li:last-child {line-height: 26px; font-weight:500; padding-right: 0;} -.location-cont .route_navi li:first-child {background:none;} - -/*footer*/ -#footer {width:100%;background:#3c3d46; clear:both; height:60px; display: flex; justify-content: space-between; align-items: center;} -#footer .box {position: relative; width:1400px; margin:0 auto;} -#footer .box p.fLogo {float:left; margin:15px 25px 15px 0;} -#footer .box address {color:#afafaf; font-size:13px; margin-top:15px; text-transform:uppercase; text-align:left;} -#footer .box p.copy {color:#9b9ba0; font-size:13px; text-align:left;} -#footer .box .menu {position: absolute; top: 20px; right: 0;} -#footer .box .menu li {display:inline-block;} -#footer .box .menu li:not(:last-child) {position:relative; margin-right:1.2em;} -#footer .box .menu li:not(:last-child):after {content:""; position:absolute; top:6px; right:-0.8em; width:1px; height:8px; background-color:#8b8a8a;} -#footer .box .menu li a {color:#afafaf; font-size:14px;} -#footer .box .menu li a:hover {color:#377fed;} - -/* 감색 목록 */ -.searchResultWrap {position:relative; padding:20px 0; margin-bottom: 30px; border-top:1px solid #777;} -.searchResultWrap .ser_kwd {color:#f96262;} -.searchResultWrap .title {color: #222; font-size:24px; background:url(../images/main/ico_penbul.png) no-repeat 0 9px; padding-left:24px; padding-bottom: 25px; border-bottom:1px dotted #ccc;} -.searchResultWrap .title span {font-size:18px;} -.searchResultWrap .title .btn-more {display: inline-block; width: 60px; margin:0; padding-left:20px; border:0;} -.searchResultWrap .title .btn-more a {display: block; font-size:14px; color:#868686; text-decoration:none; background-color:transparent; background: url(../images/main/ico_more01.png) no-repeat right 50%;} -.searchResultWrap .title .sel_box {display: inline-block; position: absolute; right: 0;} -.searchResultWrap .title .sel_box select {border:0; outline: none; font-size:15px; color:#555; padding:0 30px 0 10px; width:100%; height:40px; line-height:38px; border:1px solid #ccc; cursor: pointer; background: #fff url(../images/main/ico_select.png) no-repeat 90% 50%; background-size: 7px 4px;} -.searchResultList li {border-bottom:1px dotted #ccc; padding: 25px 0 25px;} -.searchResultList li .tit {position: relative; margin-bottom:5px; font-size:22px; color:#333; font-weight:400;} -.searchResultList li .tit .bookmark {position: absolute; top:-2px; right: 0; padding-left: 26px; text-indent:-9999px; background: url(../images/main/ico_clipping.png) left center no-repeat;} -.searchResultList li .tit .bookmark_on {position: absolute; top:-2px; right: 0; padding-left: 26px; text-indent:-9999px; background: url(../images/main/ico_clipping_on.png) left center no-repeat;} -.searchResultList li .desc {display:block; width:100%; height:40px; line-height:1.3; font-size:15px; color:#5c5c5c; font-weight:300; margin-bottom:5px;overflow:hidden; display: -webkit-box; text-overflow:ellipsis;-webkit-line-clamp: 2;-webkit-box-orient: vertical;} -.searchResultList li .top_kwd { font-size:14px; color:#333; font-weight:300;} -.searchResultList li .date { font-size:14px; color:#aaa9a9; font-weight:300;} -.searchResultList li.keyword_arrow {position: relative; background:#f8f9fb; border-bottom:1px solid #777; box-sizing: border-box; padding: 0 18px !important; height:36px !important; line-height:34px; margin-bottom:20px;} -.searchResultList li.keyword_arrow .txt_word {display: inline-block; width:80%; left:0;} -.searchResultList li.keyword_arrow span { font-size:14px; color:#2a6fe8; } -.searchResultList li.keyword_arrow .btn-more {display: inline-block; width: 60px; margin:0; padding-left:20px; position: absolute; right: 18px;} -.searchResultList li.keyword_arrow .btn-more a {display: block; font-size:14px; color:#868686; text-decoration:none; background-color:transparent; background: url(../images/main/ico_more01.png) no-repeat right 50%;} -.searchResultWrap .not_data {margin:0 auto; text-align: center; line-height:40px;} -.searchResultWrap .not_data p {display: inline-block; font-size:18px; color:#333; background-size: 40px 40px; padding-left:50px; background:url(../images/main/not_list_img.png) 0 center no-repeat;} -.notSearchResult p {margin-bottom:15px;font-weight:bold;font-size:1.071em} -.notSearchResult p strong {font-size:1.133em} - -/* 데이터 - 검색결과 */ -.ser_kwd {color: #f96262;} -.search-result-num {display:block; text-align: center; font-size:22px; color:#7e7e7e; font-weight:500; letter-spacing: -1px; margin-bottom:30px; padding-top: 40px;} -.search-result-num .ser_kwd {color:#f96262;} - -/* main tab */ -.main_tabWrap {position:relative; overflow:hidden; margin: 0 auto; box-sizing: border-box;} -.main_tab {margin-bottom:18px; position: relative; width: 100%; height: 55px; margin: 0 auto 30px; text-align: center;} -.main_tab ul.tab03 {position:relative; width:100%; height:55px; padding:0; margin:0 auto; text-align: center;} -.main_tab ul.tab03 > li {display:inline-block; position:relative; margin:0; height:55px; width:190px;} -.main_tab ul.tab03 > li a {width:100%; display:block; color:#666; font-size:18px; font-weight:500; line-height:55px; text-align:center; background-color:#f1f7f9; border-radius:55px;} -.main_tab ul.tab03 > li a:hover {text-decoration:none; line-height:55px; background-color:#f1f7f9; color:#0098d1;} -.main_tab ul.tab03 > li.active a {line-height:55px;color:#fff; border-color:#0098d1; background-color:#0098d1;} -.main_tab ul.tab03 > li.active a:hover {} -.tab_content {position:relative; background:transparent; padding:0;} -.main_tab li a:first-child {margin-left: 0px;} - -/* 키워드 조회 */ -.keyword_view {position:relative; width:100%;} -.keyword_wrap {position: relative; width:100%; padding:28px 0 20px;} -.keyword_wrap:after {content:''; display:block; clear:both;} -.keyword_left {float:left; position: absolute; border-right:1px solid #ccc; padding: 28px 10px 10px 0; box-sizing: border-box; top: 0; left: 0; width: 275px; height:100%; min-height:220px; overflow-y: auto; margin-right: 30px;} -.keyword_right {position: relative; float:right; width:75%; min-height: 470px; box-sizing: border-box; margin-left: 305px; padding: 0; background-color: #fff;} -.keyword_left .keyword_list li a {display: block; height:48px; line-height: 48px; border:1px solid #ccc; border-radius: 5px; margin-bottom:10px; font-size: 16px; font-weight:500; color:#848484; text-align: center;} -.keyword_left .keyword_list li a:hover, .keyword_left .keyword_list li a:active {border:1px solid #ccc; color:#1d68dc; font-weight:600;} -.keyword_left .keyword_list li a.on {height:46px; border:2px solid #1d68dc; color:#333; font-weight:600; border-radius: 5px;} -.keyword_body {background:#fff; width:100%; overflow: hidden;} -.keyword_right .searchkeywordList li {border:1px solid #ccc; padding: 20px 25px; margin-bottom:10px;} -.keyword_right .searchkeywordList li:hover {border:1px solid #2a6fe8; cursor:pointer;} -.keyword_right .searchkeywordList li .tit {position: relative; margin-bottom:5px; font-size:22px; color:#333; font-weight:400;} -.keyword_right .searchkeywordList li .tit .bookmark {position: absolute; top:-2px; right: 0; padding-left: 26px; text-indent:-9999px; background: url(../images/main/ico_clipping.png) left center no-repeat;} -.keyword_right .searchkeywordList li .tit .bookmark_on {position: absolute; top:-2px; right: 0; padding-left: 26px; text-indent:-9999px; background: url(../images/main/ico_clipping_on.png) left center no-repeat;} -.keyword_right .searchkeywordList li .desc {display:block; width:100%; height:40px; line-height:1.3; font-size:15px; color:#5c5c5c; font-weight:300; margin-bottom:5px;overflow:hidden; display: -webkit-box; text-overflow:ellipsis;-webkit-line-clamp: 2;-webkit-box-orient: vertical;} -.keyword_right .searchkeywordList li .top_kwd { font-size:14px; color:#333; font-weight:300;} -.keyword_right .searchkeywordList li .date { font-size:14px; color:#aaa9a9; font-weight:300;} - -/* 더보기 버튼 */ -.list_more {margin-top:10px; text-align:center;} -.btn_more {display:inline-block; width:96px; height:36px; line-height:34px; color:#515151; text-align:center; font-size:14px; cursor:pointer; padding:0 10px 0 0; border-radius: 36px; border:1px solid #ccc; background: #f5f5f5 url('../images/main/ico_more_arrow.png') no-repeat 78% 50%;} -.btn_more:hover {border:1px solid #1d68dc; background: #f5f5f5 url('../images/main/ico_more_arrow.png') no-repeat 78% 50%;} - -/* 버튼 그룹 */ -.btn_group {position: relative; text-align:right; margin-top:20px; right:0;} -.btn_group button {height:40px; line-height:38px; border-radius: 4px; font-size:15px; font-weight:400; padding:0 12px; text-align:center; min-width:50px;} -.btn_group button + button {margin-left:2px} -.btn_group .btn_keyword_add {display:inline-block;padding:0 20px; background-color:#ea4c89; color:#fff; font-weight:500; vertical-align:middle; height: 50px; line-height: 48px; border-radius: 48px; letter-spacing: -0.8px;} -.btn_group .btn_keyword_add:hover {background:#e3408d;} -.btn_keyword {display:inline-block; padding:0 16px; border:1px solid #1d68dc; border-radius: 5px; vertical-align:middle; cursor: pointer; height: 40px; line-height: 38px; font-weight:400; color:#1d68dc; background: #fff;} -.btn_keyword:hover {color:#fff; border:1px solid #1d68dc; background:#1d68dc;} -.ico_blank_dark {width:12px; height:12px; background-image:url('../images/main/keword_ico_del.png'); margin-left:13px;} -.btn_keyword:hover .ico_blank_dark.blank_ov {width:12px; height:12px; background-image:url('../images/main/keword_ico_del_ov.png'); margin-left:13px;} -.btn_group .btn-function {min-width:80px; color:#fff; background:#2e389d;}/*등록,확인,저장*/ -.btn_group .btn-function:hover {background:#202a8f;} -.btn_group .btn-etc {min-width:80px; color:#fff; background:#187bfe;}/*수정*/ -.btn_group .btn-etc:hover {background:#055ed3;} -.btn_group .btn-cancel {min-width:80px; color:#fff; background:#474d5c;}/*취소*/ -.btn_group .btn-cancel:hover { background:#3e4452;} - -/* Button style */ -.button, .button a {display:inline-block;cursor:pointer;color:inherit;text-align:center;overflow:visible;background:#fff; padding:0;text-decoration: none !important;vertical-align:middle;white-space:nowrap;margin:0;} -.button:hover {font-weight: normal;} -.button.btn_small {display:inline-block; padding:0px 16px !important;border:1px solid #7e819b;background-color:#7e819b;color:#fff;font-size:14px;font-weight:500;height: 36px;line-height: 34px;border-radius: 3px;vertical-align:middle;cursor: pointer;} -.button.btn_small:hover {border:1px solid #6a6e89;background-color:#6a6e89;} - -/* tbl btn */ -.btn {display:inline-block;height:34px;line-height:32px;font-size:13px;padding:0 12px;text-align:center;border-radius: 3px;} -.btn:hover {text-decoration:none;} -button[class^='btn-']:hover {text-decoration:none;} -.btn-copy,.fileSelectBox .fileinput-button,.fileinput-button {background:#f5f5f5;border:1px solid #bbb;color:#555;} -.btn-copy:hover,td .inlineBox > button:hover,td .inline > button:hover,.fileSelectBox .fileinput-button:hover {background:#7d7d7d;border:1px solid #7d7d7d;color:#fff;} -.btn-save {background:#fff;border:1px solid #508cc3!important;color:#427db4;} -.btn-save:hover{background-color:#508cc3!important;border:1px solid #508cc3;color:#fff!important;} -.btn-print{background:#6eb5b8;border:1px solid #6eb5b8;color:#fff;} -.btn-print:hover{color:#fff;background:#649092;border:1px solid #649092;} -.btn.btn-etc{background-color:#fff;border:1px solid #bbb;color:#333;} -.btn.btn-etc:hover{background-color:#f3f3f3;border:1px solid #999;color:#333;} -.btn-inspect {min-width:62px;border:1px solid #42b382;color:#fff;background:#42b382;}/*장비 점검*/ -.btn-inspect:hover {border:1px solid #2aa36e!important;;background:#2aa36e!important;} -.btn-step {border:1px solid #333faf;color:#333faf;background:#fff;}/*단계*/ -.btn-step:hover {color:#fff;border:1px solid #333faf!important;;background:#333faf!important;} -.btn-report {background:#fff;border:1px solid #fd5120;color:#fd5120;}/*보고서*/ -.btn-report:hover,.btn-report.active {background:#fd5120;border:1px solid #fd5120;color:#fff;} -.btn-result {border:1px solid #646ab7;color:#fff;background:#646ab7;}/*결과*/ -.btn-result:hover {color:#fff;border:1px solid #4e54af!important;;background:#4e54af!important;} -.btn-regist {background:#fff;border:1px solid #2f3bab!important;color:#2f3bab!important;}/*등록*/ -.btn-regist:hover {background:#2733a1!important;border:1px solid #2733a1!important;color:#fff!important;} -.btn-modifi {background:#fff;border:1px solid #2da873!important;color:#1e9e67;}/*수정*/ -.btn-modifi:hover {background:#229f69!important;border:1px solid #229f69!important;color:#fff!important;} -.w-sm{min-width:50px;} -.btn-open-helplayer{width:71px;height:30px;background:url(../images/common/btnimg-help.png) no-repeat;} -.btn-open-helplayer span{text-indent:-999999em!important;font-size:0!important;line-height:0!important;} -/* button size */ -.btn.md{height:28px;line-height:24px;font-size:11px;padding:0 5px;} -.btn.sx{height:24px;line-height:20px;font-size:11px;padding:0 5px;} - -/* table info */ -.tbl_info {position:relative; height:36px;line-height:36px; margin-bottom:5px; display: flex; -webkt-display: flex; -moz-display: flex; align-content: space-between; align-items: center;} -.tbl_info {width: 100%; position: relative; height: 35px; line-height: 35px; display: inline-block; margin-bottom: 5px;} -.tbl_info:after {content:''; display:block; clear:both;} -.tbl_info .left_Area {position: relative; text-align: left; float:left;/*display: flex; -webkt-display: flex; -moz-display: flex;*/ } -.tbl_info .right_Area {box-sizing: border-box; /*position: absolute;right: 0;*/float:right;} -.tbl_info .left_Area ul li {display:inline-block; font-size: 16px; font-weight: normal; color: #333; letter-spacing: -0.7px;} -.tbl_info .left_Area ul li .txt_total {color:#f96262; padding:0 2px 0 4px; font-weight: 500;} -.tbl_info .right_Area .sel_box {display: inline-block; position: absolute; right: 0;} -.tbl_info .right_Area .sel_box select {border:0; outline: none; font-size:14px; color:#555; padding:0 30px 0 10px; width:100%; height:36px; line-height:34px; border:1px solid #ccc; cursor: pointer; background: #fff url(../images/common/ico_sel_arrow.png) no-repeat right 50%; background-size:20px 8px;} -.essential {display:inline-block; color:#f93c4e; font-size: 16px; line-height: 12px; vertical-align: text-top; padding:0 3px 0 4px;} - -/* Table list */ -.tbl_list {position:relative; width:100%; border-top: 1px solid #334263;} -.table-x-scrollable {overflow-x: scroll;} -.table {width: 100%; table-layout: fixed; border-bottom: 1px solid #cbccd3; background-color: #fff; margin-bottom:15px;} -.table thead th {border-bottom: 1px solid #d5d4d4; } -.table thead th, .table tbody th {padding:3px 8px; vertical-align: middle; font-size:13.5px; font-weight:400; color:#112469; text-align:center; background: #f3f5fd;} -.table thead th:last-child, .table th:last-child, .table td:last-child {border-right: 0;} -.table th, .table td {padding: 3px 8px; vertical-align: middle; height: 36px; text-align: center; word-break: break-all; -ms-word-break: break-all; border-right: 1px solid #ddd; border-bottom: 1px solid #ddd;} -.table tbody td {vertical-align:middle; font-size:13.5px; color:#333; font-weight: 300; text-align:center; /*border: 1px solid #d9d9d9;*/ word-break: break-all; white-space: normal;} -.table tbody td a {text-align:left; font-size:13.5px; color:#333; overflow: hidden; white-space: nowrap;text-overflow: ellipsis;-o-text-overflow: ellipsis;-ms-text-overflow: ellipsis; display:block;} -.table tbody td a:hover {color:#0d2ea6; text-decoration: none;} -.table td button {height:32px;line-height:32px;} -.table td .btn-normal {background-color:#fff;border:1px solid #bbb;color:#333;height:32px;line-height:30px;} -.table td .btn-normal:hover {background-color:#f3f3f3;border:1px solid #999;color:#333;} -.table tbody tr.notice_area {background: #fef6f8 !important; font-weight:500;} -.table + .table {margin-top:20px;} -.badge_notice {display:inline-block; text-align:center; color:#ff4e50; font-size:13px; font-weight:400; background:#fff; border: 1px solid #ff4e50; border-radius: 22px; min-width: 46px; height: 22px; line-height: 20px; box-sizing: border-box;} - -/* paging */ -.pagination {position: relative; display: block; text-align:center; margin: 25px auto 0;} -.pagination li {display: inline-block; vertical-align: middle; letter-spacing:-2px; text-align:center;} -.pagination li a {display: block; text-decoration: none; color: #333; font-size:13px; word-break: keep-all; -ms-word-break: keep-all; width:32px; min-width: 32px; height: 32px; line-height:30px; border-radius: 5px; border: solid 1px #ccc; background: #fff;} -.pagination li a.first_page {display:inline-block;text-indent:-9999px; background:#fff url('../images/common/ico_page_first.png') no-repeat 50% 50%;font-size:0; width:15px;height:32px; box-sizing: border-box;} -.pagination li a.pre_page {display:inline-block;text-indent:-9999px; background:#fff url('../images/common/ico_page_pre.png') no-repeat 50% 50%;font-size:0; width:15px;height:32px; margin-right:10px;box-sizing: border-box;} -.pagination li a.next_page {display:inline-block;text-indent:-9999px; background:#fff url('../images/common/ico_page_next.png') no-repeat 50% 50%;font-size:0; width:15px;height:32px; margin-left:10px; box-sizing: border-box;} -.pagination li a.end_page {display:inline-block;text-indent:-9999px; background:#fff url('../images/common/ico_page_last.png') no-repeat 50% 50%;font-size:0; width:15px;height:32px; box-sizing: border-box;} -.pagination li a:hover, -.pagination li span:hover, -.pagination li a:focus, -.pagination li span:focus {color: #0d2ea6; border-color: #0d2ea6;} -.pagination .active a, -.pagination .active span, -.pagination .active a:hover, -.pagination .active span:hover, -.pagination .active a:focus, -.pagination .active span:focus {z-index: 2; color: #fff; background-color: #595959; border-color: #595959; cursor: default;} -.pagination li a.on {z-index: 2; color: #fff;background-color: #595959; border-color: #595959; cursor: default;} - -/* View/Form table */ -.bbs_view {position:relative; width:100%; border-top: 1px solid #334263;margin-bottom: 30px;} -.tbl_form {width:100%; border:0; background-color: #fff; border-bottom: 0; table-layout:fixed; border-collapse: separate; margin-bottom:20px;} -.tbl_form th, .tbl_form td {vertical-align: middle;} -.tbl_form th {padding:6px 10px; height: 38px; text-align:center; border-bottom: 1px solid #ccc; border-right: 1px solid #ccc; background: #f3f5fd; font-size: 13.5px; font-weight: 500; color: #112469; letter-spacing:-0.5px;} -.tbl_form th.non_bg {background: #fff; } -.tbl_form td {padding:6px 10px; height: 38px; text-align:left; font-size:14px; color:#333; border-right: 1px solid #ccc; border-bottom: 1px solid #ccc;} -.tbl_form thead th:last-child, .tbl_form th:last-child, .tbl_form td:last-child {border-right: 0;} -.tbl_form thead th {padding:2px 10px 2px 10px; height: 34px; text-align:center; border-bottom: 1px solid #ccc; border-right: 1px solid #ccc; background: #f3f5fd; font-size: 13.5px; font-weight: 500; color: #112469; letter-spacing:-0.5px;} -.tbl_form td label {vertical-align:top;padding-right:10px;} -.tbl_form input[type="text"] {} -.tbl_form select {width:100%;} -.tbl_form textarea {/*width:98%;*/} -.tbl_form input.form-control {width: 100%;} -.tbl_form td img {vertical-align:middle;} -.tbl_form td .form_inline {display: inline-block; float: left; box-sizing: border-box;} -.tbl_form td .form_group {display: inline-block; position: relative; width: 100%; max-width: 100%;box-sizing: border-box;} -.tbl_form td .form_group span {box-sizing: border-box; position: relative; display: inline-block;} -.tbl_form td .form_group em {display: inline-block;padding-left: 8px;padding-right: 8px;font-size: 14px;} -/*.tbl_form td .form_group em input + label {margin-right: -6px; margin-left: -4px;display: inline-block;}*/ -.tbl_form td .form_inline .label, .tbl_form td .form_group .label {display: inline-block;vertical-align:middle; color:#333; font-weight:500;} -.tbl_form th.blank_bg, .tbl_form td.blank_bg {border-left: none;border-right: none; background:#fff; height:5px;} -.text_note {display: inline-block;font-size:12px;color:#f77777;line-height:16px;background:url('../images/common/ico_info.png') no-repeat 0 50%;padding-left:18px;} -.tbl_form button.ico_btn_search {display:inline-block;width: 26px;height: 24px;background: url('../images/common/ico_td_search.png') no-repeat 0 0; margin-left: 2px;text-indent:-9999px;font-size:0;cursor:pointer;} -.tbl_form .datepicker {width:100%;} -.tbl_form .date_group {display:inline-block;position:relative;} -.tbl_form .date_group i {display:inline-block;width:16px;color:#000;text-align:center;font-size:13px;} -button.ico_btn_search {display:inline-block;width: 26px;height: 24px;background: url('../images/common/ico_td_search.png') no-repeat 0 0; margin-left: 2px;text-indent:-9999px;font-size:0;cursor:pointer;} -button.ico_btn_search:hover {display:inline-block;width: 26px;height: 24px;background: url('../images/common/ico_td_search_ov.png') no-repeat 0 0; margin-left: 2px;text-indent:-9999px;font-size:0;cursor:pointer;} -.table input.text_amount, .tbl_form input.text_amount {text-align: right;padding-right: 5px !important;box-sizing: border-box; -webkit-box-sizing: border-box;-moz-box-sizing: border-box;-o-box-sizing: border-box;} -.tbl_form td button {height: 32px; line-height: 32px;} -.tbl_form .text_box {width: 100%;} -.tbl_form .text_box textarea {width:95%; overflow-y: hidden; resize: none; border: 1px solid #ccc; border-radius: 4px; padding: 2px 8px; padding-bottom: 0;line-height: 16px;font-size:13px;} - -/* 점검보고서 */ -.report_wrap {position:relative; width:100%; display: flex; -webkt-display: flex; -moz-display: flex; justify-content: space-between;} -.calcBox, .roundBox {position:relative; border: 1px solid #dddddd; border-radius: 6px; padding: 10px 20px; background-color: #fff; margin-top: 10px; align-items: center;} -.ttl {position:relative; font-size:15px; font-weight:500;color:#333;padding-left:15px;margin-right:20px;text-align:left;} -.ttl:before {position:Absolute;content:'';display:block;left:2px;top:50%;transform:translateY(-50%);height:13px;width:5px;background:#29b0fd;border-radius:12px;} -.calcBox textarea.form-control {flex: 1; min-height: 50px; width: 100%;font-size:13px;line-height: 1.5;} -.calcBox .btn.report_sel {height:50px;line-height:48px;background-color:#f38a4a;font-size:13px;color:#fff;font-weight:500;padding:0 15px;border-radius:4px;text-align:center;} -.calcBox .btn.report_sel:hover {background-color:#eb8241;} - -/* 스크롤 */ -#scrollstyle::-webkit-scrollbar-track {border-radius: 0;background-color: #f5f5f5;} -#scrollstyle::-webkit-scrollbar {width: 8px; background-color: #f5f5f5;} -#scrollstyle::-webkit-scrollbar-thumb {border-radius: 0; background-color: #ccc;} -#scrollstyle-x::-webkit-scrollbar-track {border-radius: 0;background-color: #f5f5f5;} -#scrollstyle-x::-webkit-scrollbar {height: 8px; background-color: #f5f5f5;} -#scrollstyle-x::-webkit-scrollbar-thumb {border-radius: 0; background-color: #ccc;} - -/* 검색영역 */ -.search_wrap {width:100%; clear:both; margin:0 auto; text-align:center; overflow: hidden;} -.search_wrap .inner_box {position: relative; width:1400px; margin:0 auto; overflow:hidden;} -.date_group {display:inline-block;position:relative;} -.date_group i {display:inline-block;width:20px;color:#333;text-align:center;font-size:15px;} -.date_group input {height:38px !important; padding:0 12px !important; border: 1px solid #ccc !important; color:#333; border-radius: 4px;} -.btn_calendar {display:inline-block; width: 21px; height: 22px; background: #fff url(../images/common/ico_calendar.png) no-repeat 94% 55%; cursor: pointer; padding-right: 16px;} -.btn_calendar span {display:inline-block; text-indent:-9999px;} -.date_group .btn_mainSearch {display:block;position:absolute;top:0;right:0;width:41px;height:41px;text-indent:-9999em; background: url(../images/main/btn_ico_search.png) no-repeat center center;border:0px none;box-sizing:border-box;} -.date_group .btn_search {display:inline-block; vertical-align:middle;font-size:0; width:41px; height:41px; background: url(../images/main/btn_ico_search.png) no-repeat 0 0; margin-left: 10px;} -.search_box {position:relative; width:100%; padding: 0px 0 0;margin: 0 auto;} -.search_box .searchBox_inner {width:645px; height:50px; display:block; position:relative; border-bottom: 3px solid #1e1e1e; margin:0 auto 10px;} -.search_box .searchBox_inner label {width:100%; height:50px; font-size:20px; text-align:left; font-weight:100; color:#fff; line-height:50px; padding:0; display:inline-block; box-sizing:border-box; position:absolute; top:0; left:0; opacity:0.5;} -.search_box .searchBox_inner input {width:100%; height:50px; background-color:transparent; font-size:18px; text-align:left; color:#282828; line-height:20px; padding:16px 40px 16px 0; display:inline-block; border:0; box-sizing:border-box;} -.search_box .searchBox_inner input::placeholder {font-size:18px; text-align:left; color:#b6b6b6;} -.search_box button {position: absolute;top:15px;right:0;width: 23px;height: 22px;font-size:0;background:url(../images/main/btn_ico_search.png) no-repeat;} -.search.on .search_wrap {display: inline-block; visibility:visible; opacity:1; height: auto;} -.search.on > a{ visibility: hidden; opacity:0;} -.search .ex { display:inline-block; width:auto; text-align: center; margin:0 auto;} -.ex {position:relative; display:inline-block; width:100%; height:48px; line-height:46px; padding:0; margin: 0 auto; text-align:center; background: #2646a6;} -.ex .ex_inner {position: relative; width:1400px; margin:0 auto; overflow:hidden;} -.ex .ex_inner .ex_tit {display: inline-block; font-size: 15px; font-weight: 500; color:#d2e2ff; padding:3px 0 5px 0; margin-right: 15px; line-height: 1; vertical-align: middle;} -.ex .ex_inner a {display: inline-block; font-size: 15px; font-weight: 300; color:#d2e2ff; line-height: 1;} -.ex .ex_inner a:before {content: ""; display: inline-block; width: 1px; height: 12px; background-color:#afc1e9; vertical-align: middle; margin:0 12px;} -.ex .ex_inner a:nth-child(2):before {display: none;} - -/* search_box_sub */ -.search_box_sub {position:relative; width:100%; padding: 20px 0; margin: 0 auto 25px; border:1px solid #b4d0dd; background:#f2fbff;} -.search_box_sub .searchBox_inner {width:100%; height:47px; display:block; position:relative; margin:0 auto; text-align: center;} -.search_box_sub .searchBox_inner input[type=text] {width:50%; height:47px; border:1px solid #ccc; color:#1b263c; font-size:18px; line-height:19px; padding:15px 10px 10px 10px; display:inline-block; box-sizing:border-box;} -.search_box_sub .searchBox_inner input::placeholder {font-size:17px; text-align:left; color:#b6b6b6;} -.search_box_sub .searchBox_inner .search_submit {position:relative;display:inline-block;background-color:#1b263c;vertical-align:middle;text-align:center; margin-left:5px;} -.search_box_sub .searchBox_inner .search_submit input[type='submit'] {color:#fff; font-size:15px;font-weight:500; min-width:84px; height:47px; padding: 0 20px;} - -/*----------- 레이어팝업 -----------*/ -[class^='sp-layer-popup'],.ydp-mlayer-popup {position:absolute;top:0;left:0;z-index:999999;width:100%;height:100%} -[class^='sp-layer-popup'] .wrap-layer-bg,.ydp-mlayer-popup .wrap-layer-bg {position:fixed;z-index:110;width:100%;height:100%;background-color:#333;opacity:0.7} -[class^='sp-layer-popup'] .popupbox,.ydp-mlayer-popup .popupbox {position:fixed;top:50%;left:50%;z-index:120;border:1px solid #ccc;background-color:#fff;box-sizing:border-box;border-radius:0;} -[class^='sp-layer-popup'] .popupbox section {position:relative;padding:25px} -.popupbox {position:fixed;top:50%;left:50%;z-index:120;background-color:#fff;box-sizing:border-box} -.popupbox section {position:relative;padding:25px} - -/* 팝업상세 */ -.ydp-mlayer-popup .popupbox {border:0; border-radius: 5px; border: 5px solid #2646a6} -.popupbox .pb-head {height: 75px; background-color: #2646a6;} -.popupbox .pb-head h2 b {color:#fff; font-size:24px; font-weight:600; line-height:68px; margin-left:30px;} -.popupbox .pb-head .btn-close-setting {display:block; position:absolute; top:30px; right:35px;z-index:125;width:16px;height:16px;background: url(../images/common/ico_pop_close.png)no-repeat; text-indent: -9999px;} -.popupbox .pb-body {position: relative; padding: 25px 30px 5px; background-color: #fff;} -.popupbox .pb-body article {margin-left:0px;} -.popupbox .pb-body h3 {font-size:20px; color:#474d5c; padding:10px 0 15px;} -.popupbox .pb-body .keyword_add_wrap {position: relative; display: inline-block; vertical-align:top; padding-bottom:20px; border-bottom:1px solid #e0e0e0;} -.popupbox .pb-body .keyword_add_wrap a {float:left; display: block; margin:0 8px 8px 0;} -.ydp-mlayer-popup li label span {font-size:15px; color:#282828;} -.ydp-mlayer-popup .btn-Area {padding-top:15px;text-align:center; bottom:0; display:flex;-webkt-display:flex;-moz-display:flex;justify-content:center;border-top:1px dashed #ccc; height:70px; width:100%; margin:0 auto;} -.ydp-mlayer-popup .btn-Area button {height:50px;line-height:48px; border-radius: 50px; font-size:18px;font-weight:500;padding:0 12px;text-align:center;min-width:50px;} -.ydp-mlayer-popup .btn-Area button + button {margin-left:5px} -.ydp-mlayer-popup .btn-Area .btn-save {width:100px; color:#fff; background:#eb4c97;} -.ydp-mlayer-popup .btn-Area .btn-save:hover {color:#fff;background:#e2428d;} -.ydp-mlayer-popup .btn-Area .btn-cancel {width:100px; color:#fff; background:#474d5c;} -.ydp-mlayer-popup .btn-Area .btn-cancel:hover {color:#fff; background:#3e4452;} - -/* 키 카테고리 */ -.education_category {margin:10px 0 15px; text-align: center;} -.education_category ul {display:block; position:relative; width:100%; font-size:0; line-height:0;} -.education_category ul:before {display:block; position:absolute; width:1px; height:100%; background:#ff0000; z-index:10;} -.education_category .category_item {display:inline-block;position:relative;width:calc(100% / 6);height:48px;box-sizing:border-box;margin-left: 10px; margin-bottom: 10px;} -.education_category .category_item:nth-child(n+1) {margin-left:10px;} -.education_category .category_item a {display: table; width:100%; height:100%; border:1px solid #ccc; background-color:#fff; font-size:15px; line-height:48px; text-align:center; color:#868686; border-radius: 10px;} -.education_category .category_item:nth-child(n+6) a {} -.education_category .category_item a span {display:table-cell;font-size:15px;line-height:18px;vertical-align:middle;} -.education_category ul .category_item .active {background-color:#639df3;color:#fff;border-bottom: 0;} - -/* searchArea - 검색 */ -.searchArea {position:relative; background-color:#fff; border:1px solid #d5d7df; padding:15px 150px 8px 25px; border-radius: 8px; margin-bottom:25px;} -.searchArea table {position:relative;} -.searchArea th,.searchArea td {padding-bottom:5px;height:36px;} -.searchArea th {position:relative; text-align:left; padding-right:10px;} -.searchArea th:before {content:'';display:inline-block;height:4px;width:4px;border-radius:50px;position:Relative;top:-1px;background:#0d1e84;vertical-align:middle;margin-right:5px;} -.searchArea th label {color:#112469;font-size:14px;font-weight:500;} -.searchArea td {padding-right:20px;} -.inlineBox, .inline {display: flex; -webkt-display: flex; -moz-display: flex; align-items: center;} -.searchArea td .inlineBox {display: flex; -webkt-display: flex; -moz-display: flex; align-items: center;} -.searchArea td .form_group {display: flex; -webkt-display: flex; -moz-display: flex;align-items: center;} -.searchArea input[type='text'].form-control, .searchArea select.form-control, select.form-control {width:100%;} -.searchArea .form-control.set-btn-md {width:Calc(100% - 70px);} -.searchArea select.form-control.year {width:30%;} -.searchArea td .form-control + label.txt {margin:0 5px; word-break:keep-all; -ms-word-break:keep-all;} -.searchArea select.form-control.month {width:20%; min-width:45px;} -.searchArea .btnArea {position: absolute; top: 40%; right: 20px; flex-direction: column-reverse;} -.searchArea .btnArea [class^='btn-'] {display:block; height:36px;line-height:34px;color:#fff;font-size:14px;font-weight:400; padding:0 16px; width:88px; text-align:center; margin: 3px 0;border-radius: 4px;} -.searchArea .btnArea .btn-search,.uSearchArea .l-search .btn-search {background-color:#2747d0; border:1px solid #2747d0;} -.searchArea .btnArea .btn-search:hover,.uSearchArea .l-search .btn-search:hover {background-color:#193ac1;} -.searchArea .btnArea button + button {margin-bottom:0px;} -.searchArea .set-datepicker {width:120px;} -.searchArea.single-row {padding-right:100px;} -.searchArea.single-row .btnArea,.uSearchArea .btnArea {margin-top:-15px;flex-direction:row-reverse;} -.searchArea.single-row [class^='btn-'] {display:inline-block;} -.searchArea.single-row button + button {margin-bottom:0px; margin-right:5px;} -.searchArea + .listToparea .l-Top-info dt, .searchArea + .listToparea .l-Top-info dd {line-height:30px;margin-top:0;} -[class^='sp-layer-popup'] .searchArea.single-row {padding-right:60px;} -.searchArea.sm td {padding-right:15px;} -.listToparea > * {height:30px;align-items:center;} - -/* datepicker */ -.set-datepicker {position:relative; display:inline-block; width:140px; height:38px; background:#fff; /*padding-right:26px;*/ border:1px solid #ccc;} -.set-datepicker > input {height:38px; line-height:38px; border:0; background:none; width:100%; font-size:14px;} -.set-datepicker.disabled {background:#eee; opacity:.5; filter:alpha(opacity=50); cursor:default;} -.set-datepicker.disabled input {position:relative;} -td .set-datepicker > button,td .set-datepicker > button:hover,.set-datepicker > button,.set-datepicker > button:hover {background: #fff url(../images/common/ico_calendar.png) no-repeat;width:21px;height:22px;position:absolute;right:6px;top:7px;border:0!important;background-color:transparent;text-indent:-9999px!important;font-size:0!important;} -.set-datepicker.disabled:after {content:'';display:block;height:100%;width:100%;position:absolute;top:0;left:0;z-index:5;} -.set-datepicker + label.txt {margin: 0 5px;} -td label.txt {margin: 0 5px;} -.set-datepicker.sm {width:120px;} - -/* modal 팝업 */ -.dim-layer {display: none; position: fixed; _position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1000;} -.dim-layer .dimBg {position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #000; opacity: .5; filter: alpha(opacity=50);} -.dim-layer .pop-layer {display: block; position: absolute;} -.pop-layer {display: none; position: fixed; top: 50%; left: 50%; width: auto; height: auto; background-color:#0e1872; z-index: 1000 !important; padding:2px;} -.modal-large {width: 960px;} -.modal-md {width: 760px;} -.modal-mini {width: 500px;} -.modal-content {position:relative; background-color:#fff; -webkit-background-clip: padding-box; background-clip: padding-box; outline: 0;} -.modal-header {width:100%;height:52px;background-color:#0e1872;} -.modal-header:after {content:''; display:block; clear:both;} -.modal-header .close {margin-top: -2px;} -.modal-header .pop_close {float: right;margin-right: 20px;} -.modal-header .pop_close a {display: block; background: url('../images/common/ico_pop_close.png')no-repeat; width:18px; height:18px; font-size: 0; margin-top: 20px;} -.modal-header .pop_title {text-align:left; font-size:20px; font-weight:500; color:#fff; line-height: 52px; text-indent: 25px; display: inline-block;} -.modal-body {position: relative; padding: 12px 25px 20px; background-color:#fff;} -.modal-body h3 {font-size:20px; color:#474d5c; padding:10px 0 15px;} -.modal-body .keyword_add_wrap {position: relative; display: inline-block; vertical-align:top; padding-bottom:20px; border-bottom:1px solid #e0e0e0;} -.modal-body .keyword_add_wrap a {float:left; display: block; margin:0 8px 8px 0;} -.modal-footer {padding: 15px 0 15px; text-align: center;border-top: 1px solid #ddd;} -.modal-footer .btn + .btn {margin-bottom: 0; margin-left: 3px;} -.modal-footer .btn-group .btn + .btn {margin-left: -1px;} -.modal-footer .btn-block + .btn-block {margin-left: 0;} -.button.btn_pop_cancel {font-size:15px; color:#333; font-weight:500; background:#fff; border:1px solid #ccc;min-width:80px; padding:0 20px; height:40px; line-height:38px; border-radius: 4px;} -.button.btn_pop_cancel:hover {background-color: #f5f6f9;border: 1px solid #9f9f9f;} -.button.btn_pop_save {font-size:15px; color:#fff; font-weight:500; background:#1d64c5; min-width:80px; padding:0 20px; height:40px; line-height: 38px; border-radius: 4px;} -.button.btn_pop_save:hover {color:#fff; background:#185bb7;} -.popup-body {position: relative; padding: 0 20px 15px;background-color:#fff;} - -/* page-title */ -.page-title {position:relative; height: 52px; line-height:52px;padding:0 20px; background-color: #0e1872; margin-bottom:20px;} -.page-title span {font-size:20px; font-weight:500; color:#fff !important;} -.page-title > .pop_close {float: right; margin-right: 10px;padding-top: 13px;} -.page-title > .pop_close a {display: block; background: url('../images/common/ico_pop_close.png') no-repeat; width: 18px; height: 18px; font-size: 0; margin-top: 7px;} -.page-title + article, .page-title + .content-title,.content-title + .sec-title {margin-top:15px;} - -/*챠트영역*/ -.chart_box {display: flex; justify-content: space-between; align-items: center; padding: 20px 0;} -.chart_wrap {position: relative; background-color: #fff; border: 1px solid #d5d7df; padding: 5px 25px; border-radius: 8px; margin-bottom: 25px;} -.prompt_box {position: relative;box-sizing: border-box; margin-bottom:10px;} -.prompt_box .Prompt_wrap {} -.prompt_box .Prompt_wrap .inner {} -.prompt_box .Prompt_wrap .inner:after {content:'';clear:both;display:block;} -.prompt_box .Prompt_wrap .inner .item {display: inline-block; float: left; vertical-align: top;} -.prompt_box .Prompt_wrap .inner .item .link {position: relative; display: block; background-color: #fff; color: #333; font-size: 16px; font-weight: 300; letter-spacing: -0.06em; line-height: 1.3; width: 100%; height: 100%; border: 1px solid #3a4aba; border-radius: 8px; text-align: left; padding: 9px 15px 9px; transition: all 0.3s;} -.prompt_box .Prompt_wrap .inner .item .link:hover, -.prompt_box .Prompt_wrap .inner .item .link:focus {background-color: #fff; border-color: #222f8b; box-shadow: 0 5px 4px rgba(135, 149, 163, 0.2);-ms-box-shadow: 0 5px 4px rgb(135 149 163 / 20%);border-style: dashed;} -.prompt_box .Prompt_wrap .inner .item .link .text {display: inline-block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width:88%; vertical-align: middle;} -.prompt_box .Prompt_wrap .inner.n2 {width: calc(100% + 20px); margin: 0 -10px;} -.prompt_box .Prompt_wrap .inner.n2 .item {width: calc(100% / 2 - 20px); margin: 0 10px;margin-bottom: 8px;} -.prompt_box .Prompt_wrap .inner.n2 .item .s_tit {display: block;font-size: 15px;font-weight: 400;color: #333; margin-bottom: 10px;text-align:center;} -.prompt_box .Prompt_wrap .inner.n2 .item .g-map-area {border:1px solid #e6e6e6; background-color:#f3f5fd; min-height:50px;width:100%;margin-top: 3px;} - -/* login */ -.logback {width:100%;height:100%;background-image:url('../images/main/login_bg.gif'); background-size:100% 1000px;left: 0;top: 0;position: fixed;background: #f4f5f8;} -.logback h1 {top:0;height:42px;line-height:42px;margin-top: 8%;text-align:center;display:block;} -.logback h3 {top:0;height:40px;line-height:24px;padding-top: 20px;text-align:center;display:block;font-size:16px;font-weight:400;color:#555;margin:0 auto;} -.logback .login_box {margin:0 auto;width:500px; height:auto;clear:both;margin-top:1.2%;background:#fff;-webkit-border-radius: 26px;-moz-border-radius: 26px;-khtml-border-radius: 26px;border-radius:26px; box-shadow: 0px 1px 10px #bcbfdb; -moz-box-shadow: 0px 1px 10px #bcbfdb; -webkit-box-shadow: 0px 1px 10px #bcbfdb;} -.logback .login_box:after {content:""; clear:both; display:block} -.logback .login_box .loginWrap {width:70%; margin:0 auto;text-align:center;padding:55px 0;} -.loginWrap .input_wrap {width:100%;text-align:center;clear:both;} -.loginWrap .input_wrap input[type=text], .loginWrap .input_wrap input[type=password] {text-indent:10px;-webkit-border-radius: 5px;-moz-border-radius: 5px;-khtml-border-radius: 5px;border-radius:5px;} -.loginWrap .input_wrap input::placeholder {color:#b6b6b6 !important;} -.loginWrap .input_wrap .txt_id {width:100%; height:50px; font-size:16px; border:1px solid #ddd; margin-bottom:10px;} -.loginWrap .input_wrap .txt_pw {width:100%; height:50px; font-size:16px; border:1px solid #ddd;} -.loginWrap .input_wrap .save_id {float:left; color:#333; padding:25px 0;} -.loginWrap .input_wrap .save_id input[type=checkbox] + label {cursor: pointer; position: relative; font-size: 14px; padding-left: 30px;} -.loginWrap .input_wrap .save_id input[type=checkbox]+ label:before { content: ""; display: inline-block; width: 19px; height: 19px; margin-right: 20px; position: absolute; left: 0; top: 0px; background-color: #fff; border:solid 1px #ccc; border-radius: 19px;} -.loginWrap .input_wrap .save_id input[type=checkbox]:checked + label:before {content: ""; font-size: 15px; font-weight:800; color: #fff; border:solid 1px #2e389d;line-height:19px;background:#2e389d url('../images/common/ico_check_w.png') no-repeat 50% 50%;} -.input_wrap .btn_login {display:inline-block;width:100%;height:65px;line-height:65px; margin-bottom:10px; background:#2e389d; color:#fff; text-align:center; font-weight:400; font-size:18px; border-radius: 6px;} -.input_wrap .btn_login:hover {background:#2f3dc6;} -.hidden {font-size: 0; width:0 !important; height: 0; line-height: 0; overflow: hidden; visibility: hidden; width: 0; position:absolute;} - -/* index */ -.main_img {width: 100%; height: 280px; max-width: 1400px; margin: 0 auto 40px; position: relative; display: block; box-sizing: border-box; padding:30px 20px 30px 90px;border-radius: 38px 0 0 0; background: #3842a9 url('../images/main/main_img.png') no-repeat 93% 100%;} -.main_img:after {content:''; display:block; position:absolute; bottom:0; left:0; width:160px; height:280px; background:url('../images/main/main_img_left.png') no-repeat 0 0;} -.main_img .l_txt {display:block;padding-top:50px; font-size: 45px; font-weight:700; color: #fff; line-height:1.8em;padding-left:50px;} -.main_img .m_txt {display:block;width: 100%; font-size: 22px; font-weight:400; color: #bfdfed; padding-left:50px;} - -/* 오늘의 할일, 업무공지 */ -.week_news_wrap {padding:0;width:100%;max-width: 1400px;margin: 0 auto; box-sizing: border-box;} -.week_news {overflow: hidden; width:100%; height:300px; padding:20px 30px; background: #fff; box-sizing: border-box; border-radius: 20px; box-shadow: 0px 1px 10px #d8dadf; -moz-box-shadow: 0px 1px 10px #d8dadf; -webkit-box-shadow: 0px 1px 10px #d8dadf;} -.week_news h1 {position: relative;display: inline-block;width:100%;margin-bottom:15px; font-size: 23px;height: 36px;color:#222046;font-weight:600; } -.week_news h3 {float:right;position: relative;display: inline-block;font-size: 15px;color:#333;font-weight:500;margin-top:-5px;margin-right:-5px;background:url('../images/main/ico_m_bul.gif') no-repeat 0 48%; padding-left:10px;} -.week_news h1 a.btn_more {float:right;position: relative; display:inline-block; padding:6px 0 0; width:16px; height:16px; background:url('../images/main/ico_more.png') no-repeat 0 0; margin-top: 7px; font-size:0; text-indent:-9999px;border: 0;} -.week_news h1 a.btn_more:hover {color:#333;} -.week_news h3 select {min-width:80px;height:34px !important;border: 1px solid #dadce1 !important;margin-left:4px;} -.week_news .news_list {width:100%; position: relative;} -.week_news .news_list li {line-height: 34px; position: relative; float:left; width:100%; display: flex; flex-wrap: wrap; justify-content: space-between;} -.week_news .news_list li:last-child {border-bottom: 0;} -.week_news .news_list li + li {margin-top: 9px;} -.week_news .news_list li a {display:block; position: relative; padding-left:13px; padding-right: 20px; font-size: 17px;} -.week_news .news_list li a:before {content: ""; position: absolute; left: 0; top: 50%; width: 4px; height: 4px; margin-top: -2px; background-color: #6e6e6e; border-radius: 100%;} -.week_news .news_list li a .work_tit {float:left; display:inline-block; max-width: 350px; color:#333; font-size:18px; font-weight:400; overflow:hidden; white-space:nowrap; text-overflow:ellipsis; -o-text-overflow:ellipsis;} -.week_news .news_list li a .noti_tit {float:left; display:inline-block; max-width: 350px; color:#333; font-size:18px; font-weight:400; overflow:hidden; white-space:nowrap; text-overflow:ellipsis; -o-text-overflow:ellipsis;} -.week_news .news_list li a .noti_tit:hover {color:#000;} -.week_news .news_list li a .ico_new {font-size:8px; color:#fff; width:17px; height:17px; background-color: #ff4e50; border-radius: 50%; font-weight: 400; display:inline-block; text-align: center; line-height: 15px; margin-left: 5px; vertical-align: middle; position: absolute; right:0; top:50%; transform: translateY(-50%);} -.week_news .news_list li .r_txt {float: right; line-height: 32px; color:#777; font-size:17px; } -.week_news .news_list li .w_name {color:#444; padding-right:20px;} -.week_news .news_list li .not_noti {float:left; display:inline-block; width: 100%; color:#888; font-size:17px; font-weight:400; text-align:center;} - diff --git a/front/src/main/resources/static/css/layout.css.20250425 b/front/src/main/resources/static/css/layout.css.20250425 deleted file mode 100644 index 30653f58..00000000 --- a/front/src/main/resources/static/css/layout.css.20250425 +++ /dev/null @@ -1,658 +0,0 @@ -@charset "utf-8"; - -#wrap {width:100%;margin:0 auto;} -.row::after {content:""; display:block; clear:both;} -.cell {float:left; box-sizing:border-box;} - -/* Layout */ -#container {position:relative; width:100%; margin:0 auto; padding-bottom: 50px; background: #f7f8fa;} -#container:after {display:block;clear:both;content:''} -#content {position: relative; width:100%; margin:0 auto;} -.content {position: relative; width:1400px; margin:0 auto;} -#container .side_Wrap {position:relative; float:left; width:220px; padding-top:20px;} -#container .body_wrap {float: right; width: calc(100% - 250px);} -#container .body_wrap .inner {width:100%; margin:0 auto; padding: 20px 25px 30px; border: 1px solid #e0e0e0; background-color: #fff;} - -/* header */ -.header_wrap {position: relative; width:100%; height: 120px; background:#fff;} -.header_wrap .header-inner {position:relative; width:1400px; min-width: 1400px; height:100%; margin:0 auto;} -.header_wrap .header-top {width: 100%; height: 60px; margin: 0 auto; display: inline-block;} -.header_wrap .header-top > .inner {position: relative; width: 1400px; height: 60px; margin: 0 auto;} - -/* util */ -.header_wrap .header-top .util {float:right; height:60px; margin-top:16px; right:0; display: inline-block;} -.header_wrap .header-top .util li {position: relative; display: inline-block; vertical-align: middle; height:28px; line-height:28px; color:#666; font-size:13px;margin-left: 20px;} -.header_wrap .header-top .util li > img {vertical-align: top;} -.header_wrap .header-top .util li > a {font-size:13px; color:#333;} -.header_wrap .header-top .util li .name {display: inline-block; padding-left:18px; margin-right: 4px;color:#2e389d;font-weight:500;} -.header_wrap .header-top .util li .name:before {position:absolute; content:''; display:block; background: url('../images/main/ico_user.png') 0 0 no-repeat;left:0;top:7px;width:14px;height:14px;} -.header_wrap .header-top .util li .logout {display: inline-block; padding-left:18px; margin-right: 14px;} -.header_wrap .header-top .util li .logout:hover {color:#2e3aaf;} -.header_wrap .header-top .util li .logout:before {position:absolute; content:''; display:block; background: url('../images/main/ico_logout.png') 0 0 no-repeat;left:0;top:7px;width:14px;height:14px;} -.header_wrap .logo {position:relative; display:inline-block; height:35px;width:211px;top:13px;left:0px;cursor:pointer; text-indent: -9999px; background:url(../images/main/logo.png) 0 center no-repeat;} - -/*오픈*/ -.util li a.mysetOpen {width:115px; padding:6px 15px 0 18px; background:url(../images/main/ico_util_sel.png) no-repeat 100% 14px; margin-right: 14px;} -.util li a.mysetOpen.active {background:url(../images/main/ico_util_sel.png) no-repeat 100% 14px;} -.util li a.mysetOpen:before {content:""; display:block; background:url(../images/main/ico_user.png) no-repeat 0 3px; width:100%; height:100%; position:absolute;left:0;top:5px;} -.util li div.my_sett {width:105px; background:#fff; display:none; position:absolute; padding: 5px 0; border-radius: 5px; z-index: 10; box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.2); border:1px solid #ddd;} -.util li div.my_sett a {display:block; color:#333; font-size:13px; padding:0px 0 3px; text-align:center; border-radius: 5px;} -.util li div.my_sett a:hover, -.util li div.my_sett a:focus, -.util li div.my_sett a.active {color:#253fc3;} - -/* gnb */ -.header_wrap .wrap-nav {position: relative; display: inline-block; width:100%; height:55px; margin: 0 auto; background:#2e389d; border-top:1px solid #e6e8eb;border-bottom:1px solid #e6e8eb;} -.header_wrap .wrap-nav:after {display:block;clear:both;content:''} -.header_wrap .wrap-nav .gnb {position:relative; width:100%; height:55px; margin:0 auto; padding-right:80px; display: inline-block;} -.header_wrap .wrap-nav .gnb > li {position:relative; float: left; height:55px;} -.header_wrap .wrap-nav .gnb > li + li {margin-left:30px;} -.header_wrap .wrap-nav .gnb > li > a {font-size:17px;font-weight:500;color:#fff;height:55px;line-height:53px; display: block; position:relative;} -.header_wrap .wrap-nav .gnb > li > a:after {content:""; display:block; clear:both; width: 1px; height: 14px; background-color: #8590cb; position: absolute; top: 20px; left:-14px; margin-top:0;} -.header_wrap .wrap-nav .gnb > li:first-child > a:after {display: none;} -.header_wrap .wrap-nav .gnb > li > a:hover {color:#39d6fd;text-decoration:none;} - -/* 전체메뉴 */ -.header_wrap .all_btn {position:absolute; top:0; right:0;} -.header_wrap .all_btn:after {clear:both; display:block; content:"";} -.header_wrap .all_btn button:first-child {margin-left:0;} -.header_wrap .all_btn .toggle-menu {width:50px; height:55px; background:url("../images/main/btn_hamb.png") no-repeat center center; background-size:25px 20px; position:relative; top:0; font-size:0;} -.allMenu {display:none; width:100%; height:100%; min-height:850px; position:fixed; top:61px; right:0; z-index:6; background-color:#fff; padding:0; text-align: left; z-index:2; margin:0 auto; overflow: hidden;} -.allMenu:before {content:''; position:fixed; width:100%; height:100%; left:0; top:90%; bottom:0; background:rgba(0, 0, 0, 0.5); z-index:0;} -.allMenu .user-wrap {width:100%; height:55px; padding-left:30px; position:relative; background:#2e389d; z-index:99; margin: 0 auto; text-align: center;} -.allMenu .user-wrap .menu-inner {position:relative; width:1400px; max-width: 1400px; height:100%; margin:0 auto;} -.allMenu .user-wrap .menu-logo {position: relative; display:inline-block; margin-left: -130px; padding:0; width:140px; height:100%; background:url('../images/main/logo_w.png') no-repeat 0;} -.allMenu .user-wrap .logo-txt {position: absolute; top:10px; font-size:23px; color:#fff; font-weight: 500;} -.allMenu .m-gnb {display:block; width:100%; height:850px; max-width:1400px; margin:0 auto; padding:35px 0 35px 0; z-index:99;overflow-y: auto;} -.allMenu .m-gnb ul {overflow:hidden; } -.allMenu .m-gnb ul li a {position:relative; font-size:15px; color:#111; font-weight: 500; } -.allMenu .m-gnb ul li a:focus {text-decoration:none;} -.allMenu .m-gnb ul li a:only-child:after {display:none;} -.allMenu .m-gnb > ul > li {float:left; width:18%; min-height:0px; margin: 0 15px 30px 0;} -.allMenu .m-gnb > ul > li > a {display:block; padding:12px 0; font-size:20px; color:#2e389d; font-weight: 500; text-align: center;border:1px dashed #2e389d;border-radius: 7px;} -.allMenu .m-gnb > ul > li > a:hover {color:#2e389d; text-decoration:none;} -.allMenu .m-gnb > ul > li > a .link {display:inline-block; width:12px; height:12px; margin-left:3px; background-size:100%;} -.allMenu .m-gnb > ul > li.curr > a, -.allMenu .m-gnb > ul > li > a:hover {text-decoration:none;} -.allMenu .m-gnb ul.depth-2 {overflow:hidden; padding-bottom:0px; margin-top:10px;} -.allMenu .m-gnb ul.depth-2 > li > a {display:block; font-size:15px; font-weight:400; line-height:30px; color:#444; padding-left:12px;} -.allMenu .m-gnb ul.depth-2 > li > a:before {content:''; position:absolute; top:15px; left:0; width:6px; height:1px; background-color:#777;} -.allMenu .m-gnb ul.depth-2 > li > a:hover {color:#2d39b5; text-decoration:none;} -.allMenu .gnb-close {position:absolute; margin:0; top:0; right:9.2%;z-index:99;} -.allMenu .gnb-close button {width:50px; height:55px; display:block; background:url("../images/main/btn_close.png") no-repeat center; background-size:21px 21px; text-indent:-9999px;} - -/* lnb menu */ -.side_Wrap h2 {overflow: hidden; display: flex; align-items: center; justify-content: center; width: 100%; height: 98px; font-size: 23px; font-weight: normal; line-height: 1; color: #fff; background: #333faf; border-radius: 30px 0 0 0; box-sizing: border-box;} -#lnb {float: left; width: 100%;} -#lm {width: 100%;} -#cssmenu, -#cssmenu ul, -#cssmenu ul li, -#cssmenu ul li a {margin: 0;padding: 0;border: 0;list-style: none;line-height: 1;display: block;letter-spacing:-0.8px;color:#333333;position: relative;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;text-decoration: none;cursor: pointer;} -#cssmenu {width: 100%;} -#cssmenu ul ul {display: none;} -.align-right {float: right;} -.holder {background:none} -.holder::after, .holder::before {display: block;position: absolute;content: "";right: 15px;z-index: 10;background:none} -.holder::after {top: 15px;background:none} -.holder::before {top: 15px;} -#cssmenu > ul > li > a {display: block; position: relative; padding: 15px 15px; font-size: 15px; font-weight: 400; color: #333333; border: 1px solid #ddd; border-top: 0; background:#fff;} -#cssmenu > ul > li > a:before {content:""; display:block; position:absolute; top:50%; right:20px; margin-top:-7px; width:13px; height:13px; background-image:url(../images/common/ico_lnb_1dh.png); background-repeat:no-repeat; transition: all 0s ease 0s } -#cssmenu > ul > li > a:hover:before {background-image:url(../images/common/ico_lnb_1dh_hover.png);} -#cssmenu > ul > li > a:last-child {border-bottom: none;} -#cssmenu > ul > li > a:hover {color: #2e389d;} -#cssmenu > ul > li.active > a, -#cssmenu > ul > li.open > a {display: block; position: relative; color: #fff; border: 0; background: #252e89;} -#cssmenu > ul > li.open > a:before {content:""; display:block; position:absolute; top:50%; right:20px; margin-top:-7px; width:13px; height:13px; background:#252e89 url(../images/common/ico_lnb_1dh_on.png); background-repeat:no-repeat; transition: all 0s ease 0s } -#cssmenu ul ul {background:#f7f9fc;border: 1px solid #ddd;border-top: 0; padding: 7px 0 10px;} -#cssmenu ul ul li a {position: relative; display: block; padding: 8px 0 8px 25px; font-size:14px; font-weight:500; color:#424242 !important; letter-spacing:-0.6px; font-weight: normal;} -#cssmenu ul ul li a:before {display:block; position:absolute; top:14px; left:15px; width:4px; height:4px; background-color:#a9a9ab; content:'';} -#cssmenu ul ul li a.on {color: #2e389d !important; font-weight: normal;} -#cssmenu ul ul li a.on:before {display:block; position:absolute; top:14px; left:15px; width:4px; height:4px; background-color:#2e389d; content:'';} -#cssmenu > ul > li.open > ul {display:block;} -#cssmenu ul ul li:hover a, -#cssmenu ul ul li.open a, -#cssmenu ul ul li.active a {position: relative; display: block; color: #2e389d !important;} -#cssmenu ul ul li:hover a:before,#cssmenu ul ul li.open a:before,#cssmenu ul ul li.active a:before {content:''; display:block; position:absolute; top:14px; left:15px; width:4px; height:4px; background-color:#2e389d;} -#cssmenu ul ul li.active a:after, #cssmenu ul ul li.open a:after, #cssmenu ul ul li a:hover:after {border-color: none;} - -/* title */ -.main_titWrap {display: flex; justify-content: space-between; align-items: center; padding: 20px 0;} -.main_titWrap > * {height: 28px; align-items: center;} -.main_titWrap h3 {position: relative; color:#333; font-size:23px; font-weight:bold; text-align: left; display: flex; -webkt-display: flex; -moz-display: flex;} - -.content-title {font-size:16px; font-weight:500;color:#1a2377;position:relative;padding-left:14px;margin: 15px 0 10px;text-align:left;} -.content-title:before {position:Absolute;content:'';display:block;left:0;top:10px;transform:translateY(-50%);width: 6px; height: 15px;background: #1f287c;border-radius: 3px;margin-top: 0;} - -/* location */ -.location {position:absolute; right:0; box-sizing:border-box;display: flex; -webkt-display: flex; -moz-display: flex;} -.location-cont {} -.location-cont .route_navi {position:relative;} -.location-cont .route_navi li {float: left; line-height:26px; font-size: 15px; color:#555; font-weight:normal; letter-spacing:-0.05em; padding:0 10px 0 16px; background: url('../images/common/route_arrow.png') no-repeat 0 8px;} -.location-cont .route_navi li .home {display: inline-block; background: url('../images/common/icon_home.png') no-repeat 0 0; padding: 0; width: 12px; height:16px; font-size:0; text-indent:-9999px;} -.location-cont .route_navi li.home a span {float: left;font-size: 0; height: 0;line-height: 0;overflow: hidden;position: absolute;visibility: hidden;width: 0;} -.location-cont .route_navi li a:hover {color:#333;} -.location-cont .route_navi li:last-child {line-height: 26px; font-weight:500; padding-right: 0;} -.location-cont .route_navi li:first-child {background:none;} - -/*footer*/ -#footer {width:100%;background:#3c3d46; clear:both; height:60px; display: flex; justify-content: space-between; align-items: center;} -#footer .box {position: relative; width:1400px; margin:0 auto;} -#footer .box p.fLogo {float:left; margin:15px 25px 15px 0;} -#footer .box address {color:#afafaf; font-size:13px; margin-top:15px; text-transform:uppercase; text-align:left;} -#footer .box p.copy {color:#9b9ba0; font-size:13px; text-align:left;} -#footer .box .menu {position: absolute; top: 20px; right: 0;} -#footer .box .menu li {display:inline-block;} -#footer .box .menu li:not(:last-child) {position:relative; margin-right:1.2em;} -#footer .box .menu li:not(:last-child):after {content:""; position:absolute; top:6px; right:-0.8em; width:1px; height:8px; background-color:#8b8a8a;} -#footer .box .menu li a {color:#afafaf; font-size:14px;} -#footer .box .menu li a:hover {color:#377fed;} - -/* 감색 목록 */ -.searchResultWrap {position:relative; padding:20px 0; margin-bottom: 30px; border-top:1px solid #777;} -.searchResultWrap .ser_kwd {color:#f96262;} -.searchResultWrap .title {color: #222; font-size:24px; background:url(../images/main/ico_penbul.png) no-repeat 0 9px; padding-left:24px; padding-bottom: 25px; border-bottom:1px dotted #ccc;} -.searchResultWrap .title span {font-size:18px;} -.searchResultWrap .title .btn-more {display: inline-block; width: 60px; margin:0; padding-left:20px; border:0;} -.searchResultWrap .title .btn-more a {display: block; font-size:14px; color:#868686; text-decoration:none; background-color:transparent; background: url(../images/main/ico_more01.png) no-repeat right 50%;} -.searchResultWrap .title .sel_box {display: inline-block; position: absolute; right: 0;} -.searchResultWrap .title .sel_box select {border:0; outline: none; font-size:15px; color:#555; padding:0 30px 0 10px; width:100%; height:40px; line-height:38px; border:1px solid #ccc; cursor: pointer; background: #fff url(../images/main/ico_select.png) no-repeat 90% 50%; background-size: 7px 4px;} -.searchResultList li {border-bottom:1px dotted #ccc; padding: 25px 0 25px;} -.searchResultList li .tit {position: relative; margin-bottom:5px; font-size:22px; color:#333; font-weight:400;} -.searchResultList li .tit .bookmark {position: absolute; top:-2px; right: 0; padding-left: 26px; text-indent:-9999px; background: url(../images/main/ico_clipping.png) left center no-repeat;} -.searchResultList li .tit .bookmark_on {position: absolute; top:-2px; right: 0; padding-left: 26px; text-indent:-9999px; background: url(../images/main/ico_clipping_on.png) left center no-repeat;} -.searchResultList li .desc {display:block; width:100%; height:40px; line-height:1.3; font-size:15px; color:#5c5c5c; font-weight:300; margin-bottom:5px;overflow:hidden; display: -webkit-box; text-overflow:ellipsis;-webkit-line-clamp: 2;-webkit-box-orient: vertical;} -.searchResultList li .top_kwd { font-size:14px; color:#333; font-weight:300;} -.searchResultList li .date { font-size:14px; color:#aaa9a9; font-weight:300;} -.searchResultList li.keyword_arrow {position: relative; background:#f8f9fb; border-bottom:1px solid #777; box-sizing: border-box; padding: 0 18px !important; height:36px !important; line-height:34px; margin-bottom:20px;} -.searchResultList li.keyword_arrow .txt_word {display: inline-block; width:80%; left:0;} -.searchResultList li.keyword_arrow span { font-size:14px; color:#2a6fe8; } -.searchResultList li.keyword_arrow .btn-more {display: inline-block; width: 60px; margin:0; padding-left:20px; position: absolute; right: 18px;} -.searchResultList li.keyword_arrow .btn-more a {display: block; font-size:14px; color:#868686; text-decoration:none; background-color:transparent; background: url(../images/main/ico_more01.png) no-repeat right 50%;} -.searchResultWrap .not_data {margin:0 auto; text-align: center; line-height:40px;} -.searchResultWrap .not_data p {display: inline-block; font-size:18px; color:#333; background-size: 40px 40px; padding-left:50px; background:url(../images/main/not_list_img.png) 0 center no-repeat;} -.notSearchResult p {margin-bottom:15px;font-weight:bold;font-size:1.071em} -.notSearchResult p strong {font-size:1.133em} - -/* 데이터 - 검색결과 */ -.ser_kwd {color: #f96262;} -.search-result-num {display:block; text-align: center; font-size:22px; color:#7e7e7e; font-weight:500; letter-spacing: -1px; margin-bottom:30px; padding-top: 40px;} -.search-result-num .ser_kwd {color:#f96262;} - -/* main tab */ -.main_tabWrap {position:relative; overflow:hidden; margin: 0 auto; box-sizing: border-box;} -.main_tab {margin-bottom:18px; position: relative; width: 100%; height: 55px; margin: 0 auto 30px; text-align: center;} -.main_tab ul.tab03 {position:relative; width:100%; height:55px; padding:0; margin:0 auto; text-align: center;} -.main_tab ul.tab03 > li {display:inline-block; position:relative; margin:0; height:55px; width:190px;} -.main_tab ul.tab03 > li a {width:100%; display:block; color:#666; font-size:18px; font-weight:500; line-height:55px; text-align:center; background-color:#f1f7f9; border-radius:55px;} -.main_tab ul.tab03 > li a:hover {text-decoration:none; line-height:55px; background-color:#f1f7f9; color:#0098d1;} -.main_tab ul.tab03 > li.active a {line-height:55px;color:#fff; border-color:#0098d1; background-color:#0098d1;} -.main_tab ul.tab03 > li.active a:hover {} -.tab_content {position:relative; background:transparent; padding:0;} -.main_tab li a:first-child {margin-left: 0px;} - -/* 키워드 조회 */ -.keyword_view {position:relative; width:100%;} -.keyword_wrap {position: relative; width:100%; padding:28px 0 20px;} -.keyword_wrap:after {content:''; display:block; clear:both;} -.keyword_left {float:left; position: absolute; border-right:1px solid #ccc; padding: 28px 10px 10px 0; box-sizing: border-box; top: 0; left: 0; width: 275px; height:100%; min-height:220px; overflow-y: auto; margin-right: 30px;} -.keyword_right {position: relative; float:right; width:75%; min-height: 470px; box-sizing: border-box; margin-left: 305px; padding: 0; background-color: #fff;} -.keyword_left .keyword_list li a {display: block; height:48px; line-height: 48px; border:1px solid #ccc; border-radius: 5px; margin-bottom:10px; font-size: 16px; font-weight:500; color:#848484; text-align: center;} -.keyword_left .keyword_list li a:hover, .keyword_left .keyword_list li a:active {border:1px solid #ccc; color:#1d68dc; font-weight:600;} -.keyword_left .keyword_list li a.on {height:46px; border:2px solid #1d68dc; color:#333; font-weight:600; border-radius: 5px;} -.keyword_body {background:#fff; width:100%; overflow: hidden;} -.keyword_right .searchkeywordList li {border:1px solid #ccc; padding: 20px 25px; margin-bottom:10px;} -.keyword_right .searchkeywordList li:hover {border:1px solid #2a6fe8; cursor:pointer;} -.keyword_right .searchkeywordList li .tit {position: relative; margin-bottom:5px; font-size:22px; color:#333; font-weight:400;} -.keyword_right .searchkeywordList li .tit .bookmark {position: absolute; top:-2px; right: 0; padding-left: 26px; text-indent:-9999px; background: url(../images/main/ico_clipping.png) left center no-repeat;} -.keyword_right .searchkeywordList li .tit .bookmark_on {position: absolute; top:-2px; right: 0; padding-left: 26px; text-indent:-9999px; background: url(../images/main/ico_clipping_on.png) left center no-repeat;} -.keyword_right .searchkeywordList li .desc {display:block; width:100%; height:40px; line-height:1.3; font-size:15px; color:#5c5c5c; font-weight:300; margin-bottom:5px;overflow:hidden; display: -webkit-box; text-overflow:ellipsis;-webkit-line-clamp: 2;-webkit-box-orient: vertical;} -.keyword_right .searchkeywordList li .top_kwd { font-size:14px; color:#333; font-weight:300;} -.keyword_right .searchkeywordList li .date { font-size:14px; color:#aaa9a9; font-weight:300;} - -/* 더보기 버튼 */ -.list_more {margin-top:10px; text-align:center;} -.btn_more {display:inline-block; width:96px; height:36px; line-height:34px; color:#515151; text-align:center; font-size:14px; cursor:pointer; padding:0 10px 0 0; border-radius: 36px; border:1px solid #ccc; background: #f5f5f5 url('../images/main/ico_more_arrow.png') no-repeat 78% 50%;} -.btn_more:hover {border:1px solid #1d68dc; background: #f5f5f5 url('../images/main/ico_more_arrow.png') no-repeat 78% 50%;} - -/* 버튼 그룹 */ -.btn_group {position: relative; text-align:right; margin-top:20px; right:0;} -.btn_group button {height:40px; line-height:38px; border-radius: 4px; font-size:15px; font-weight:400; padding:0 12px; text-align:center; min-width:50px;} -.btn_group button + button {margin-left:2px} -.btn_group .btn_keyword_add {display:inline-block;padding:0 20px; background-color:#ea4c89; color:#fff; font-weight:500; vertical-align:middle; height: 50px; line-height: 48px; border-radius: 48px; letter-spacing: -0.8px;} -.btn_group .btn_keyword_add:hover {background:#e3408d;} -.btn_keyword {display:inline-block; padding:0 16px; border:1px solid #1d68dc; border-radius: 5px; vertical-align:middle; cursor: pointer; height: 40px; line-height: 38px; font-weight:400; color:#1d68dc; background: #fff;} -.btn_keyword:hover {color:#fff; border:1px solid #1d68dc; background:#1d68dc;} -.ico_blank_dark {width:12px; height:12px; background-image:url('../images/main/keword_ico_del.png'); margin-left:13px;} -.btn_keyword:hover .ico_blank_dark.blank_ov {width:12px; height:12px; background-image:url('../images/main/keword_ico_del_ov.png'); margin-left:13px;} -.btn_group .btn-function {min-width:80px; color:#fff; background:#2e389d;}/*등록,확인,저장*/ -.btn_group .btn-function:hover {background:#202a8f;} -.btn_group .btn-etc {min-width:80px; color:#fff; background:#187bfe;}/*수정*/ -.btn_group .btn-etc:hover {background:#055ed3;} -.btn_group .btn-cancel {min-width:80px; color:#fff; background:#474d5c;}/*취소*/ -.btn_group .btn-cancel:hover { background:#3e4452;} - -/* Button style */ -.button, .button a {display:inline-block;cursor:pointer;color:inherit;text-align:center;overflow:visible;background:#fff; padding:0;text-decoration: none !important;vertical-align:middle;white-space:nowrap;margin:0;} -.button:hover {font-weight: normal;} -.button.btn_small {display:inline-block; padding:0px 16px !important;border:1px solid #7e819b;background-color:#7e819b;color:#fff;font-size:14px;font-weight:500;height: 36px;line-height: 34px;border-radius: 3px;vertical-align:middle;cursor: pointer;} -.button.btn_small:hover {border:1px solid #6a6e89;background-color:#6a6e89;} - -/* tbl btn */ -.btn {display:inline-block;height:34px;line-height:32px;font-size:13px;padding:0 12px;text-align:center;border-radius: 3px;} -.btn:hover {text-decoration:none;} -button[class^='btn-']:hover {text-decoration:none;} -.btn-copy,.fileSelectBox .fileinput-button,.fileinput-button {background:#f5f5f5;border:1px solid #bbb;color:#555;} -.btn-copy:hover,td .inlineBox > button:hover,td .inline > button:hover,.fileSelectBox .fileinput-button:hover {background:#7d7d7d;border:1px solid #7d7d7d;color:#fff;} -.btn-save {background:#fff;border:1px solid #508cc3!important;color:#427db4;} -.btn-save:hover{background-color:#508cc3!important;border:1px solid #508cc3;color:#fff!important;} -.btn-print{background:#6eb5b8;border:1px solid #6eb5b8;color:#fff;} -.btn-print:hover{color:#fff;background:#649092;border:1px solid #649092;} -.btn.btn-etc{background-color:#fff;border:1px solid #bbb;color:#333;} -.btn.btn-etc:hover{background-color:#f3f3f3;border:1px solid #999;color:#333;} -.btn-inspect {min-width:62px;border:1px solid #42b382;color:#fff;background:#42b382;}/*장비 점검*/ -.btn-inspect:hover {border:1px solid #2aa36e!important;;background:#2aa36e!important;} -.btn-step {border:1px solid #333faf;color:#333faf;background:#fff;}/*단계*/ -.btn-step:hover {color:#fff;border:1px solid #333faf!important;;background:#333faf!important;} -.btn-report {background:#fff;border:1px solid #fd5120;color:#fd5120;}/*보고서*/ -.btn-report:hover,.btn-report.active {background:#fd5120;border:1px solid #fd5120;color:#fff;} -.btn-result {border:1px solid #646ab7;color:#fff;background:#646ab7;}/*결과*/ -.btn-result:hover {color:#fff;border:1px solid #4e54af!important;;background:#4e54af!important;} -.btn-regist {background:#fff;border:1px solid #2f3bab!important;color:#2f3bab!important;}/*등록*/ -.btn-regist:hover {background:#2733a1!important;border:1px solid #2733a1!important;color:#fff!important;} -.btn-modifi {background:#fff;border:1px solid #2da873!important;color:#1e9e67;}/*수정*/ -.btn-modifi:hover {background:#229f69!important;border:1px solid #229f69!important;color:#fff!important;} -.w-sm{min-width:50px;} -.btn-open-helplayer{width:71px;height:30px;background:url(../images/common/btnimg-help.png) no-repeat;} -.btn-open-helplayer span{text-indent:-999999em!important;font-size:0!important;line-height:0!important;} -/* button size */ -.btn.md{height:28px;line-height:24px;font-size:11px;padding:0 5px;} -.btn.sx{height:24px;line-height:20px;font-size:11px;padding:0 5px;} - -/* table info */ -.tbl_info {position:relative; height:36px;line-height:36px; margin-bottom:5px; display: flex; -webkt-display: flex; -moz-display: flex; align-content: space-between; align-items: center;} -.tbl_info {width: 100%; position: relative; height: 35px; line-height: 35px; display: inline-block; margin-bottom: 5px;} -.tbl_info:after {content:''; display:block; clear:both;} -.tbl_info .left_Area {position: relative; text-align: left; float:left;} -.tbl_info .right_Area {box-sizing: border-box; float:right;} -.tbl_info .left_Area ul li {display:inline-block; font-size: 16px; font-weight: normal; color: #333; letter-spacing: -0.7px;} -.tbl_info .left_Area ul li .txt_total {color:#f96262; padding:0 2px 0 4px; font-weight: 500;} -.tbl_info .right_Area .sel_box {display: inline-block; position: absolute; right: 0;} -.tbl_info .right_Area .sel_box select {border:0; outline: none; font-size:14px; color:#555; padding:0 30px 0 10px; width:100%; height:36px; line-height:34px; border:1px solid #ccc; cursor: pointer; background: #fff url(../images/common/ico_sel_arrow.png) no-repeat right 50%; background-size:20px 8px;} -.essential {display:inline-block; color:#f93c4e; font-size: 16px; line-height: 12px; vertical-align: text-top; padding:0 3px 0 4px;} - -/* Table list */ -.tbl_list {position:relative; width:100%; border-top: 1px solid #334263;} -.table-x-scrollable {overflow-x: scroll;} -.table {width: 100%; table-layout: fixed; border-bottom: 1px solid #cbccd3; background-color: #fff; margin-bottom:15px;} -.table thead th {border-bottom: 1px solid #d5d4d4; } -.table thead th, .table tbody th {padding:3px 8px; vertical-align: middle; font-size:13.5px; font-weight:400; color:#112469; text-align:center; background: #f3f5fd;} -.table thead th:last-child, .table th:last-child, .table td:last-child {border-right: 0;} -.table th, .table td {padding: 3px 8px; vertical-align: middle; height: 36px; text-align: center; word-break: break-all; -ms-word-break: break-all; border-right: 1px solid #ddd; border-bottom: 1px solid #ddd;} -.table tbody td {vertical-align:middle; font-size:13.5px; color:#333; font-weight: 300; text-align:center; word-break: break-all; white-space: normal;} -.table tbody td a {text-align:left; font-size:13.5px; color:#333; overflow: hidden; white-space: nowrap;text-overflow: ellipsis;-o-text-overflow: ellipsis;-ms-text-overflow: ellipsis; display:block;} -.table tbody td a:hover {color:#0d2ea6; text-decoration: none;} -.table td button {height:32px;line-height:32px;} -.table td .btn-normal {background-color:#fff;border:1px solid #bbb;color:#333;height:32px;line-height:30px;} -.table td .btn-normal:hover {background-color:#f3f3f3;border:1px solid #999;color:#333;} -.table tbody tr.notice_area {background: #fef6f8 !important; font-weight:500;} -.table + .table {margin-top:20px;} -.badge_notice {display:inline-block; text-align:center; color:#ff4e50; font-size:13px; font-weight:400; background:#fff; border: 1px solid #ff4e50; border-radius: 22px; min-width: 46px; height: 22px; line-height: 20px; box-sizing: border-box;} - -/* paging */ -.pagination {position: relative; display: block; text-align:center; margin: 25px auto 0;} -.pagination li {display: inline-block; vertical-align: middle; letter-spacing:-2px; text-align:center;} -.pagination li a {display: block; text-decoration: none; color: #333; font-size:13px; word-break: keep-all; -ms-word-break: keep-all; width:32px; min-width: 32px; height: 32px; line-height:30px; border-radius: 5px; border: solid 1px #ccc; background: #fff;} -.pagination li a.first_page {display:inline-block;text-indent:-9999px; background:#fff url('../images/common/ico_page_first.png') no-repeat 50% 50%;font-size:0; width:15px;height:32px; box-sizing: border-box;} -.pagination li a.pre_page {display:inline-block;text-indent:-9999px; background:#fff url('../images/common/ico_page_pre.png') no-repeat 50% 50%;font-size:0; width:15px;height:32px; margin-right:10px;box-sizing: border-box;} -.pagination li a.next_page {display:inline-block;text-indent:-9999px; background:#fff url('../images/common/ico_page_next.png') no-repeat 50% 50%;font-size:0; width:15px;height:32px; margin-left:10px; box-sizing: border-box;} -.pagination li a.end_page {display:inline-block;text-indent:-9999px; background:#fff url('../images/common/ico_page_last.png') no-repeat 50% 50%;font-size:0; width:15px;height:32px; box-sizing: border-box;} -.pagination li a:hover, -.pagination li span:hover, -.pagination li a:focus, -.pagination li span:focus {color: #0d2ea6; border-color: #0d2ea6;} -.pagination .active a, -.pagination .active span, -.pagination .active a:hover, -.pagination .active span:hover, -.pagination .active a:focus, -.pagination .active span:focus {z-index: 2; color: #fff; background-color: #595959; border-color: #595959; cursor: default;} -.pagination li a.on {z-index: 2; color: #fff;background-color: #595959; border-color: #595959; cursor: default;} - -/* View/Form table */ -.bbs_view {position:relative; width:100%; border-top: 1px solid #334263;margin-bottom: 30px;} -.tbl_form {width:100%; border:0; background-color: #fff; border-bottom: 0; table-layout:fixed; border-collapse: separate; margin-bottom:20px;} -.tbl_form th, .tbl_form td {vertical-align: middle;} -.tbl_form th {padding:6px 10px; height: 38px; text-align:center; border-bottom: 1px solid #ccc; border-right: 1px solid #ccc; background: #f3f5fd; font-size: 13.5px; font-weight: 500; color: #112469; letter-spacing:-0.5px;} -.tbl_form th.non_bg {background: #fff; } -.tbl_form td {padding:6px 10px; height: 38px; text-align:left; font-size:14px; color:#333; border-right: 1px solid #ccc; border-bottom: 1px solid #ccc;} -.tbl_form thead th:last-child, .tbl_form th:last-child, .tbl_form td:last-child {border-right: 0;} -.tbl_form thead th {padding:2px 10px 2px 10px; height: 34px; text-align:center; border-bottom: 1px solid #ccc; border-right: 1px solid #ccc; background: #f3f5fd; font-size: 13.5px; font-weight: 500; color: #112469; letter-spacing:-0.5px;} -.tbl_form td label {vertical-align:top;padding-right:10px;} -.tbl_form input[type="text"] {} -.tbl_form select {width:100%;} -.tbl_form textarea {/*width:98%;*/} -.tbl_form input.form-control {width: 100%;} -.tbl_form td img {vertical-align:middle;} -.tbl_form td .form_inline {display: inline-block; float: left; box-sizing: border-box;} -.tbl_form td .form_group {display: inline-block; position: relative; width: 100%; max-width: 100%;box-sizing: border-box;} -.tbl_form td .form_group span {box-sizing: border-box; position: relative; display: inline-block;} -.tbl_form td .form_group em {display: inline-block;padding-left: 8px;padding-right: 8px;font-size: 14px;} -/*.tbl_form td .form_group em input + label {margin-right: -6px; margin-left: -4px;display: inline-block;}*/ -.tbl_form td .form_inline .label, .tbl_form td .form_group .label {display: inline-block;vertical-align:middle; color:#333; font-weight:500;} -.tbl_form th.blank_bg, .tbl_form td.blank_bg {border-left: none;border-right: none; background:#fff; height:5px;} -.text_note {display: inline-block;font-size:12px;color:#f77777;line-height:16px;background:url('../images/common/ico_info.png') no-repeat 0 50%;padding-left:18px;} -.tbl_form button.ico_btn_search {display:inline-block;width: 26px;height: 24px;background: url('../images/common/ico_td_search.png') no-repeat 0 0; margin-left: 2px;text-indent:-9999px;font-size:0;cursor:pointer;} -.tbl_form .datepicker {width:100%;} -.tbl_form .date_group {display:inline-block;position:relative;} -.tbl_form .date_group i {display:inline-block;width:16px;color:#000;text-align:center;font-size:13px;} -button.ico_btn_search {display:inline-block;width: 26px;height: 24px;background: url('../images/common/ico_td_search.png') no-repeat 0 0; margin-left: 2px;text-indent:-9999px;font-size:0;cursor:pointer;} -button.ico_btn_search:hover {display:inline-block;width: 26px;height: 24px;background: url('../images/common/ico_td_search_ov.png') no-repeat 0 0; margin-left: 2px;text-indent:-9999px;font-size:0;cursor:pointer;} -.table input.text_amount, .tbl_form input.text_amount {text-align: right;padding-right: 5px !important;box-sizing: border-box; -webkit-box-sizing: border-box;-moz-box-sizing: border-box;-o-box-sizing: border-box;} -.tbl_form td button {height: 32px; line-height: 32px;} -.tbl_form .text_box {width: 100%;} -.tbl_form .text_box textarea {width:95%; overflow-y: hidden; resize: none; border: 1px solid #ccc; border-radius: 4px; padding: 2px 8px; padding-bottom: 0;line-height: 16px;font-size:13px;} - -/* 점검보고서 */ -.report_wrap {position:relative; width:100%; display: flex; -webkt-display: flex; -moz-display: flex; justify-content: space-between;} -.calcBox, .roundBox {position:relative; border: 1px solid #dddddd; border-radius: 6px; padding: 10px 20px; background-color: #fff; margin-top: 10px; align-items: center;} -.ttl {position:relative; font-size:15px; font-weight:500;color:#333;padding-left:15px;margin-right:20px;text-align:left;} -.ttl:before {position:Absolute;content:'';display:block;left:2px;top:50%;transform:translateY(-50%);height:13px;width:5px;background:#29b0fd;border-radius:12px;} -.calcBox textarea.form-control {flex: 1; min-height: 50px; width: 100%;font-size:13px;line-height: 1.5;} -.calcBox .btn.report_sel {height:50px;line-height:48px;background-color:#f38a4a;font-size:13px;color:#fff;font-weight:500;padding:0 15px;border-radius:4px;text-align:center;} -.calcBox .btn.report_sel:hover {background-color:#eb8241;} - -/* 스크롤 */ -#scrollstyle::-webkit-scrollbar-track {border-radius: 0;background-color: #f5f5f5;} -#scrollstyle::-webkit-scrollbar {width: 8px; background-color: #f5f5f5;} -#scrollstyle::-webkit-scrollbar-thumb {border-radius: 0; background-color: #ccc;} -#scrollstyle-x::-webkit-scrollbar-track {border-radius: 0;background-color: #f5f5f5;} -#scrollstyle-x::-webkit-scrollbar {height: 8px; background-color: #f5f5f5;} -#scrollstyle-x::-webkit-scrollbar-thumb {border-radius: 0; background-color: #ccc;} - -/* 검색영역 */ -.search_wrap {width:100%; clear:both; margin:0 auto; text-align:center; overflow: hidden;} -.search_wrap .inner_box {position: relative; width:1400px; margin:0 auto; overflow:hidden;} -.date_group {display:inline-block;position:relative;} -.date_group i {display:inline-block;width:20px;color:#333;text-align:center;font-size:15px;} -.date_group input {height:38px !important; padding:0 12px !important; border: 1px solid #ccc !important; color:#333; border-radius: 4px;} -.btn_calendar {display:inline-block; width: 21px; height: 22px; background: #fff url(../images/common/ico_calendar.png) no-repeat 94% 55%; cursor: pointer; padding-right: 16px;} -.btn_calendar span {display:inline-block; text-indent:-9999px;} -.date_group .btn_mainSearch {display:block;position:absolute;top:0;right:0;width:41px;height:41px;text-indent:-9999em; background: url(../images/main/btn_ico_search.png) no-repeat center center;border:0px none;box-sizing:border-box;} -.date_group .btn_search {display:inline-block; vertical-align:middle;font-size:0; width:41px; height:41px; background: url(../images/main/btn_ico_search.png) no-repeat 0 0; margin-left: 10px;} -.search_box {position:relative; width:100%; padding: 0px 0 0;margin: 0 auto;} -.search_box .searchBox_inner {width:645px; height:50px; display:block; position:relative; border-bottom: 3px solid #1e1e1e; margin:0 auto 10px;} -.search_box .searchBox_inner label {width:100%; height:50px; font-size:20px; text-align:left; font-weight:100; color:#fff; line-height:50px; padding:0; display:inline-block; box-sizing:border-box; position:absolute; top:0; left:0; opacity:0.5;} -.search_box .searchBox_inner input {width:100%; height:50px; background-color:transparent; font-size:18px; text-align:left; color:#282828; line-height:20px; padding:16px 40px 16px 0; display:inline-block; border:0; box-sizing:border-box;} -.search_box .searchBox_inner input::placeholder {font-size:18px; text-align:left; color:#b6b6b6;} -.search_box button {position: absolute;top:15px;right:0;width: 23px;height: 22px;font-size:0;background:url(../images/main/btn_ico_search.png) no-repeat;} -.search.on .search_wrap {display: inline-block; visibility:visible; opacity:1; height: auto;} -.search.on > a{ visibility: hidden; opacity:0;} -.search .ex { display:inline-block; width:auto; text-align: center; margin:0 auto;} -.ex {position:relative; display:inline-block; width:100%; height:48px; line-height:46px; padding:0; margin: 0 auto; text-align:center; background: #2646a6;} -.ex .ex_inner {position: relative; width:1400px; margin:0 auto; overflow:hidden;} -.ex .ex_inner .ex_tit {display: inline-block; font-size: 15px; font-weight: 500; color:#d2e2ff; padding:3px 0 5px 0; margin-right: 15px; line-height: 1; vertical-align: middle;} -.ex .ex_inner a {display: inline-block; font-size: 15px; font-weight: 300; color:#d2e2ff; line-height: 1;} -.ex .ex_inner a:before {content: ""; display: inline-block; width: 1px; height: 12px; background-color:#afc1e9; vertical-align: middle; margin:0 12px;} -.ex .ex_inner a:nth-child(2):before {display: none;} - -/* search_box_sub */ -.search_box_sub {position:relative; width:100%; padding: 20px 0; margin: 0 auto 25px; border:1px solid #b4d0dd; background:#f2fbff;} -.search_box_sub .searchBox_inner {width:100%; height:47px; display:block; position:relative; margin:0 auto; text-align: center;} -.search_box_sub .searchBox_inner input[type=text] {width:50%; height:47px; border:1px solid #ccc; color:#1b263c; font-size:18px; line-height:19px; padding:15px 10px 10px 10px; display:inline-block; box-sizing:border-box;} -.search_box_sub .searchBox_inner input::placeholder {font-size:17px; text-align:left; color:#b6b6b6;} -.search_box_sub .searchBox_inner .search_submit {position:relative;display:inline-block;background-color:#1b263c;vertical-align:middle;text-align:center; margin-left:5px;} -.search_box_sub .searchBox_inner .search_submit input[type='submit'] {color:#fff; font-size:15px;font-weight:500; min-width:84px; height:47px; padding: 0 20px;} - -/*----------- 레이어팝업 -----------*/ -[class^='sp-layer-popup'],.ydp-mlayer-popup {position:absolute;top:0;left:0;z-index:999999;width:100%;height:100%} -[class^='sp-layer-popup'] .wrap-layer-bg,.ydp-mlayer-popup .wrap-layer-bg {position:fixed;z-index:110;width:100%;height:100%;background-color:#333;opacity:0.7} -[class^='sp-layer-popup'] .popupbox,.ydp-mlayer-popup .popupbox {position:fixed;top:50%;left:50%;z-index:120;border:1px solid #ccc;background-color:#fff;box-sizing:border-box;border-radius:0;} -[class^='sp-layer-popup'] .popupbox section {position:relative;padding:25px} -.popupbox {position:fixed;top:50%;left:50%;z-index:120;background-color:#fff;box-sizing:border-box} -.popupbox section {position:relative;padding:25px} - -/* 팝업상세 */ -.ydp-mlayer-popup .popupbox {border:0; border-radius: 5px; border: 5px solid #2646a6} -.popupbox .pb-head {height: 75px; background-color: #2646a6;} -.popupbox .pb-head h2 b {color:#fff; font-size:24px; font-weight:600; line-height:68px; margin-left:30px;} -.popupbox .pb-head .btn-close-setting {display:block; position:absolute; top:30px; right:35px;z-index:125;width:16px;height:16px;background: url(../images/common/ico_pop_close.png)no-repeat; text-indent: -9999px;} -.popupbox .pb-body {position: relative; padding: 25px 30px 5px; background-color: #fff;} -.popupbox .pb-body article {margin-left:0px;} -.popupbox .pb-body h3 {font-size:20px; color:#474d5c; padding:10px 0 15px;} -.popupbox .pb-body .keyword_add_wrap {position: relative; display: inline-block; vertical-align:top; padding-bottom:20px; border-bottom:1px solid #e0e0e0;} -.popupbox .pb-body .keyword_add_wrap a {float:left; display: block; margin:0 8px 8px 0;} -.ydp-mlayer-popup li label span {font-size:15px; color:#282828;} -.ydp-mlayer-popup .btn-Area {padding-top:15px;text-align:center; bottom:0; display:flex;-webkt-display:flex;-moz-display:flex;justify-content:center;border-top:1px dashed #ccc; height:70px; width:100%; margin:0 auto;} -.ydp-mlayer-popup .btn-Area button {height:50px;line-height:48px; border-radius: 50px; font-size:18px;font-weight:500;padding:0 12px;text-align:center;min-width:50px;} -.ydp-mlayer-popup .btn-Area button + button {margin-left:5px} -.ydp-mlayer-popup .btn-Area .btn-save {width:100px; color:#fff; background:#eb4c97;} -.ydp-mlayer-popup .btn-Area .btn-save:hover {color:#fff;background:#e2428d;} -.ydp-mlayer-popup .btn-Area .btn-cancel {width:100px; color:#fff; background:#474d5c;} -.ydp-mlayer-popup .btn-Area .btn-cancel:hover {color:#fff; background:#3e4452;} - -/* 키 카테고리 */ -.education_category {margin:10px 0 15px; text-align: center;} -.education_category ul {display:block; position:relative; width:100%; font-size:0; line-height:0;} -.education_category ul:before {display:block; position:absolute; width:1px; height:100%; background:#ff0000; z-index:10;} -.education_category .category_item {display:inline-block;position:relative;width:calc(100% / 6);height:48px;box-sizing:border-box;margin-left: 10px; margin-bottom: 10px;} -.education_category .category_item:nth-child(n+1) {margin-left:10px;} -.education_category .category_item a {display: table; width:100%; height:100%; border:1px solid #ccc; background-color:#fff; font-size:15px; line-height:48px; text-align:center; color:#868686; border-radius: 10px;} -.education_category .category_item:nth-child(n+6) a {} -.education_category .category_item a span {display:table-cell;font-size:15px;line-height:18px;vertical-align:middle;} -.education_category ul .category_item .active {background-color:#639df3;color:#fff;border-bottom: 0;} - -/* searchArea - 검색 */ -.searchArea {position:relative; background-color:#fff; border:1px solid #d5d7df; padding:15px 150px 8px 25px; border-radius: 8px; margin-bottom:25px;} -.searchArea table {position:relative;} -.searchArea th,.searchArea td {padding-bottom:5px;height:36px;} -.searchArea th {position:relative; text-align:left; padding-right:10px;} -.searchArea th:before {content:'';display:inline-block;height:4px;width:4px;border-radius:50px;position:Relative;top:-1px;background:#0d1e84;vertical-align:middle;margin-right:5px;} -.searchArea th label {color:#112469;font-size:14px;font-weight:500;} -.searchArea td {padding-right:20px;} -.inlineBox, .inline {display: flex; -webkt-display: flex; -moz-display: flex; align-items: center;} -.searchArea td .inlineBox {display: flex; -webkt-display: flex; -moz-display: flex; align-items: center;} -.searchArea td .form_group {display: flex; -webkt-display: flex; -moz-display: flex;align-items: center;} -.searchArea input[type='text'].form-control, .searchArea select.form-control, select.form-control {width:100%;} -.searchArea .form-control.set-btn-md {width:Calc(100% - 70px);} -.searchArea select.form-control.year {width:30%;} -.searchArea td .form-control + label.txt {margin:0 5px; word-break:keep-all; -ms-word-break:keep-all;} -.searchArea select.form-control.month {width:20%; min-width:45px;} -.searchArea .btnArea {position: absolute; top: 40%; right: 20px; flex-direction: column-reverse;} -.searchArea .btnArea [class^='btn-'] {display:block; height:36px;line-height:34px;color:#fff;font-size:14px;font-weight:400; padding:0 16px; width:88px; text-align:center; margin: 3px 0;border-radius: 4px;} -.searchArea .btnArea .btn-search,.uSearchArea .l-search .btn-search {background-color:#2747d0; border:1px solid #2747d0;} -.searchArea .btnArea .btn-search:hover,.uSearchArea .l-search .btn-search:hover {background-color:#193ac1;} -.searchArea .btnArea button + button {margin-bottom:0px;} -.searchArea .set-datepicker {width:120px;} -.searchArea.single-row {padding-right:100px;} -.searchArea.single-row .btnArea,.uSearchArea .btnArea {margin-top:-15px;flex-direction:row-reverse;} -.searchArea.single-row [class^='btn-'] {display:inline-block;} -.searchArea.single-row button + button {margin-bottom:0px; margin-right:5px;} -.searchArea + .listToparea .l-Top-info dt, .searchArea + .listToparea .l-Top-info dd {line-height:30px;margin-top:0;} -[class^='sp-layer-popup'] .searchArea.single-row {padding-right:60px;} -.searchArea.sm td {padding-right:15px;} -.listToparea > * {height:30px;align-items:center;} - -/* datepicker */ -.set-datepicker {position:relative; display:inline-block; width:140px; height:38px; background:#fff; /*padding-right:26px;*/ border:1px solid #ccc;} -.set-datepicker > input {height:38px; line-height:38px; border:0; background:none; width:100%; font-size:14px;} -.set-datepicker.disabled {background:#eee; opacity:.5; filter:alpha(opacity=50); cursor:default;} -.set-datepicker.disabled input {position:relative;} -td .set-datepicker > button,td .set-datepicker > button:hover,.set-datepicker > button,.set-datepicker > button:hover {background: #fff url(../images/common/ico_calendar.png) no-repeat;width:21px;height:22px;position:absolute;right:6px;top:7px;border:0!important;background-color:transparent;text-indent:-9999px!important;font-size:0!important;} -.set-datepicker.disabled:after {content:'';display:block;height:100%;width:100%;position:absolute;top:0;left:0;z-index:5;} -.set-datepicker + label.txt {margin: 0 5px;} -td label.txt {margin: 0 5px;} -.set-datepicker.sm {width:120px;} - -/* modal 팝업 */ -.dim-layer {display: none; position: fixed; _position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1000;} -.dim-layer .dimBg {position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #000; opacity: .5; filter: alpha(opacity=50);} -.dim-layer .pop-layer {display: block; position: absolute;} -.pop-layer {display: none; position: fixed; top: 50%; left: 50%; width: auto; height: auto; background-color:#0e1872; z-index: 1000 !important; padding:2px;} -.modal-large {width: 960px;} -.modal-md {width: 760px;} -.modal-mini {width: 500px;} -.modal-content {position:relative; background-color:#fff; -webkit-background-clip: padding-box; background-clip: padding-box; outline: 0;} -.modal-header {width:100%;height:52px;background-color:#0e1872;} -.modal-header:after {content:''; display:block; clear:both;} -.modal-header .close {margin-top: -2px;} -.modal-header .pop_close {float: right;margin-right: 20px;} -.modal-header .pop_close a {display: block; background: url('../images/common/ico_pop_close.png')no-repeat; width:18px; height:18px; font-size: 0; margin-top: 20px;} -.modal-header .pop_title {text-align:left; font-size:20px; font-weight:500; color:#fff; line-height: 52px; text-indent: 25px; display: inline-block;} -.modal-body {position: relative; padding: 12px 25px 20px; background-color:#fff;} -.modal-body h3 {font-size:20px; color:#474d5c; padding:10px 0 15px;} -.modal-body .keyword_add_wrap {position: relative; display: inline-block; vertical-align:top; padding-bottom:20px; border-bottom:1px solid #e0e0e0;} -.modal-body .keyword_add_wrap a {float:left; display: block; margin:0 8px 8px 0;} -.modal-footer {padding: 15px 0 15px; text-align: center;border-top: 1px solid #ddd;} -.modal-footer .btn + .btn {margin-bottom: 0; margin-left: 3px;} -.modal-footer .btn-group .btn + .btn {margin-left: -1px;} -.modal-footer .btn-block + .btn-block {margin-left: 0;} -.button.btn_pop_cancel {font-size:15px; color:#333; font-weight:500; background:#fff; border:1px solid #ccc;min-width:80px; padding:0 20px; height:40px; line-height:38px; border-radius: 4px;} -.button.btn_pop_cancel:hover {background-color: #f5f6f9;border: 1px solid #9f9f9f;} -.button.btn_pop_save {font-size:15px; color:#fff; font-weight:500; background:#1d64c5; min-width:80px; padding:0 20px; height:40px; line-height: 38px; border-radius: 4px;} -.button.btn_pop_save:hover {color:#fff; background:#185bb7;} -.popup-body {position: relative; padding: 0 20px 15px;background-color:#fff;} - -/* page-title */ -.page-title {position:relative; height: 52px; line-height:52px;padding:0 20px; background-color: #0e1872; margin-bottom:20px;} -.page-title span {font-size:20px; font-weight:500; color:#fff !important;} -.page-title > .pop_close {float: right; margin-right: 10px;padding-top: 13px;} -.page-title > .pop_close a {display: block; background: url('../images/common/ico_pop_close.png') no-repeat; width: 18px; height: 18px; font-size: 0; margin-top: 7px;} -.page-title + article, .page-title + .content-title,.content-title + .sec-title {margin-top:15px;} - -/*챠트영역*/ -.chart_box {display: flex; justify-content: space-between; align-items: center; padding: 20px 0;} -.chart_wrap {position: relative; background-color: #fff; border: 1px solid #d5d7df; padding: 5px 25px; border-radius: 8px; margin-bottom: 25px;} -.prompt_box {position: relative;box-sizing: border-box; margin-bottom:10px;} -.prompt_box .Prompt_wrap {} -.prompt_box .Prompt_wrap .inner {} -.prompt_box .Prompt_wrap .inner:after {content:'';clear:both;display:block;} -.prompt_box .Prompt_wrap .inner .item {display: inline-block; float: left; vertical-align: top;} -.prompt_box .Prompt_wrap .inner .item .link {position: relative; display: block; background-color: #fff; color: #333; font-size: 16px; font-weight: 300; letter-spacing: -0.06em; line-height: 1.3; width: 100%; height: 100%; border: 1px solid #3a4aba; border-radius: 8px; text-align: left; padding: 9px 15px 9px; transition: all 0.3s;} -.prompt_box .Prompt_wrap .inner .item .link:hover, -.prompt_box .Prompt_wrap .inner .item .link:focus {background-color: #fff; border-color: #222f8b; box-shadow: 0 5px 4px rgba(135, 149, 163, 0.2);-ms-box-shadow: 0 5px 4px rgb(135 149 163 / 20%);border-style: dashed;} -.prompt_box .Prompt_wrap .inner .item .link .text {display: inline-block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width:88%; vertical-align: middle;} -.prompt_box .Prompt_wrap .inner.n2 {width: calc(100% + 20px); margin: 0 -10px;} -.prompt_box .Prompt_wrap .inner.n2 .item {width: calc(100% / 2 - 20px); margin: 0 10px;margin-bottom: 8px;} -.prompt_box .Prompt_wrap .inner.n2 .item .s_tit {display: block;font-size: 15px;font-weight: 400;color: #333; margin-bottom: 10px;text-align:center;} -.prompt_box .Prompt_wrap .inner.n2 .item .g-map-area {border:1px solid #e6e6e6; background-color:#f3f5fd; min-height:50px;width:100%;margin-top: 3px;} - -/* login */ -.logback {width:100%;height:100%;background-image:url('../images/main/login_bg.gif'); background-size:100% 1000px;left: 0;top: 0;position: fixed;background: #f4f5f8;} -.logback h1 {top:0;height:42px;line-height:42px;margin-top: 8%;text-align:center;display:block;} -.logback h3 {top:0;height:40px;line-height:24px;padding-top: 20px;text-align:center;display:block;font-size:16px;font-weight:400;color:#555;margin:0 auto;} -.logback .login_box {margin:0 auto;width:500px; height:auto;clear:both;margin-top:1.2%;background:#fff;-webkit-border-radius: 26px;-moz-border-radius: 26px;-khtml-border-radius: 26px;border-radius:26px; box-shadow: 0px 1px 10px #bcbfdb; -moz-box-shadow: 0px 1px 10px #bcbfdb; -webkit-box-shadow: 0px 1px 10px #bcbfdb;} -.logback .login_box:after {content:""; clear:both; display:block} -.logback .login_box .loginWrap {width:70%; margin:0 auto;text-align:center;padding:55px 0;} -.loginWrap .input_wrap {width:100%;text-align:center;clear:both;} -.loginWrap .input_wrap input[type=text], .loginWrap .input_wrap input[type=password] {text-indent:10px;-webkit-border-radius: 5px;-moz-border-radius: 5px;-khtml-border-radius: 5px;border-radius:5px;} -.loginWrap .input_wrap input::placeholder {color:#b6b6b6 !important;} -.loginWrap .input_wrap .txt_id {width:100%; height:50px; font-size:16px; border:1px solid #ddd; margin-bottom:10px;} -.loginWrap .input_wrap .txt_pw {width:100%; height:50px; font-size:16px; border:1px solid #ddd;} -.loginWrap .input_wrap .save_id {float:left; color:#333; padding:25px 0;} -.loginWrap .input_wrap .save_id input[type=checkbox] + label {cursor: pointer; position: relative; font-size: 14px; padding-left: 30px;} -.loginWrap .input_wrap .save_id input[type=checkbox]+ label:before { content: ""; display: inline-block; width: 19px; height: 19px; margin-right: 20px; position: absolute; left: 0; top: 0px; background-color: #fff; border:solid 1px #ccc; border-radius: 19px;} -.loginWrap .input_wrap .save_id input[type=checkbox]:checked + label:before {content: ""; font-size: 15px; font-weight:800; color: #fff; border:solid 1px #2e389d;line-height:19px;background:#2e389d url('../images/common/ico_check_w.png') no-repeat 50% 50%;} -.input_wrap .btn_login {display:inline-block;width:100%;height:65px;line-height:65px; margin-bottom:10px; background:#2e389d; color:#fff; text-align:center; font-weight:400; font-size:18px; border-radius: 6px;} -.input_wrap .btn_login:hover {background:#2f3dc6;} -.hidden {font-size: 0; width:0 !important; height: 0; line-height: 0; overflow: hidden; visibility: hidden; width: 0; position:absolute;} - -/* index */ -.main_img {width: 100%; height: 280px; max-width: 1400px; margin: 0 auto 40px; position: relative; display: block; box-sizing: border-box; padding:30px 20px 30px 90px;border-radius: 38px 0 0 0; background: #3842a9 url('../images/main/main_img.png') no-repeat 93% 100%;} -.main_img:after {content:''; display:block; position:absolute; bottom:0; left:0; width:160px; height:280px; background:url('../images/main/main_img_left.png') no-repeat 0 0;} -.main_img .l_txt {display:block;padding-top:50px; font-size: 45px; font-weight:700; color: #fff; line-height:1.8em;padding-left:50px;} -.main_img .m_txt {display:block;width: 100%; font-size: 22px; font-weight:400; color: #bfdfed; padding-left:50px;} - -/* 오늘의 할일, 업무공지 */ -.week_news_wrap {padding:0;width:100%;max-width: 1400px;margin: 0 auto; box-sizing: border-box;} -.week_news {overflow: hidden; width:100%; height:300px; padding:20px 30px; background: #fff; box-sizing: border-box; border-radius: 20px; box-shadow: 0px 1px 10px #d8dadf; -moz-box-shadow: 0px 1px 10px #d8dadf; -webkit-box-shadow: 0px 1px 10px #d8dadf;} -.week_news h1 {position: relative;display: inline-block;width:100%;margin-bottom:15px; font-size: 23px;height: 36px;color:#222046;font-weight:600; } -.week_news h3 {float:right;position: relative;display: inline-block;font-size: 15px;color:#333;font-weight:500;margin-top:-5px;margin-right:-5px;background:url('../images/main/ico_m_bul.gif') no-repeat 0 48%; padding-left:10px;} -.week_news h1 a.btn_more {float:right;position: relative; display:inline-block; padding:6px 0 0; width:16px; height:16px; background:url('../images/main/ico_more.png') no-repeat 0 0; margin-top: 7px; font-size:0; text-indent:-9999px;border: 0;} -.week_news h1 a.btn_more:hover {color:#333;} -.week_news h3 select {min-width:80px;height:34px !important;border: 1px solid #dadce1 !important;margin-left:4px;} -.week_news .news_list {width:100%; position: relative;} -.week_news .news_list li {line-height: 34px; position: relative; float:left; width:100%; display: flex; flex-wrap: wrap; justify-content: space-between;} -.week_news .news_list li:last-child {border-bottom: 0;} -.week_news .news_list li + li {margin-top: 9px;} -.week_news .news_list li a {display:block; position: relative; padding-left:13px; padding-right: 20px; font-size: 17px;} -.week_news .news_list li a:before {content: ""; position: absolute; left: 0; top: 50%; width: 4px; height: 4px; margin-top: -2px; background-color: #6e6e6e; border-radius: 100%;} -.week_news .news_list li a .work_tit {float:left; display:inline-block; max-width: 350px; color:#333; font-size:18px; font-weight:400; overflow:hidden; white-space:nowrap; text-overflow:ellipsis; -o-text-overflow:ellipsis;} -.week_news .news_list li a .noti_tit {float:left; display:inline-block; max-width: 350px; color:#333; font-size:18px; font-weight:400; overflow:hidden; white-space:nowrap; text-overflow:ellipsis; -o-text-overflow:ellipsis;} -.week_news .news_list li a .noti_tit:hover {color:#000;} -.week_news .news_list li a .ico_new {font-size:8px; color:#fff; width:17px; height:17px; background-color: #ff4e50; border-radius: 50%; font-weight: 400; display:inline-block; text-align: center; line-height: 15px; margin-left: 5px; vertical-align: middle; position: absolute; right:0; top:50%; transform: translateY(-50%);} -.week_news .news_list li .r_txt {float: right; line-height: 32px; color:#777; font-size:17px; } -.week_news .news_list li .w_name {color:#444; padding-right:20px;} -.week_news .news_list li .not_noti {float:left; display:inline-block; width: 100%; color:#888; font-size:17px; font-weight:400; text-align:center;} - -/******************************************* 통합검색(20250312 추가) ******************************************************************/ -.srarch-wrap {width: 100%; position: relative; margin:0 auto; box-sizing: border-box; padding-top:20px;} -.search_form_wrap {position:relative; background: #f6f6f6; padding: 15px 20px 15px;text-align:center; margin:0 auto 25px; box-sizing: border-box;} -.search_form_wrap:after {content: "";display:block;clear:both;} -.search_form_wrap {background: #fff; border: 1px solid #d5d7df; padding: 20px 25px 25px; text-align:center; margin:0 auto 30px; box-sizing: border-box; border-radius:10px;} -.search_form_wrap .search_inner span.form_input input {width:100%; min-width: 500px; height: 45px; font-size:16px; color: #333; font-weight: 300; line-height: 32px; padding: 0 20px; border:2px solid #333; border-radius: 38px;} -.search_form_wrap .search_inner {position: relative; margin-left: auto; margin-right: auto;} -.search_form_wrap .search_inner span {display: inline-block; vertical-align: middle; height:45px;} -.search_form_wrap .search_inner span.form_input input {width:100%; font-size:15px;} -.search_form_wrap .search_inner span.form_btn {margin-left:3px; width: 1%;vertical-align: middle;} -.search_form_wrap .search_inner span.form_btn button:before {display: inline-block;width: 0;} -.search_form_wrap .search_inner span.form_btn .btn_search {width:94px; height: 45px; color: #fff; font-size: 18px;font-weight: 400; padding:0; background: #2e389d url(../images/common/btn_search_m.png) no-repeat 25% 52%; vertical-align: middle; text-indent: 22px; border-radius: 38px;} -.search_form_wrap .search_inner span.form_btn .btn_search:hover {background: #242e93 url(../images/common/btn_search_m.png) no-repeat 25% 52%;} -.search_form_wrap .search_inner .form_label {display:inline-block; color: #333; font-size: 16px; font-weight: 400; letter-spacing: -1px; padding: 0 12px 0 0;} -.search_form_wrap .search_inner [class$="_label"] {display: inline-block; color: #333;} -.search_form_wrap .search_inner label {vertical-align: middle;} - -/* search_head */ -.search_head {position:relative; margin:15px auto;} -.search_head_result {display: block; text-align: center; font-size: 18px; color: #333; font-weight: 400; line-height: 26px;} -.search_head_result em {background-color:transparent; vertical-align:top; color:#f53333; font-weight:400; padding:0 4px;} -.search_head_result strong {vertical-align:top; color:#f53333; font-size:20px; font-weight:400;} - -/* 통합검색 리스트 */ -.search-list-box {position:relative; display: block; width:100%; margin:20px 0;} -.search-list-box:after {content:""; clear:both; display:block} -.search-list-box .search-tit {background:#f3f5fd; border: 1px solid #e9ebf3; border-bottom: 1px solid #a1aee1; border-radius: 6px; padding: 10px 15px; font-size:16px;} -.search-list-box .search-tit strong {position: relative; color: #333; font-size: 17px; font-weight: 400; margin-right: 20px;} -.search-list-box .search-tit strong:before {content:''; display: block; position: absolute; width: 1px; height: 15px; background: #c3c8dd; right: -13px; top: 50%; margin-top: -6px;} -.search-list-box .search-tit .keyword {color:#f53333; font-weight:500; padding: 0 3px;} -.search-list-box .search-tit .keyword_num {color:#f53333; font-weight:500; padding: 0 3px;} -.search-list-box .btn-right {text-align:right; margin:20px 0 30px;} -.search-list-box .btn-right .ico-arr-black {transform: rotate(-90deg); margin-left:5px; opacity:0.8; height:7px;} -.search-list-box .btn-right .button_more {display:inline-flex; height:34px; padding:0 14px; line-height: 33px; font-size: 13.5px; color:#333; font-weight:400; vertical-align:middle; border:1px solid #ccc; text-decoration:none; border-radius:5px; background-color:#fff; transition:opacity 0.3s, color 0.3s;} -.search-list-box .btn-right .button_more:hover{border:1px solid #2e389d;color:#2e389d;} -.search_list {position:relative; width:100%; margin:0 auto; display:block; box-sizing: border-box;} -.search_list:after {content:""; clear:both; display:block} -.search_list>ul {position:relative; display:block;} -.search_list>ul>li {display: inline-block; width: 100%; padding: 18px 0; border-bottom:1px solid #ccc;} -.search_list .search_cont {display: flex; justify-content: space-between; padding: 0 0; width: 100%; vertical-align: top;} -.search_list .search_cont .cont-tit {position: relative; padding:0 20px 0 15px; box-sizing: border-box; display: block; overflow: hidden; margin-right: 20px;} -.search_list .search_cont .cont-tit:after {content: ''; display: block; clear: both;} -.search_list .search_cont .cont-tit > a {width: 100%; height: 28px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; font-size:16.5px; color: #333; font-weight:500; letter-spacing: -0.5px; line-height: 28px;} -.search_list .search_cont .cont-tit > a:hover {color: #121212;} -.search_list .search_cont .cont-tit .route {font-size: 14px; color:#555; line-height: 19px; display: inline-block;} -.search_list .search_cont .cont-info {position: relative;display: -webkit-box; display: -ms-flexbox; display: inline-block; margin-left: auto; padding-left: 15px; padding-top: 5px; min-width: 200px; text-align: left;} -.search_list .search_cont .cont-info:after {content: ''; display: block; clear: both;} -.search_list .search_cont .cont-info:before {content:''; display: block; position: absolute; width: 1px; height: 27px; background: #cbcdd5; left: -10px; top: 30%;} -.search_list .search_cont .cont-info .source_organ {font-size:14px; color:#555; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block;} -.search_list .search_cont .cont-info .source_data {display: block; font-size:14px; color:#888; line-height: 25px;} -.search_list .mark, .search_list .cont .mark {color:#3d4acb;} -.search_list a:hover .mark {color:#2634c0;} - -/* 첨부파일 */ -.uploader {position: relative; display:block; margin: 8px 0 5px; border: 1px dashed #cbcdd5; padding: 8px 13px; border-radius: 6px; overflow: hidden;} -.uploader:after {content: ''; display: block; clear: both;} -.uploader > li {display: flex; -webkt-display: flex; -moz-display: flex; font-size:13px; color:#555; line-height:19px;} -.uploader > li > a {display: inline-block;} -.uploader > li > a span {font-size:13px; color:#555; line-height:19px;} -.uploader > li > a:hover span {color:#121212;} - -/* 첨부파일 아이콘 */ -.uploader > li > a >i[class^='ico-']{display:inline-block;width:17px;height:17px;vertical-align:middle;margin-top:-3px;margin-right:5px;background-repeat:no-repeat;text-indent:-999999em!important;font-size:0!important;line-height:0!important;} -.ico-file {display:inline-block;width:13px;height:15px;vertical-align:middle;background-image:url(../images/common/ico-file.png);} -.ico-pdf {display:inline-block;width:17px;height:17px;background-image:url(../images/common/ico-pdf.png);} -.ico-excel {display:inline-block;width:17px;height:17px;background-image:url(../images/common/ico-excel.png);} -.ico-ppt {display:inline-block;width:17px;height:17px;background-image:url(../images/common/ico-ppt.png);} -.ico-hwp {display:inline-block;width:16px;height:17px;vertical-align:middle;background: url(../images/common/ico-hwp.png);} -.ico-img {display:inline-block;width:16px;height:17px;vertical-align:middle;background: url(../images/common/ico-img.png);} -.ico-zip {display:inline-block;width:16px;height:17px;vertical-align:middle;background: url(../images/common/ico-zip.png);} - diff --git a/front/src/main/resources/static/css/layout.css.20250611 b/front/src/main/resources/static/css/layout.css.20250611 deleted file mode 100644 index a2624e8b..00000000 --- a/front/src/main/resources/static/css/layout.css.20250611 +++ /dev/null @@ -1,667 +0,0 @@ -@charset "utf-8"; - -#wrap {width:100%;margin:0 auto;} -.row::after {content:""; display:block; clear:both;} -.cell {float:left; box-sizing:border-box;} - -/* Layout */ -#container {position:relative; width:100%; margin:0 auto; padding-bottom: 50px; background: #f7f8fa;} -#container:after {display:block;clear:both;content:''} -#content {position: relative; width:100%; margin:0 auto;} -.content {position: relative; width:1400px; margin:0 auto;} -#container .side_Wrap {position:relative; float:left; width:220px; padding-top:20px;} -#container .body_wrap {float: right; width: calc(100% - 250px);} -#container .body_wrap .inner {width:100%; margin:0 auto; padding: 20px 25px 30px; border: 1px solid #e0e0e0; background-color: #fff;} - -/* header */ -.header_wrap {position: relative; width:100%; height: 120px; background:#fff;} -.header_wrap .header-inner {position:relative; width:1400px; min-width: 1400px; height:100%; margin:0 auto;} -.header_wrap .header-top {width: 100%; height: 60px; margin: 0 auto; display: inline-block;} -.header_wrap .header-top > .inner {position: relative; width: 1400px; height: 60px; margin: 0 auto;} - -/* util */ -.header_wrap .header-top .util {float:right; height:60px; margin-top:16px; right:0; display: inline-block;} -.header_wrap .header-top .util li {position: relative; display: inline-block; vertical-align: middle; height:28px; line-height:28px; color:#666; font-size:13px;margin-left: 20px;} -.header_wrap .header-top .util li > img {vertical-align: top;} -.header_wrap .header-top .util li > a {font-size:13px; color:#333;} -.header_wrap .header-top .util li .name {display: inline-block; padding-left:18px; margin-right: 4px;color:#2e389d;font-weight:500;} -.header_wrap .header-top .util li .name:before {position:absolute; content:''; display:block; background: url('../images/main/ico_user.png') 0 0 no-repeat;left:0;top:7px;width:14px;height:14px;} -.header_wrap .header-top .util li .logout {display: inline-block; padding-left:18px; margin-right: 14px;} -.header_wrap .header-top .util li .logout:hover {color:#2e3aaf;} -.header_wrap .header-top .util li .logout:before {position:absolute; content:''; display:block; background: url('../images/main/ico_logout.png') 0 0 no-repeat;left:0;top:7px;width:14px;height:14px;} -.header_wrap .logo {position:relative; display:inline-block; height:35px;width:211px;top:13px;left:0px;cursor:pointer; text-indent: -9999px; background:url(../images/main/logo.png) 0 center no-repeat;} - -/* hearder 검색(20240424) 추가 */ -.header_wrap .header-top .util li .total_search {position: relative; top:-4px; left:0; width:380px; font-size:0; line-height:0;} -.header_wrap .header-top .util li .total_search h2 {opacity:0; overflow:hidden; position:absolute; top:0; left:0; width:1px; height:1px;} -.header_wrap .header-top .util li .total_search .search_panel {position:relative; z-index:40; width:100%; margin-right:auto; margin-left:auto;} -.header_wrap .header-top .util li .total_search .search_bar {overflow:hidden; position:relative; padding-right:35px; border: 0;} -.header_wrap .header-top .util li .total_search .search_query {display:block; width:100%; height:36px; padding-right:7px; padding-left:8px; border: 2px solid #3d4db1; border-radius: 6px; background-color:#fff; color:#333; font-size:14px; line-height:17px;} -.header_wrap .header-top .util li .total_search .search_query input {border:none;} -.header_wrap .header-top .util li .total_search .search_submit {display:block; position:absolute; top:0; right:12px; bottom:0; border:0 !important; border-radius: 0 6px 6px 0; width:40px; height:36px; margin-top:auto; margin-bottom:auto; background:#3d4db1 url('../images/common/btn_search_m.png') no-repeat center center; text-indent: -9999px; background-size: 15px 15px;} - -/*오픈*/ -.util li a.mysetOpen {width:115px; padding:6px 15px 0 18px; background:url(../images/main/ico_util_sel.png) no-repeat 100% 14px; margin-right: 14px;} -.util li a.mysetOpen.active {background:url(../images/main/ico_util_sel.png) no-repeat 100% 14px;} -.util li a.mysetOpen:before {content:""; display:block; background:url(../images/main/ico_user.png) no-repeat 0 3px; width:100%; height:100%; position:absolute;left:0;top:5px;} -.util li div.my_sett {width:105px; background:#fff; display:none; position:absolute; padding: 5px 0; border-radius: 5px; z-index: 10; box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.2); border:1px solid #ddd;} -.util li div.my_sett a {display:block; color:#333; font-size:13px; padding:0px 0 3px; text-align:center; border-radius: 5px;} -.util li div.my_sett a:hover, -.util li div.my_sett a:focus, -.util li div.my_sett a.active {color:#253fc3;} - -/* gnb */ -.header_wrap .wrap-nav {position: relative; display: inline-block; width:100%; height:55px; margin: 0 auto; background:#2e389d; border-top:1px solid #e6e8eb;border-bottom:1px solid #e6e8eb;} -.header_wrap .wrap-nav:after {display:block;clear:both;content:''} -.header_wrap .wrap-nav .gnb {position:relative; width:100%; height:55px; margin:0 auto; padding-right:80px; display: inline-block;} -.header_wrap .wrap-nav .gnb > li {position:relative; float: left; height:55px;} -.header_wrap .wrap-nav .gnb > li + li {margin-left:30px;} -.header_wrap .wrap-nav .gnb > li > a {font-size:17px;font-weight:500;color:#fff;height:55px;line-height:53px; display: block; position:relative;} -.header_wrap .wrap-nav .gnb > li > a:after {content:""; display:block; clear:both; width: 1px; height: 14px; background-color: #8590cb; position: absolute; top: 20px; left:-14px; margin-top:0;} -.header_wrap .wrap-nav .gnb > li:first-child > a:after {display: none;} -.header_wrap .wrap-nav .gnb > li > a:hover {color:#39d6fd;text-decoration:none;} - -/* 전체메뉴 */ -.header_wrap .all_btn {position:absolute; top:0; right:0;} -.header_wrap .all_btn:after {clear:both; display:block; content:"";} -.header_wrap .all_btn button:first-child {margin-left:0;} -.header_wrap .all_btn .toggle-menu {width:50px; height:55px; background:url("../images/main/btn_hamb.png") no-repeat center center; background-size:25px 20px; position:relative; top:0; font-size:0;} -.allMenu {display:none; width:100%; height:100%; min-height:850px; position:fixed; top:61px; right:0; z-index:6; background-color:#fff; padding:0; text-align: left; z-index:2; margin:0 auto; overflow: hidden;} -.allMenu:before {content:''; position:fixed; width:100%; height:100%; left:0; top:90%; bottom:0; background:rgba(0, 0, 0, 0.5); z-index:0;} -.allMenu .user-wrap {width:100%; height:55px; padding-left:30px; position:relative; background:#2e389d; z-index:99; margin: 0 auto; text-align: center;} -.allMenu .user-wrap .menu-inner {position:relative; width:1400px; max-width: 1400px; height:100%; margin:0 auto;} -.allMenu .user-wrap .menu-logo {position: relative; display:inline-block; margin-left: -130px; padding:0; width:140px; height:100%; background:url('../images/main/logo_w.png') no-repeat 0;} -.allMenu .user-wrap .logo-txt {position: absolute; top:10px; font-size:23px; color:#fff; font-weight: 500;} -.allMenu .m-gnb {display:block; width:100%; height:850px; max-width:1400px; margin:0 auto; padding:35px 0 35px 0; z-index:99;overflow-y: auto;} -.allMenu .m-gnb ul {overflow:hidden; } -.allMenu .m-gnb ul li a {position:relative; font-size:15px; color:#111; font-weight: 500; } -.allMenu .m-gnb ul li a:focus {text-decoration:none;} -.allMenu .m-gnb ul li a:only-child:after {display:none;} -.allMenu .m-gnb > ul > li {float:left; width:18%; min-height:0px; margin: 0 15px 30px 0;} -.allMenu .m-gnb > ul > li > a {display:block; padding:12px 0; font-size:20px; color:#2e389d; font-weight: 500; text-align: center;border:1px dashed #2e389d;border-radius: 7px;} -.allMenu .m-gnb > ul > li > a:hover {color:#2e389d; text-decoration:none;} -.allMenu .m-gnb > ul > li > a .link {display:inline-block; width:12px; height:12px; margin-left:3px; background-size:100%;} -.allMenu .m-gnb > ul > li.curr > a, -.allMenu .m-gnb > ul > li > a:hover {text-decoration:none;} -.allMenu .m-gnb ul.depth-2 {overflow:hidden; padding-bottom:0px; margin-top:10px;} -.allMenu .m-gnb ul.depth-2 > li > a {display:block; font-size:15px; font-weight:400; line-height:30px; color:#444; padding-left:12px;} -.allMenu .m-gnb ul.depth-2 > li > a:before {content:''; position:absolute; top:15px; left:0; width:6px; height:1px; background-color:#777;} -.allMenu .m-gnb ul.depth-2 > li > a:hover {color:#2d39b5; text-decoration:none;} -.allMenu .gnb-close {position:absolute; margin:0; top:0; right:9.2%;z-index:99;} -.allMenu .gnb-close button {width:50px; height:55px; display:block; background:url("../images/main/btn_close.png") no-repeat center; background-size:21px 21px; text-indent:-9999px;} - -/* lnb menu */ -.side_Wrap h2 {overflow: hidden; display: flex; align-items: center; justify-content: center; width: 100%; height: 98px; font-size: 23px; font-weight: normal; line-height: 1; color: #fff; background: #333faf; border-radius: 30px 0 0 0; box-sizing: border-box;} -#lnb {float: left; width: 100%;} -#lm {width: 100%;} -#cssmenu, -#cssmenu ul, -#cssmenu ul li, -#cssmenu ul li a {margin: 0;padding: 0;border: 0;list-style: none;line-height: 1;display: block;letter-spacing:-0.8px;color:#333333;position: relative;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;text-decoration: none;cursor: pointer;} -#cssmenu {width: 100%;} -#cssmenu ul ul {display: none;} -.align-right {float: right;} -.holder {background:none} -.holder::after, .holder::before {display: block;position: absolute;content: "";right: 15px;z-index: 10;background:none} -.holder::after {top: 15px;background:none} -.holder::before {top: 15px;} -#cssmenu > ul > li > a {display: block; position: relative; padding: 15px 15px; font-size: 15px; font-weight: 400; color: #333333; border: 1px solid #ddd; border-top: 0; background:#fff;} -#cssmenu > ul > li > a:before {content:""; display:block; position:absolute; top:50%; right:20px; margin-top:-7px; width:13px; height:13px; background-image:url(../images/common/ico_lnb_1dh.png); background-repeat:no-repeat; transition: all 0s ease 0s } -#cssmenu > ul > li > a:hover:before {background-image:url(../images/common/ico_lnb_1dh_hover.png);} -#cssmenu > ul > li > a:last-child {border-bottom: none;} -#cssmenu > ul > li > a:hover {color: #2e389d;} -#cssmenu > ul > li.active > a, -#cssmenu > ul > li.open > a {display: block; position: relative; color: #fff; border: 0; background: #252e89;} -#cssmenu > ul > li.open > a:before {content:""; display:block; position:absolute; top:50%; right:20px; margin-top:-7px; width:13px; height:13px; background:#252e89 url(../images/common/ico_lnb_1dh_on.png); background-repeat:no-repeat; transition: all 0s ease 0s } -#cssmenu ul ul {background:#f7f9fc;border: 1px solid #ddd;border-top: 0; padding: 7px 0 10px;} -#cssmenu ul ul li a {position: relative; display: block; padding: 8px 0 8px 25px; font-size:14px; font-weight:500; color:#424242 !important; letter-spacing:-0.6px; font-weight: normal;} -#cssmenu ul ul li a:before {display:block; position:absolute; top:14px; left:15px; width:4px; height:4px; background-color:#a9a9ab; content:'';} -#cssmenu ul ul li a.on {color: #2e389d !important; font-weight: normal;} -#cssmenu ul ul li a.on:before {display:block; position:absolute; top:14px; left:15px; width:4px; height:4px; background-color:#2e389d; content:'';} -#cssmenu > ul > li.open > ul {display:block;} -#cssmenu ul ul li:hover a, -#cssmenu ul ul li.open a, -#cssmenu ul ul li.active a {position: relative; display: block; color: #2e389d !important;} -#cssmenu ul ul li:hover a:before,#cssmenu ul ul li.open a:before,#cssmenu ul ul li.active a:before {content:''; display:block; position:absolute; top:14px; left:15px; width:4px; height:4px; background-color:#2e389d;} -#cssmenu ul ul li.active a:after, #cssmenu ul ul li.open a:after, #cssmenu ul ul li a:hover:after {border-color: none;} - -/* title */ -.main_titWrap {display: flex; justify-content: space-between; align-items: center; padding: 20px 0;} -.main_titWrap > * {height: 28px; align-items: center;} -.main_titWrap h3 {position: relative; color:#333; font-size:23px; font-weight:bold; text-align: left; display: flex; -webkt-display: flex; -moz-display: flex;} - -.content-title {font-size:16px; font-weight:500;color:#1a2377;position:relative;padding-left:14px;margin: 15px 0 10px;text-align:left;} -.content-title:before {position:Absolute;content:'';display:block;left:0;top:10px;transform:translateY(-50%);width: 6px; height: 15px;background: #1f287c;border-radius: 3px;margin-top: 0;} - -/* location */ -.location {position:absolute; right:0; box-sizing:border-box;display: flex; -webkt-display: flex; -moz-display: flex;} -.location-cont {} -.location-cont .route_navi {position:relative;} -.location-cont .route_navi li {float: left; line-height:26px; font-size: 15px; color:#555; font-weight:normal; letter-spacing:-0.05em; padding:0 10px 0 16px; background: url('../images/common/route_arrow.png') no-repeat 0 8px;} -.location-cont .route_navi li .home {display: inline-block; background: url('../images/common/icon_home.png') no-repeat 0 0; padding: 0; width: 12px; height:16px; font-size:0; text-indent:-9999px;} -.location-cont .route_navi li.home a span {float: left;font-size: 0; height: 0;line-height: 0;overflow: hidden;position: absolute;visibility: hidden;width: 0;} -.location-cont .route_navi li a:hover {color:#333;} -.location-cont .route_navi li:last-child {line-height: 26px; font-weight:500; padding-right: 0;} -.location-cont .route_navi li:first-child {background:none;} - -/*footer*/ -#footer {width:100%;background:#3c3d46; clear:both; height:60px; display: flex; justify-content: space-between; align-items: center;} -#footer .box {position: relative; width:1400px; margin:0 auto;} -#footer .box p.fLogo {float:left; margin:15px 25px 15px 0;} -#footer .box address {color:#afafaf; font-size:13px; margin-top:15px; text-transform:uppercase; text-align:left;} -#footer .box p.copy {color:#9b9ba0; font-size:13px; text-align:left;} -#footer .box .menu {position: absolute; top: 20px; right: 0;} -#footer .box .menu li {display:inline-block;} -#footer .box .menu li:not(:last-child) {position:relative; margin-right:1.2em;} -#footer .box .menu li:not(:last-child):after {content:""; position:absolute; top:6px; right:-0.8em; width:1px; height:8px; background-color:#8b8a8a;} -#footer .box .menu li a {color:#afafaf; font-size:14px;} -#footer .box .menu li a:hover {color:#377fed;} - -/* 감색 목록 */ -.searchResultWrap {position:relative; padding:20px 0; margin-bottom: 30px; border-top:1px solid #777;} -.searchResultWrap .ser_kwd {color:#f96262;} -.searchResultWrap .title {color: #222; font-size:24px; background:url(../images/main/ico_penbul.png) no-repeat 0 9px; padding-left:24px; padding-bottom: 25px; border-bottom:1px dotted #ccc;} -.searchResultWrap .title span {font-size:18px;} -.searchResultWrap .title .btn-more {display: inline-block; width: 60px; margin:0; padding-left:20px; border:0;} -.searchResultWrap .title .btn-more a {display: block; font-size:14px; color:#868686; text-decoration:none; background-color:transparent; background: url(../images/main/ico_more01.png) no-repeat right 50%;} -.searchResultWrap .title .sel_box {display: inline-block; position: absolute; right: 0;} -.searchResultWrap .title .sel_box select {border:0; outline: none; font-size:15px; color:#555; padding:0 30px 0 10px; width:100%; height:40px; line-height:38px; border:1px solid #ccc; cursor: pointer; background: #fff url(../images/main/ico_select.png) no-repeat 90% 50%; background-size: 7px 4px;} -.searchResultList li {border-bottom:1px dotted #ccc; padding: 25px 0 25px;} -.searchResultList li .tit {position: relative; margin-bottom:5px; font-size:22px; color:#333; font-weight:400;} -.searchResultList li .tit .bookmark {position: absolute; top:-2px; right: 0; padding-left: 26px; text-indent:-9999px; background: url(../images/main/ico_clipping.png) left center no-repeat;} -.searchResultList li .tit .bookmark_on {position: absolute; top:-2px; right: 0; padding-left: 26px; text-indent:-9999px; background: url(../images/main/ico_clipping_on.png) left center no-repeat;} -.searchResultList li .desc {display:block; width:100%; height:40px; line-height:1.3; font-size:15px; color:#5c5c5c; font-weight:300; margin-bottom:5px;overflow:hidden; display: -webkit-box; text-overflow:ellipsis;-webkit-line-clamp: 2;-webkit-box-orient: vertical;} -.searchResultList li .top_kwd { font-size:14px; color:#333; font-weight:300;} -.searchResultList li .date { font-size:14px; color:#aaa9a9; font-weight:300;} -.searchResultList li.keyword_arrow {position: relative; background:#f8f9fb; border-bottom:1px solid #777; box-sizing: border-box; padding: 0 18px !important; height:36px !important; line-height:34px; margin-bottom:20px;} -.searchResultList li.keyword_arrow .txt_word {display: inline-block; width:80%; left:0;} -.searchResultList li.keyword_arrow span { font-size:14px; color:#2a6fe8; } -.searchResultList li.keyword_arrow .btn-more {display: inline-block; width: 60px; margin:0; padding-left:20px; position: absolute; right: 18px;} -.searchResultList li.keyword_arrow .btn-more a {display: block; font-size:14px; color:#868686; text-decoration:none; background-color:transparent; background: url(../images/main/ico_more01.png) no-repeat right 50%;} -.searchResultWrap .not_data {margin:0 auto; text-align: center; line-height:40px;} -.searchResultWrap .not_data p {display: inline-block; font-size:18px; color:#333; background-size: 40px 40px; padding-left:50px; background:url(../images/main/not_list_img.png) 0 center no-repeat;} -.notSearchResult p {margin-bottom:15px;font-weight:bold;font-size:1.071em} -.notSearchResult p strong {font-size:1.133em} - -/* 데이터 - 검색결과 */ -.ser_kwd {color: #f96262;} -.search-result-num {display:block; text-align: center; font-size:22px; color:#7e7e7e; font-weight:500; letter-spacing: -1px; margin-bottom:30px; padding-top: 40px;} -.search-result-num .ser_kwd {color:#f96262;} - -/* main tab */ -.main_tabWrap {position:relative; overflow:hidden; margin: 0 auto; box-sizing: border-box;} -.main_tab {margin-bottom:18px; position: relative; width: 100%; height: 55px; margin: 0 auto 30px; text-align: center;} -.main_tab ul.tab03 {position:relative; width:100%; height:55px; padding:0; margin:0 auto; text-align: center;} -.main_tab ul.tab03 > li {display:inline-block; position:relative; margin:0; height:55px; width:190px;} -.main_tab ul.tab03 > li a {width:100%; display:block; color:#666; font-size:18px; font-weight:500; line-height:55px; text-align:center; background-color:#f1f7f9; border-radius:55px;} -.main_tab ul.tab03 > li a:hover {text-decoration:none; line-height:55px; background-color:#f1f7f9; color:#0098d1;} -.main_tab ul.tab03 > li.active a {line-height:55px;color:#fff; border-color:#0098d1; background-color:#0098d1;} -.main_tab ul.tab03 > li.active a:hover {} -.tab_content {position:relative; background:transparent; padding:0;} -.main_tab li a:first-child {margin-left: 0px;} - -/* 키워드 조회 */ -.keyword_view {position:relative; width:100%;} -.keyword_wrap {position: relative; width:100%; padding:28px 0 20px;} -.keyword_wrap:after {content:''; display:block; clear:both;} -.keyword_left {float:left; position: absolute; border-right:1px solid #ccc; padding: 28px 10px 10px 0; box-sizing: border-box; top: 0; left: 0; width: 275px; height:100%; min-height:220px; overflow-y: auto; margin-right: 30px;} -.keyword_right {position: relative; float:right; width:75%; min-height: 470px; box-sizing: border-box; margin-left: 305px; padding: 0; background-color: #fff;} -.keyword_left .keyword_list li a {display: block; height:48px; line-height: 48px; border:1px solid #ccc; border-radius: 5px; margin-bottom:10px; font-size: 16px; font-weight:500; color:#848484; text-align: center;} -.keyword_left .keyword_list li a:hover, .keyword_left .keyword_list li a:active {border:1px solid #ccc; color:#1d68dc; font-weight:600;} -.keyword_left .keyword_list li a.on {height:46px; border:2px solid #1d68dc; color:#333; font-weight:600; border-radius: 5px;} -.keyword_body {background:#fff; width:100%; overflow: hidden;} -.keyword_right .searchkeywordList li {border:1px solid #ccc; padding: 20px 25px; margin-bottom:10px;} -.keyword_right .searchkeywordList li:hover {border:1px solid #2a6fe8; cursor:pointer;} -.keyword_right .searchkeywordList li .tit {position: relative; margin-bottom:5px; font-size:22px; color:#333; font-weight:400;} -.keyword_right .searchkeywordList li .tit .bookmark {position: absolute; top:-2px; right: 0; padding-left: 26px; text-indent:-9999px; background: url(../images/main/ico_clipping.png) left center no-repeat;} -.keyword_right .searchkeywordList li .tit .bookmark_on {position: absolute; top:-2px; right: 0; padding-left: 26px; text-indent:-9999px; background: url(../images/main/ico_clipping_on.png) left center no-repeat;} -.keyword_right .searchkeywordList li .desc {display:block; width:100%; height:40px; line-height:1.3; font-size:15px; color:#5c5c5c; font-weight:300; margin-bottom:5px;overflow:hidden; display: -webkit-box; text-overflow:ellipsis;-webkit-line-clamp: 2;-webkit-box-orient: vertical;} -.keyword_right .searchkeywordList li .top_kwd { font-size:14px; color:#333; font-weight:300;} -.keyword_right .searchkeywordList li .date { font-size:14px; color:#aaa9a9; font-weight:300;} - -/* 더보기 버튼 */ -.list_more {margin-top:10px; text-align:center;} -.btn_more {display:inline-block; width:96px; height:36px; line-height:34px; color:#515151; text-align:center; font-size:14px; cursor:pointer; padding:0 10px 0 0; border-radius: 36px; border:1px solid #ccc; background: #f5f5f5 url('../images/main/ico_more_arrow.png') no-repeat 78% 50%;} -.btn_more:hover {border:1px solid #1d68dc; background: #f5f5f5 url('../images/main/ico_more_arrow.png') no-repeat 78% 50%;} - -/* 버튼 그룹 */ -.btn_group {position: relative; text-align:right; margin-top:20px; right:0;} -.btn_group button {height:40px; line-height:38px; border-radius: 4px; font-size:15px; font-weight:400; padding:0 12px; text-align:center; min-width:50px;} -.btn_group button + button {margin-left:2px} -.btn_group .btn_keyword_add {display:inline-block;padding:0 20px; background-color:#ea4c89; color:#fff; font-weight:500; vertical-align:middle; height: 50px; line-height: 48px; border-radius: 48px; letter-spacing: -0.8px;} -.btn_group .btn_keyword_add:hover {background:#e3408d;} -.btn_keyword {display:inline-block; padding:0 16px; border:1px solid #1d68dc; border-radius: 5px; vertical-align:middle; cursor: pointer; height: 40px; line-height: 38px; font-weight:400; color:#1d68dc; background: #fff;} -.btn_keyword:hover {color:#fff; border:1px solid #1d68dc; background:#1d68dc;} -.ico_blank_dark {width:12px; height:12px; background-image:url('../images/main/keword_ico_del.png'); margin-left:13px;} -.btn_keyword:hover .ico_blank_dark.blank_ov {width:12px; height:12px; background-image:url('../images/main/keword_ico_del_ov.png'); margin-left:13px;} -.btn_group .btn-function {min-width:80px; color:#fff; background:#2e389d;}/*등록,확인,저장*/ -.btn_group .btn-function:hover {background:#202a8f;} -.btn_group .btn-etc {min-width:80px; color:#fff; background:#187bfe;}/*수정*/ -.btn_group .btn-etc:hover {background:#055ed3;} -.btn_group .btn-cancel {min-width:80px; color:#fff; background:#474d5c;}/*취소*/ -.btn_group .btn-cancel:hover { background:#3e4452;} - -/* Button style */ -.button, .button a {display:inline-block;cursor:pointer;color:inherit;text-align:center;overflow:visible;background:#fff; padding:0;text-decoration: none !important;vertical-align:middle;white-space:nowrap;margin:0;} -.button:hover {font-weight: normal;} -.button.btn_small {display:inline-block; padding:0px 16px !important;border:1px solid #7e819b;background-color:#7e819b;color:#fff;font-size:14px;font-weight:500;height: 36px;line-height: 34px;border-radius: 3px;vertical-align:middle;cursor: pointer;} -.button.btn_small:hover {border:1px solid #6a6e89;background-color:#6a6e89;} - -/* tbl btn */ -.btn {display:inline-block;height:34px;line-height:32px;font-size:13px;padding:0 12px;text-align:center;border-radius: 3px;} -.btn:hover {text-decoration:none;} -button[class^='btn-']:hover {text-decoration:none;} -.btn-copy,.fileSelectBox .fileinput-button,.fileinput-button {background:#f5f5f5;border:1px solid #bbb;color:#555;} -.btn-copy:hover,td .inlineBox > button:hover,td .inline > button:hover,.fileSelectBox .fileinput-button:hover {background:#7d7d7d;border:1px solid #7d7d7d;color:#fff;} -.btn-save {background:#fff;border:1px solid #508cc3!important;color:#427db4;} -.btn-save:hover{background-color:#508cc3!important;border:1px solid #508cc3;color:#fff!important;} -.btn-print{background:#6eb5b8;border:1px solid #6eb5b8;color:#fff;} -.btn-print:hover{color:#fff;background:#649092;border:1px solid #649092;} -.btn.btn-etc{background-color:#fff;border:1px solid #bbb;color:#333;} -.btn.btn-etc:hover{background-color:#f3f3f3;border:1px solid #999;color:#333;} -.btn-inspect {min-width:62px;border:1px solid #42b382;color:#fff;background:#42b382;}/*장비 점검*/ -.btn-inspect:hover {border:1px solid #2aa36e!important;;background:#2aa36e!important;} -.btn-step {border:1px solid #333faf;color:#333faf;background:#fff;}/*단계*/ -.btn-step:hover {color:#fff;border:1px solid #333faf!important;;background:#333faf!important;} -.btn-report {background:#fff;border:1px solid #fd5120;color:#fd5120;}/*보고서*/ -.btn-report:hover,.btn-report.active {background:#fd5120;border:1px solid #fd5120;color:#fff;} -.btn-result {border:1px solid #646ab7;color:#fff;background:#646ab7;}/*결과*/ -.btn-result:hover {color:#fff;border:1px solid #4e54af!important;;background:#4e54af!important;} -.btn-regist {background:#fff;border:1px solid #2f3bab!important;color:#2f3bab!important;}/*등록*/ -.btn-regist:hover {background:#2733a1!important;border:1px solid #2733a1!important;color:#fff!important;} -.btn-modifi {background:#fff;border:1px solid #2da873!important;color:#1e9e67;}/*수정*/ -.btn-modifi:hover {background:#229f69!important;border:1px solid #229f69!important;color:#fff!important;} -.w-sm{min-width:50px;} -.btn-open-helplayer{width:71px;height:30px;background:url(../images/common/btnimg-help.png) no-repeat;} -.btn-open-helplayer span{text-indent:-999999em!important;font-size:0!important;line-height:0!important;} -/* button size */ -.btn.md{height:28px;line-height:24px;font-size:11px;padding:0 5px;} -.btn.sx{height:24px;line-height:20px;font-size:11px;padding:0 5px;} - -/* table info */ -.tbl_info {position:relative; height:36px;line-height:36px; margin-bottom:5px; display: flex; -webkt-display: flex; -moz-display: flex; align-content: space-between; align-items: center;} -.tbl_info {width: 100%; position: relative; height: 35px; line-height: 35px; display: inline-block; margin-bottom: 5px;} -.tbl_info:after {content:''; display:block; clear:both;} -.tbl_info .left_Area {position: relative; text-align: left; float:left;} -.tbl_info .right_Area {box-sizing: border-box; float:right;} -.tbl_info .left_Area ul li {display:inline-block; font-size: 16px; font-weight: normal; color: #333; letter-spacing: -0.7px;} -.tbl_info .left_Area ul li .txt_total {color:#f96262; padding:0 2px 0 4px; font-weight: 500;} -.tbl_info .right_Area .sel_box {display: inline-block; position: absolute; right: 0;} -.tbl_info .right_Area .sel_box select {border:0; outline: none; font-size:14px; color:#555; padding:0 30px 0 10px; width:100%; height:36px; line-height:34px; border:1px solid #ccc; cursor: pointer; background: #fff url(../images/common/ico_sel_arrow.png) no-repeat right 50%; background-size:20px 8px;} -.essential {display:inline-block; color:#f93c4e; font-size: 16px; line-height: 12px; vertical-align: text-top; padding:0 3px 0 4px;} - -/* Table list */ -.tbl_list {position:relative; width:100%; border-top: 1px solid #334263;} -.table-x-scrollable {overflow-x: scroll;} -.table {width: 100%; table-layout: fixed; border-bottom: 1px solid #cbccd3; background-color: #fff; margin-bottom:15px;} -.table thead th {border-bottom: 1px solid #d5d4d4; } -.table thead th, .table tbody th {padding:3px 8px; vertical-align: middle; font-size:13.5px; font-weight:400; color:#112469; text-align:center; background: #f3f5fd;} -.table thead th:last-child, .table th:last-child, .table td:last-child {border-right: 0;} -.table th, .table td {padding: 3px 8px; vertical-align: middle; height: 36px; text-align: center; word-break: break-all; -ms-word-break: break-all; border-right: 1px solid #ddd; border-bottom: 1px solid #ddd;} -.table tbody td {vertical-align:middle; font-size:13.5px; color:#333; font-weight: 300; text-align:center; word-break: break-all; white-space: normal;} -.table tbody td a {text-align:left; font-size:13.5px; color:#333; overflow: hidden; white-space: nowrap;text-overflow: ellipsis;-o-text-overflow: ellipsis;-ms-text-overflow: ellipsis; display:block;} -.table tbody td a:hover {color:#0d2ea6; text-decoration: none;} -.table td button {height:32px;line-height:32px;} -.table td .btn-normal {background-color:#fff;border:1px solid #bbb;color:#333;height:32px;line-height:30px;} -.table td .btn-normal:hover {background-color:#f3f3f3;border:1px solid #999;color:#333;} -.table tbody tr.notice_area {background: #fef6f8 !important; font-weight:500;} -.table + .table {margin-top:20px;} -.badge_notice {display:inline-block; text-align:center; color:#ff4e50; font-size:13px; font-weight:400; background:#fff; border: 1px solid #ff4e50; border-radius: 22px; min-width: 46px; height: 22px; line-height: 20px; box-sizing: border-box;} - -/* paging */ -.pagination {position: relative; display: block; text-align:center; margin: 25px auto 0;} -.pagination li {display: inline-block; vertical-align: middle; letter-spacing:-2px; text-align:center;} -.pagination li a {display: block; text-decoration: none; color: #333; font-size:13px; word-break: keep-all; -ms-word-break: keep-all; width:32px; min-width: 32px; height: 32px; line-height:30px; border-radius: 5px; border: solid 1px #ccc; background: #fff;} -.pagination li a.first_page {display:inline-block;text-indent:-9999px; background:#fff url('../images/common/ico_page_first.png') no-repeat 50% 50%;font-size:0; width:15px;height:32px; box-sizing: border-box;} -.pagination li a.pre_page {display:inline-block;text-indent:-9999px; background:#fff url('../images/common/ico_page_pre.png') no-repeat 50% 50%;font-size:0; width:15px;height:32px; margin-right:10px;box-sizing: border-box;} -.pagination li a.next_page {display:inline-block;text-indent:-9999px; background:#fff url('../images/common/ico_page_next.png') no-repeat 50% 50%;font-size:0; width:15px;height:32px; margin-left:10px; box-sizing: border-box;} -.pagination li a.end_page {display:inline-block;text-indent:-9999px; background:#fff url('../images/common/ico_page_last.png') no-repeat 50% 50%;font-size:0; width:15px;height:32px; box-sizing: border-box;} -.pagination li a:hover, -.pagination li span:hover, -.pagination li a:focus, -.pagination li span:focus {color: #0d2ea6; border-color: #0d2ea6;} -.pagination .active a, -.pagination .active span, -.pagination .active a:hover, -.pagination .active span:hover, -.pagination .active a:focus, -.pagination .active span:focus {z-index: 2; color: #fff; background-color: #595959; border-color: #595959; cursor: default;} -.pagination li a.on {z-index: 2; color: #fff;background-color: #595959; border-color: #595959; cursor: default;} - -/* View/Form table */ -.bbs_view {position:relative; width:100%; border-top: 1px solid #334263;margin-bottom: 30px;} -.tbl_form {width:100%; border:0; background-color: #fff; border-bottom: 0; table-layout:fixed; border-collapse: separate; margin-bottom:20px;} -.tbl_form th, .tbl_form td {vertical-align: middle;} -.tbl_form th {padding:6px 10px; height: 38px; text-align:center; border-bottom: 1px solid #ccc; border-right: 1px solid #ccc; background: #f3f5fd; font-size: 13.5px; font-weight: 500; color: #112469; letter-spacing:-0.5px;} -.tbl_form th.non_bg {background: #fff; } -.tbl_form td {padding:6px 10px; height: 38px; text-align:left; font-size:14px; color:#333; border-right: 1px solid #ccc; border-bottom: 1px solid #ccc;} -.tbl_form thead th:last-child, .tbl_form th:last-child, .tbl_form td:last-child {border-right: 0;} -.tbl_form thead th {padding:2px 10px 2px 10px; height: 34px; text-align:center; border-bottom: 1px solid #ccc; border-right: 1px solid #ccc; background: #f3f5fd; font-size: 13.5px; font-weight: 500; color: #112469; letter-spacing:-0.5px;} -.tbl_form td label {vertical-align:top;padding-right:10px;} -.tbl_form input[type="text"] {} -.tbl_form select {width:100%;} -.tbl_form textarea {/*width:98%;*/} -.tbl_form input.form-control {width: 100%;} -.tbl_form td img {vertical-align:middle;} -.tbl_form td .form_inline {display: inline-block; float: left; box-sizing: border-box;} -.tbl_form td .form_group {display: inline-block; position: relative; width: 100%; max-width: 100%;box-sizing: border-box;} -.tbl_form td .form_group span {box-sizing: border-box; position: relative; display: inline-block;} -.tbl_form td .form_group em {display: inline-block;padding-left: 8px;padding-right: 8px;font-size: 14px;} -/*.tbl_form td .form_group em input + label {margin-right: -6px; margin-left: -4px;display: inline-block;}*/ -.tbl_form td .form_inline .label, .tbl_form td .form_group .label {display: inline-block;vertical-align:middle; color:#333; font-weight:500;} -.tbl_form th.blank_bg, .tbl_form td.blank_bg {border-left: none;border-right: none; background:#fff; height:5px;} -.text_note {display: inline-block;font-size:12px;color:#f77777;line-height:16px;background:url('../images/common/ico_info.png') no-repeat 0 50%;padding-left:18px;} -.tbl_form button.ico_btn_search {display:inline-block;width: 26px;height: 24px;background: url('../images/common/ico_td_search.png') no-repeat 0 0; margin-left: 2px;text-indent:-9999px;font-size:0;cursor:pointer;} -.tbl_form .datepicker {width:100%;} -.tbl_form .date_group {display:inline-block;position:relative;} -.tbl_form .date_group i {display:inline-block;width:16px;color:#000;text-align:center;font-size:13px;} -button.ico_btn_search {display:inline-block;width: 26px;height: 24px;background: url('../images/common/ico_td_search.png') no-repeat 0 0; margin-left: 2px;text-indent:-9999px;font-size:0;cursor:pointer;} -button.ico_btn_search:hover {display:inline-block;width: 26px;height: 24px;background: url('../images/common/ico_td_search_ov.png') no-repeat 0 0; margin-left: 2px;text-indent:-9999px;font-size:0;cursor:pointer;} -.table input.text_amount, .tbl_form input.text_amount {text-align: right;padding-right: 5px !important;box-sizing: border-box; -webkit-box-sizing: border-box;-moz-box-sizing: border-box;-o-box-sizing: border-box;} -.tbl_form td button {height: 32px; line-height: 32px;} -.tbl_form .text_box {width: 100%;} -.tbl_form .text_box textarea {width:95%; overflow-y: hidden; resize: none; border: 1px solid #ccc; border-radius: 4px; padding: 2px 8px; padding-bottom: 0;line-height: 16px;font-size:13px;} - -/* 점검보고서 */ -.report_wrap {position:relative; width:100%; display: flex; -webkt-display: flex; -moz-display: flex; justify-content: space-between;} -.calcBox, .roundBox {position:relative; border: 1px solid #dddddd; border-radius: 6px; padding: 10px 20px; background-color: #fff; margin-top: 10px; align-items: center;} -.ttl {position:relative; font-size:15px; font-weight:500;color:#333;padding-left:15px;margin-right:20px;text-align:left;} -.ttl:before {position:Absolute;content:'';display:block;left:2px;top:50%;transform:translateY(-50%);height:13px;width:5px;background:#29b0fd;border-radius:12px;} -.calcBox textarea.form-control {flex: 1; min-height: 50px; width: 100%;font-size:13px;line-height: 1.5;} -.calcBox .btn.report_sel {height:50px;line-height:48px;background-color:#f38a4a;font-size:13px;color:#fff;font-weight:500;padding:0 15px;border-radius:4px;text-align:center;} -.calcBox .btn.report_sel:hover {background-color:#eb8241;} - -/* 스크롤 */ -#scrollstyle::-webkit-scrollbar-track {border-radius: 0;background-color: #f5f5f5;} -#scrollstyle::-webkit-scrollbar {width: 8px; background-color: #f5f5f5;} -#scrollstyle::-webkit-scrollbar-thumb {border-radius: 0; background-color: #ccc;} -#scrollstyle-x::-webkit-scrollbar-track {border-radius: 0;background-color: #f5f5f5;} -#scrollstyle-x::-webkit-scrollbar {height: 8px; background-color: #f5f5f5;} -#scrollstyle-x::-webkit-scrollbar-thumb {border-radius: 0; background-color: #ccc;} - -/* 검색영역 */ -.search_wrap {width:100%; clear:both; margin:0 auto; text-align:center; overflow: hidden;} -.search_wrap .inner_box {position: relative; width:1400px; margin:0 auto; overflow:hidden;} -.date_group {display:inline-block;position:relative;} -.date_group i {display:inline-block;width:20px;color:#333;text-align:center;font-size:15px;} -.date_group input {height:38px !important; padding:0 12px !important; border: 1px solid #ccc !important; color:#333; border-radius: 4px;} -.btn_calendar {display:inline-block; width: 21px; height: 22px; background: #fff url(../images/common/ico_calendar.png) no-repeat 94% 55%; cursor: pointer; padding-right: 16px;} -.btn_calendar span {display:inline-block; text-indent:-9999px;} -.date_group .btn_mainSearch {display:block;position:absolute;top:0;right:0;width:41px;height:41px;text-indent:-9999em; background: url(../images/main/btn_ico_search.png) no-repeat center center;border:0px none;box-sizing:border-box;} -.date_group .btn_search {display:inline-block; vertical-align:middle;font-size:0; width:41px; height:41px; background: url(../images/main/btn_ico_search.png) no-repeat 0 0; margin-left: 10px;} -.search_box {position:relative; width:100%; padding: 0px 0 0;margin: 0 auto;} -.search_box .searchBox_inner {width:645px; height:50px; display:block; position:relative; border-bottom: 3px solid #1e1e1e; margin:0 auto 10px;} -.search_box .searchBox_inner label {width:100%; height:50px; font-size:20px; text-align:left; font-weight:100; color:#fff; line-height:50px; padding:0; display:inline-block; box-sizing:border-box; position:absolute; top:0; left:0; opacity:0.5;} -.search_box .searchBox_inner input {width:100%; height:50px; background-color:transparent; font-size:18px; text-align:left; color:#282828; line-height:20px; padding:16px 40px 16px 0; display:inline-block; border:0; box-sizing:border-box;} -.search_box .searchBox_inner input::placeholder {font-size:18px; text-align:left; color:#b6b6b6;} -.search_box button {position: absolute;top:15px;right:0;width: 23px;height: 22px;font-size:0;background:url(../images/main/btn_ico_search.png) no-repeat;} -.search.on .search_wrap {display: inline-block; visibility:visible; opacity:1; height: auto;} -.search.on > a{ visibility: hidden; opacity:0;} -.search .ex { display:inline-block; width:auto; text-align: center; margin:0 auto;} -.ex {position:relative; display:inline-block; width:100%; height:48px; line-height:46px; padding:0; margin: 0 auto; text-align:center; background: #2646a6;} -.ex .ex_inner {position: relative; width:1400px; margin:0 auto; overflow:hidden;} -.ex .ex_inner .ex_tit {display: inline-block; font-size: 15px; font-weight: 500; color:#d2e2ff; padding:3px 0 5px 0; margin-right: 15px; line-height: 1; vertical-align: middle;} -.ex .ex_inner a {display: inline-block; font-size: 15px; font-weight: 300; color:#d2e2ff; line-height: 1;} -.ex .ex_inner a:before {content: ""; display: inline-block; width: 1px; height: 12px; background-color:#afc1e9; vertical-align: middle; margin:0 12px;} -.ex .ex_inner a:nth-child(2):before {display: none;} - -/* search_box_sub */ -.search_box_sub {position:relative; width:100%; padding: 20px 0; margin: 0 auto 25px; border:1px solid #b4d0dd; background:#f2fbff;} -.search_box_sub .searchBox_inner {width:100%; height:47px; display:block; position:relative; margin:0 auto; text-align: center;} -.search_box_sub .searchBox_inner input[type=text] {width:50%; height:47px; border:1px solid #ccc; color:#1b263c; font-size:18px; line-height:19px; padding:15px 10px 10px 10px; display:inline-block; box-sizing:border-box;} -.search_box_sub .searchBox_inner input::placeholder {font-size:17px; text-align:left; color:#b6b6b6;} -.search_box_sub .searchBox_inner .search_submit {position:relative;display:inline-block;background-color:#1b263c;vertical-align:middle;text-align:center; margin-left:5px;} -.search_box_sub .searchBox_inner .search_submit input[type='submit'] {color:#fff; font-size:15px;font-weight:500; min-width:84px; height:47px; padding: 0 20px;} - -/*----------- 레이어팝업 -----------*/ -[class^='sp-layer-popup'],.ydp-mlayer-popup {position:absolute;top:0;left:0;z-index:999999;width:100%;height:100%} -[class^='sp-layer-popup'] .wrap-layer-bg,.ydp-mlayer-popup .wrap-layer-bg {position:fixed;z-index:110;width:100%;height:100%;background-color:#333;opacity:0.7} -[class^='sp-layer-popup'] .popupbox,.ydp-mlayer-popup .popupbox {position:fixed;top:50%;left:50%;z-index:120;border:1px solid #ccc;background-color:#fff;box-sizing:border-box;border-radius:0;} -[class^='sp-layer-popup'] .popupbox section {position:relative;padding:25px} -.popupbox {position:fixed;top:50%;left:50%;z-index:120;background-color:#fff;box-sizing:border-box} -.popupbox section {position:relative;padding:25px} - -/* 팝업상세 */ -.ydp-mlayer-popup .popupbox {border:0; border-radius: 5px; border: 5px solid #2646a6} -.popupbox .pb-head {height: 75px; background-color: #2646a6;} -.popupbox .pb-head h2 b {color:#fff; font-size:24px; font-weight:600; line-height:68px; margin-left:30px;} -.popupbox .pb-head .btn-close-setting {display:block; position:absolute; top:30px; right:35px;z-index:125;width:16px;height:16px;background: url(../images/common/ico_pop_close.png)no-repeat; text-indent: -9999px;} -.popupbox .pb-body {position: relative; padding: 25px 30px 5px; background-color: #fff;} -.popupbox .pb-body article {margin-left:0px;} -.popupbox .pb-body h3 {font-size:20px; color:#474d5c; padding:10px 0 15px;} -.popupbox .pb-body .keyword_add_wrap {position: relative; display: inline-block; vertical-align:top; padding-bottom:20px; border-bottom:1px solid #e0e0e0;} -.popupbox .pb-body .keyword_add_wrap a {float:left; display: block; margin:0 8px 8px 0;} -.ydp-mlayer-popup li label span {font-size:15px; color:#282828;} -.ydp-mlayer-popup .btn-Area {padding-top:15px;text-align:center; bottom:0; display:flex;-webkt-display:flex;-moz-display:flex;justify-content:center;border-top:1px dashed #ccc; height:70px; width:100%; margin:0 auto;} -.ydp-mlayer-popup .btn-Area button {height:50px;line-height:48px; border-radius: 50px; font-size:18px;font-weight:500;padding:0 12px;text-align:center;min-width:50px;} -.ydp-mlayer-popup .btn-Area button + button {margin-left:5px} -.ydp-mlayer-popup .btn-Area .btn-save {width:100px; color:#fff; background:#eb4c97;} -.ydp-mlayer-popup .btn-Area .btn-save:hover {color:#fff;background:#e2428d;} -.ydp-mlayer-popup .btn-Area .btn-cancel {width:100px; color:#fff; background:#474d5c;} -.ydp-mlayer-popup .btn-Area .btn-cancel:hover {color:#fff; background:#3e4452;} - -/* 키 카테고리 */ -.education_category {margin:10px 0 15px; text-align: center;} -.education_category ul {display:block; position:relative; width:100%; font-size:0; line-height:0;} -.education_category ul:before {display:block; position:absolute; width:1px; height:100%; background:#ff0000; z-index:10;} -.education_category .category_item {display:inline-block;position:relative;width:calc(100% / 6);height:48px;box-sizing:border-box;margin-left: 10px; margin-bottom: 10px;} -.education_category .category_item:nth-child(n+1) {margin-left:10px;} -.education_category .category_item a {display: table; width:100%; height:100%; border:1px solid #ccc; background-color:#fff; font-size:15px; line-height:48px; text-align:center; color:#868686; border-radius: 10px;} -.education_category .category_item:nth-child(n+6) a {} -.education_category .category_item a span {display:table-cell;font-size:15px;line-height:18px;vertical-align:middle;} -.education_category ul .category_item .active {background-color:#639df3;color:#fff;border-bottom: 0;} - -/* searchArea - 검색 */ -.searchArea {position:relative; background-color:#fff; border:1px solid #d5d7df; padding:15px 150px 8px 25px; border-radius: 8px; margin-bottom:25px;} -.searchArea table {position:relative;} -.searchArea th,.searchArea td {padding-bottom:5px;height:36px;} -.searchArea th {position:relative; text-align:left; padding-right:10px;} -.searchArea th:before {content:'';display:inline-block;height:4px;width:4px;border-radius:50px;position:Relative;top:-1px;background:#0d1e84;vertical-align:middle;margin-right:5px;} -.searchArea th label {color:#112469;font-size:14px;font-weight:500;} -.searchArea td {padding-right:20px;} -.inlineBox, .inline {display: flex; -webkt-display: flex; -moz-display: flex; align-items: center;} -.searchArea td .inlineBox {display: flex; -webkt-display: flex; -moz-display: flex; align-items: center;} -.searchArea td .form_group {display: flex; -webkt-display: flex; -moz-display: flex;align-items: center;} -.searchArea input[type='text'].form-control, .searchArea select.form-control, select.form-control {width:100%;} -.searchArea .form-control.set-btn-md {width:Calc(100% - 70px);} -.searchArea select.form-control.year {width:30%;} -.searchArea td .form-control + label.txt {margin:0 5px; word-break:keep-all; -ms-word-break:keep-all;} -.searchArea select.form-control.month {width:20%; min-width:45px;} -.searchArea .btnArea {position: absolute; top: 40%; right: 20px; flex-direction: column-reverse;} -.searchArea .btnArea [class^='btn-'] {display:block; height:36px;line-height:34px;color:#fff;font-size:14px;font-weight:400; padding:0 16px; width:88px; text-align:center; margin: 3px 0;border-radius: 4px;} -.searchArea .btnArea .btn-search,.uSearchArea .l-search .btn-search {background-color:#2747d0; border:1px solid #2747d0;} -.searchArea .btnArea .btn-search:hover,.uSearchArea .l-search .btn-search:hover {background-color:#193ac1;} -.searchArea .btnArea button + button {margin-bottom:0px;} -.searchArea .set-datepicker {width:120px;} -.searchArea.single-row {padding-right:100px;} -.searchArea.single-row .btnArea,.uSearchArea .btnArea {margin-top:-15px;flex-direction:row-reverse;} -.searchArea.single-row [class^='btn-'] {display:inline-block;} -.searchArea.single-row button + button {margin-bottom:0px; margin-right:5px;} -.searchArea + .listToparea .l-Top-info dt, .searchArea + .listToparea .l-Top-info dd {line-height:30px;margin-top:0;} -[class^='sp-layer-popup'] .searchArea.single-row {padding-right:60px;} -.searchArea.sm td {padding-right:15px;} -.listToparea > * {height:30px;align-items:center;} - -/* datepicker */ -.set-datepicker {position:relative; display:inline-block; width:140px; height:38px; background:#fff; /*padding-right:26px;*/ border:1px solid #ccc;} -.set-datepicker > input {height:38px; line-height:38px; border:0; background:none; width:100%; font-size:14px;} -.set-datepicker.disabled {background:#eee; opacity:.5; filter:alpha(opacity=50); cursor:default;} -.set-datepicker.disabled input {position:relative;} -td .set-datepicker > button,td .set-datepicker > button:hover,.set-datepicker > button,.set-datepicker > button:hover {background: #fff url(../images/common/ico_calendar.png) no-repeat;width:21px;height:22px;position:absolute;right:6px;top:7px;border:0!important;background-color:transparent;text-indent:-9999px!important;font-size:0!important;} -.set-datepicker.disabled:after {content:'';display:block;height:100%;width:100%;position:absolute;top:0;left:0;z-index:5;} -.set-datepicker + label.txt {margin: 0 5px;} -td label.txt {margin: 0 5px;} -.set-datepicker.sm {width:120px;} - -/* modal 팝업 */ -.dim-layer {display: none; position: fixed; _position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1000;} -.dim-layer .dimBg {position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #000; opacity: .5; filter: alpha(opacity=50);} -.dim-layer .pop-layer {display: block; position: absolute;} -.pop-layer {display: none; position: fixed; top: 50%; left: 50%; width: auto; height: auto; background-color:#0e1872; z-index: 1000 !important; padding:2px;} -.modal-large {width: 960px;} -.modal-md {width: 760px;} -.modal-mini {width: 500px;} -.modal-content {position:relative; background-color:#fff; -webkit-background-clip: padding-box; background-clip: padding-box; outline: 0;} -.modal-header {width:100%;height:52px;background-color:#0e1872;} -.modal-header:after {content:''; display:block; clear:both;} -.modal-header .close {margin-top: -2px;} -.modal-header .pop_close {float: right;margin-right: 20px;} -.modal-header .pop_close a {display: block; background: url('../images/common/ico_pop_close.png')no-repeat; width:18px; height:18px; font-size: 0; margin-top: 20px;} -.modal-header .pop_title {text-align:left; font-size:20px; font-weight:500; color:#fff; line-height: 52px; text-indent: 25px; display: inline-block;} -.modal-body {position: relative; padding: 12px 25px 20px; background-color:#fff;} -.modal-body h3 {font-size:20px; color:#474d5c; padding:10px 0 15px;} -.modal-body .keyword_add_wrap {position: relative; display: inline-block; vertical-align:top; padding-bottom:20px; border-bottom:1px solid #e0e0e0;} -.modal-body .keyword_add_wrap a {float:left; display: block; margin:0 8px 8px 0;} -.modal-footer {padding: 15px 0 15px; text-align: center;border-top: 1px solid #ddd;} -.modal-footer .btn + .btn {margin-bottom: 0; margin-left: 3px;} -.modal-footer .btn-group .btn + .btn {margin-left: -1px;} -.modal-footer .btn-block + .btn-block {margin-left: 0;} -.button.btn_pop_cancel {font-size:15px; color:#333; font-weight:500; background:#fff; border:1px solid #ccc;min-width:80px; padding:0 20px; height:40px; line-height:38px; border-radius: 4px;} -.button.btn_pop_cancel:hover {background-color: #f5f6f9;border: 1px solid #9f9f9f;} -.button.btn_pop_save {font-size:15px; color:#fff; font-weight:500; background:#1d64c5; min-width:80px; padding:0 20px; height:40px; line-height: 38px; border-radius: 4px;} -.button.btn_pop_save:hover {color:#fff; background:#185bb7;} -.popup-body {position: relative; padding: 0 20px 15px;background-color:#fff;} - -/* page-title */ -.page-title {position:relative; height: 52px; line-height:52px;padding:0 20px; background-color: #0e1872; margin-bottom:20px;} -.page-title span {font-size:20px; font-weight:500; color:#fff !important;} -.page-title > .pop_close {float: right; margin-right: 10px;padding-top: 13px;} -.page-title > .pop_close a {display: block; background: url('../images/common/ico_pop_close.png') no-repeat; width: 18px; height: 18px; font-size: 0; margin-top: 7px;} -.page-title + article, .page-title + .content-title,.content-title + .sec-title {margin-top:15px;} - -/*챠트영역*/ -.chart_box {display: flex; justify-content: space-between; align-items: center; padding: 20px 0;} -.chart_wrap {position: relative; background-color: #fff; border: 1px solid #d5d7df; padding: 5px 25px; border-radius: 8px; margin-bottom: 25px;} -.prompt_box {position: relative;box-sizing: border-box; margin-bottom:10px;} -.prompt_box .Prompt_wrap {} -.prompt_box .Prompt_wrap .inner {} -.prompt_box .Prompt_wrap .inner:after {content:'';clear:both;display:block;} -.prompt_box .Prompt_wrap .inner .item {display: inline-block; float: left; vertical-align: top;} -.prompt_box .Prompt_wrap .inner .item .link {position: relative; display: block; background-color: #fff; color: #333; font-size: 16px; font-weight: 300; letter-spacing: -0.06em; line-height: 1.3; width: 100%; height: 100%; border: 1px solid #3a4aba; border-radius: 8px; text-align: left; padding: 9px 15px 9px; transition: all 0.3s;} -.prompt_box .Prompt_wrap .inner .item .link:hover, -.prompt_box .Prompt_wrap .inner .item .link:focus {background-color: #fff; border-color: #222f8b; box-shadow: 0 5px 4px rgba(135, 149, 163, 0.2);-ms-box-shadow: 0 5px 4px rgb(135 149 163 / 20%);border-style: dashed;} -.prompt_box .Prompt_wrap .inner .item .link .text {display: inline-block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width:88%; vertical-align: middle;} -.prompt_box .Prompt_wrap .inner.n2 {width: calc(100% + 20px); margin: 0 -10px;} -.prompt_box .Prompt_wrap .inner.n2 .item {width: calc(100% / 2 - 20px); margin: 0 10px;margin-bottom: 8px;} -.prompt_box .Prompt_wrap .inner.n2 .item .s_tit {display: block;font-size: 15px;font-weight: 400;color: #333; margin-bottom: 10px;text-align:center;} -.prompt_box .Prompt_wrap .inner.n2 .item .g-map-area {border:1px solid #e6e6e6; background-color:#f3f5fd; min-height:50px;width:100%;margin-top: 3px;} - -/* login */ -.logback {width:100%;height:100%;background-image:url('../images/main/login_bg.gif'); background-size:100% 1000px;left: 0;top: 0;position: fixed;background: #f4f5f8;} -.logback h1 {top:0;height:42px;line-height:42px;margin-top: 8%;text-align:center;display:block;} -.logback h3 {top:0;height:40px;line-height:24px;padding-top: 20px;text-align:center;display:block;font-size:16px;font-weight:400;color:#555;margin:0 auto;} -.logback .login_box {margin:0 auto;width:500px; height:auto;clear:both;margin-top:1.2%;background:#fff;-webkit-border-radius: 26px;-moz-border-radius: 26px;-khtml-border-radius: 26px;border-radius:26px; box-shadow: 0px 1px 10px #bcbfdb; -moz-box-shadow: 0px 1px 10px #bcbfdb; -webkit-box-shadow: 0px 1px 10px #bcbfdb;} -.logback .login_box:after {content:""; clear:both; display:block} -.logback .login_box .loginWrap {width:70%; margin:0 auto;text-align:center;padding:55px 0;} -.loginWrap .input_wrap {width:100%;text-align:center;clear:both;} -.loginWrap .input_wrap input[type=text], .loginWrap .input_wrap input[type=password] {text-indent:10px;-webkit-border-radius: 5px;-moz-border-radius: 5px;-khtml-border-radius: 5px;border-radius:5px;} -.loginWrap .input_wrap input::placeholder {color:#b6b6b6 !important;} -.loginWrap .input_wrap .txt_id {width:100%; height:50px; font-size:16px; border:1px solid #ddd; margin-bottom:10px;} -.loginWrap .input_wrap .txt_pw {width:100%; height:50px; font-size:16px; border:1px solid #ddd;} -.loginWrap .input_wrap .save_id {float:left; color:#333; padding:25px 0;} -.loginWrap .input_wrap .save_id input[type=checkbox] + label {cursor: pointer; position: relative; font-size: 14px; padding-left: 30px;} -.loginWrap .input_wrap .save_id input[type=checkbox]+ label:before { content: ""; display: inline-block; width: 19px; height: 19px; margin-right: 20px; position: absolute; left: 0; top: 0px; background-color: #fff; border:solid 1px #ccc; border-radius: 19px;} -.loginWrap .input_wrap .save_id input[type=checkbox]:checked + label:before {content: ""; font-size: 15px; font-weight:800; color: #fff; border:solid 1px #2e389d;line-height:19px;background:#2e389d url('../images/common/ico_check_w.png') no-repeat 50% 50%;} -.input_wrap .btn_login {display:inline-block;width:100%;height:65px;line-height:65px; margin-bottom:10px; background:#2e389d; color:#fff; text-align:center; font-weight:400; font-size:18px; border-radius: 6px;} -.input_wrap .btn_login:hover {background:#2f3dc6;} -.hidden {font-size: 0; width:0 !important; height: 0; line-height: 0; overflow: hidden; visibility: hidden; width: 0; position:absolute;} - -/* index */ -.main_img {width: 100%; height: 280px; max-width: 1400px; margin: 0 auto 40px; position: relative; display: block; box-sizing: border-box; padding:30px 20px 30px 90px;border-radius: 38px 0 0 0; background: #3842a9 url('../images/main/main_img.png') no-repeat 93% 100%;} -.main_img:after {content:''; display:block; position:absolute; bottom:0; left:0; width:160px; height:280px; background:url('../images/main/main_img_left.png') no-repeat 0 0;} -.main_img .l_txt {display:block;padding-top:50px; font-size: 45px; font-weight:700; color: #fff; line-height:1.8em;padding-left:50px;} -.main_img .m_txt {display:block;width: 100%; font-size: 22px; font-weight:400; color: #bfdfed; padding-left:50px;} - -/* 오늘의 할일, 업무공지 */ -.week_news_wrap {padding:0;width:100%;max-width: 1400px;margin: 0 auto; box-sizing: border-box;} -.week_news {overflow: hidden; width:100%; height:300px; padding:20px 30px; background: #fff; box-sizing: border-box; border-radius: 20px; box-shadow: 0px 1px 10px #d8dadf; -moz-box-shadow: 0px 1px 10px #d8dadf; -webkit-box-shadow: 0px 1px 10px #d8dadf;} -.week_news h1 {position: relative;display: inline-block;width:100%;margin-bottom:15px; font-size: 23px;height: 36px;color:#222046;font-weight:600; } -.week_news h3 {float:right;position: relative;display: inline-block;font-size: 15px;color:#333;font-weight:500;margin-top:-5px;margin-right:-5px;background:url('../images/main/ico_m_bul.gif') no-repeat 0 48%; padding-left:10px;} -.week_news h1 a.btn_more {float:right;position: relative; display:inline-block; padding:6px 0 0; width:16px; height:16px; background:url('../images/main/ico_more.png') no-repeat 0 0; margin-top: 7px; font-size:0; text-indent:-9999px;border: 0;} -.week_news h1 a.btn_more:hover {color:#333;} -.week_news h3 select {min-width:80px;height:34px !important;border: 1px solid #dadce1 !important;margin-left:4px;} -.week_news .news_list {width:100%; position: relative;} -.week_news .news_list li {line-height: 34px; position: relative; float:left; width:100%; display: flex; flex-wrap: wrap; justify-content: space-between;} -.week_news .news_list li:last-child {border-bottom: 0;} -.week_news .news_list li + li {margin-top: 9px;} -.week_news .news_list li a {display:block; position: relative; padding-left:13px; padding-right: 20px; font-size: 17px;} -.week_news .news_list li a:before {content: ""; position: absolute; left: 0; top: 50%; width: 4px; height: 4px; margin-top: -2px; background-color: #6e6e6e; border-radius: 100%;} -.week_news .news_list li a .work_tit {float:left; display:inline-block; max-width: 350px; color:#333; font-size:18px; font-weight:400; overflow:hidden; white-space:nowrap; text-overflow:ellipsis; -o-text-overflow:ellipsis;} -.week_news .news_list li a .noti_tit {float:left; display:inline-block; max-width: 350px; color:#333; font-size:18px; font-weight:400; overflow:hidden; white-space:nowrap; text-overflow:ellipsis; -o-text-overflow:ellipsis;} -.week_news .news_list li a .noti_tit:hover {color:#000;} -.week_news .news_list li a .ico_new {font-size:8px; color:#fff; width:17px; height:17px; background-color: #ff4e50; border-radius: 50%; font-weight: 400; display:inline-block; text-align: center; line-height: 15px; margin-left: 5px; vertical-align: middle; position: absolute; right:0; top:50%; transform: translateY(-50%);} -.week_news .news_list li .r_txt {float: right; line-height: 32px; color:#777; font-size:17px; } -.week_news .news_list li .w_name {color:#444; padding-right:20px;} -.week_news .news_list li .not_noti {float:left; display:inline-block; width: 100%; color:#888; font-size:17px; font-weight:400; text-align:center;} - -/******************************************* 통합검색(20250312 추가) ******************************************************************/ -.srarch-wrap {width: 100%; position: relative; margin:0 auto; box-sizing: border-box; padding-top:20px;} -.search_form_wrap {position:relative; background: #f6f6f6; padding: 15px 20px 15px;text-align:center; margin:0 auto 25px; box-sizing: border-box;} -.search_form_wrap:after {content: "";display:block;clear:both;} -.search_form_wrap {background: #fff; border: 1px solid #d5d7df; padding: 20px 25px 25px; text-align:center; margin:0 auto 30px; box-sizing: border-box; border-radius:10px;} -.search_form_wrap .search_inner span.form_input input {width:100%; min-width: 500px; height: 45px; font-size:16px; color: #333; font-weight: 300; line-height: 32px; padding: 0 20px; border:2px solid #333; border-radius: 38px;} -.search_form_wrap .search_inner {position: relative; margin-left: auto; margin-right: auto;} -.search_form_wrap .search_inner span {display: inline-block; vertical-align: middle; height:45px;} -.search_form_wrap .search_inner span.form_input input {width:100%; font-size:15px;} -.search_form_wrap .search_inner span.form_btn {margin-left:3px; width: 1%;vertical-align: middle;} -.search_form_wrap .search_inner span.form_btn button:before {display: inline-block;width: 0;} -.search_form_wrap .search_inner span.form_btn .btn_search {width:94px; height: 45px; color: #fff; font-size: 18px;font-weight: 400; padding:0; background: #2e389d url(../images/common/btn_search_m.png) no-repeat 25% 52%; vertical-align: middle; text-indent: 22px; border-radius: 38px;} -.search_form_wrap .search_inner span.form_btn .btn_search:hover {background: #242e93 url(../images/common/btn_search_m.png) no-repeat 25% 52%;} -.search_form_wrap .search_inner .form_label {display:inline-block; color: #333; font-size: 16px; font-weight: 400; letter-spacing: -1px; padding: 0 12px 0 0;} -.search_form_wrap .search_inner [class$="_label"] {display: inline-block; color: #333;} -.search_form_wrap .search_inner label {vertical-align: middle;} - -/* search_head */ -.search_head {position:relative; margin:15px auto;} -.search_head_result {display: block; text-align: center; font-size: 18px; color: #333; font-weight: 400; line-height: 26px;} -.search_head_result em {background-color:transparent; vertical-align:top; color:#f53333; font-weight:400; padding:0 4px;} -.search_head_result strong {vertical-align:top; color:#f53333; font-size:20px; font-weight:400;} - -/* 통합검색 리스트 */ -.search-list-box {position:relative; display: block; width:100%; margin:20px 0;} -.search-list-box:after {content:""; clear:both; display:block} -.search-list-box .search-tit {background:#f3f5fd; border: 1px solid #e9ebf3; border-bottom: 1px solid #a1aee1; border-radius: 6px; padding: 10px 15px; font-size:16px;} -.search-list-box .search-tit strong {position: relative; color: #333; font-size: 17px; font-weight: 400; margin-right: 20px;} -.search-list-box .search-tit strong:before {content:''; display: block; position: absolute; width: 1px; height: 15px; background: #c3c8dd; right: -13px; top: 50%; margin-top: -6px;} -.search-list-box .search-tit .keyword {color:#f53333; font-weight:500; padding: 0 3px;} -.search-list-box .search-tit .keyword_num {color:#f53333; font-weight:500; padding: 0 3px;} -.search-list-box .btn-right {text-align:right; margin:20px 0 30px;} -.search-list-box .btn-right .ico-arr-black {transform: rotate(-90deg); margin-left:5px; opacity:0.8; height:7px;} -.search-list-box .btn-right .button_more {display:inline-flex; height:34px; padding:0 14px; line-height: 33px; font-size: 13.5px; color:#333; font-weight:400; vertical-align:middle; border:1px solid #ccc; text-decoration:none; border-radius:5px; background-color:#fff; transition:opacity 0.3s, color 0.3s;} -.search-list-box .btn-right .button_more:hover{border:1px solid #2e389d;color:#2e389d;} -.search_list {position:relative; width:100%; margin:0 auto; display:block; box-sizing: border-box;} -.search_list:after {content:""; clear:both; display:block} -.search_list>ul {position:relative; display:block;} -.search_list>ul>li {display: inline-block; width: 100%; padding: 18px 0; border-bottom:1px solid #ccc;} -.search_list .search_cont {display: flex; justify-content: space-between; padding: 0 0; width: 100%; vertical-align: top;} -.search_list .search_cont .cont-tit {position: relative; padding:0 20px 0 15px; box-sizing: border-box; display: block; overflow: hidden; margin-right: 20px;} -.search_list .search_cont .cont-tit:after {content: ''; display: block; clear: both;} -.search_list .search_cont .cont-tit > a {width: 100%; height: 28px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; font-size:16.5px; color: #333; font-weight:500; letter-spacing: -0.5px; line-height: 28px;} -.search_list .search_cont .cont-tit > a:hover {color: #121212;} -.search_list .search_cont .cont-tit .route {font-size: 14px; color:#555; line-height: 19px; display: inline-block;} -.search_list .search_cont .cont-info {position: relative;display: -webkit-box; display: -ms-flexbox; display: inline-block; margin-left: auto; padding-left: 15px; padding-top: 5px; min-width: 200px; text-align: left;} -.search_list .search_cont .cont-info:after {content: ''; display: block; clear: both;} -.search_list .search_cont .cont-info:before {content:''; display: block; position: absolute; width: 1px; height: 27px; background: #cbcdd5; left: -10px; top: 30%;} -.search_list .search_cont .cont-info .source_organ {font-size:14px; color:#555; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block;} -.search_list .search_cont .cont-info .source_data {display: block; font-size:14px; color:#888; line-height: 25px;} -.search_list .mark, .search_list .cont .mark {color:#3d4acb;} -.search_list a:hover .mark {color:#2634c0;} - -/* 첨부파일 */ -.uploader {position: relative; display:block; margin: 8px 0 5px; border: 1px dashed #cbcdd5; padding: 8px 13px; border-radius: 6px; overflow: hidden;} -.uploader:after {content: ''; display: block; clear: both;} -.uploader > li {display: flex; -webkt-display: flex; -moz-display: flex; font-size:13px; color:#555; line-height:19px;} -.uploader > li > a {display: inline-block;} -.uploader > li > a span {font-size:13px; color:#555; line-height:19px;} -.uploader > li > a:hover span {color:#121212;} - -/* 첨부파일 아이콘 */ -.uploader > li > a >i[class^='ico-']{display:inline-block;width:17px;height:17px;vertical-align:middle;margin-top:-3px;margin-right:5px;background-repeat:no-repeat;text-indent:-999999em!important;font-size:0!important;line-height:0!important;} -.ico-file {display:inline-block;width:13px;height:15px;vertical-align:middle;background-image:url(../images/common/ico-file.png);} -.ico-pdf {display:inline-block;width:17px;height:17px;background-image:url(../images/common/ico-pdf.png);} -.ico-excel {display:inline-block;width:17px;height:17px;background-image:url(../images/common/ico-excel.png);} -.ico-ppt {display:inline-block;width:17px;height:17px;background-image:url(../images/common/ico-ppt.png);} -.ico-hwp {display:inline-block;width:16px;height:17px;vertical-align:middle;background: url(../images/common/ico-hwp.png);} -.ico-img {display:inline-block;width:16px;height:17px;vertical-align:middle;background: url(../images/common/ico-img.png);} -.ico-zip {display:inline-block;width:16px;height:17px;vertical-align:middle;background: url(../images/common/ico-zip.png);} - diff --git a/front/src/main/resources/static/images/main/footer_logo.png.20250108 b/front/src/main/resources/static/images/main/footer_logo.png.20250108 deleted file mode 100644 index cb86c662d3054623d70c1d3fac7801e58cf5e4b2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2409 zcmaJ@dpwl+8XwA~%S4e@kul1B?qhBYF=H5J+%2^m-kEua!CcIYnIVhlO67E@7D*?L zF1n$0*~%qK(xDX^TcRYCZoAqgI-OUgvw!s2_w#w*-|zSQp6~N~pWEm2?hOj?fiGRV z6b6IA*}lvWXpM$m3qyVAYmmt&LyNi6J5m`c6)M$$9E5oaq&yJ876Y+h2nYyLk~%;) z7;MoFQCOrhlFOm-rD8NNuY=ZzWe^$$bMw&10Dc0fMDV~^k%W$Xb-4+N5DDnW2p2Av zD`S9hBHvUw7@8Uo#!pS)Qw2y5cZ8dU1{n~8N&uk|CrT7F4ITN>E)Ckxi!n&VM-^oP z9r=k=BsU1bkjg;>6^%pju~U7d#E?g82L( zA%}8-kQTyZeRc<(=*T#wQbxmI)M_5>*U)5HGrN}@`2&j-I%lS}AgfvVc!^!QqL*1v_8EQ>g?Ni{Qd!5OFRz zoHxsh>V;<#3EoT+gGwYbyce)+i9!iT_~3$X5#;+bmhrb(8bb~ON~t_dDotEygrGR7 zQmTlP$`E)LG!tsb%K4&N4Oi z5ZL6HS&4!@4Evd3Z3Y|MkGn73dm;w4@n5WSc}2bnCjaEBE^p4~l3YhV*v3wb{?TPq zbNH;pXs&vo;lhC86@Bahp^SP!u?I(5=B_8r9@?y-8YJr0{W2DBtRs>wp33ZQfw|i3 z^PCy!V$Ya7fJYjVvacR!;$)T#pZLefoOC#YwPBRA`^QWl&l{VMTENzI+kXh7>Yg{$ zc8oNuu60O5kWytDVhgnPg*8+F;paYS4?|D1&3LPQNR= z*R{MqbSka2EO8^nh|^FY)gez$eIVb=40nI~Qb)SIN%x_e9$XM*Z1iS!_H^l~JAuX` z!#k|AcLP@rIsDSKCztNNxW7T`wCu_lzdL$ST^2XSK>I2*V-`6Hdc}8oy*o-7U)gA< zyU$Y3K{Sbcdz|5j@w19s{#f?DAlg8mp5D8xR-6!e_pbAyfSSTW^M^wC^g!8v2%Em+ zjh^(~9>rHX+;~c?x8HjB0B@a5dBc_!-_{qv8E>}rOqj%O?sRr7?JiDfy%`uFY(G&o zUK#%Lf2;j3yEK|%J3@Uoygyr<%|QJMif%XDVPv?x5CRD4yxtM*=1il9|LMpbV# zt+iWWg($A?Mb7SAu`^$+5Zz}VNc9ai`?q`Qo^esIdtT(lw1`a;Yc|a|6;|{GZyE4^ zsOQt!_T-XpWu5oJQ8P7`+8z%*!6X)dC9w3 zcE{s0t4k`1^Y)m)dwsH0Ui+@aB&{mSI-5owz5nppSjH4$qPDf*o;j-Kl7BJpdTok! z*0!a5YKe*MuAMSeM4$3`efyB1`=~BI8bw5T=yPL>NHue@dEQtu{abUU* z>a5TVX7MFRleP;b$1jF1r>NGfo}p`pdnWjo2=0ixGF*LL%9D3C6*KAL z8eA55^$$&nQRGfGu6J&^+g2|RH~8EJ3Z?WxmGhyp(d6|>Nl_zitGAxMHTIjc2F(;6 z-1fV{_3~h6Grm^m3`2JaG|H5gKc9^hVG`bxy{j2(uhtNZ@7&1Ht35S2Fx|Ge^XR1+ ze1fOPTbx(kTBnzN2WQ$@<7G!`@U1#$%?ewaaY7EIH*Nw~1VpiVNpI mi!8NjjnfO+04ChLC{QR7tr diff --git a/front/src/main/resources/static/images/main/logo.png.20250108 b/front/src/main/resources/static/images/main/logo.png.20250108 deleted file mode 100644 index 7394d65d587a2788bee7cf3a4c8c217cca27d960..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3472 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 b?1urK8?q;BS_ggi|B(!_7jz4>9YX#CC8-Kv diff --git a/front/src/main/resources/static/images/main/logo_big.png.20250108 b/front/src/main/resources/static/images/main/logo_big.png.20250108 deleted file mode 100644 index f279d4ba70cf1a229db99cece9612a0d02d31241..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4805 zcmaJ_dpy(o|KHp%&81v&X_%Bto0-dO$Yrh-kvk2u%_g>qxoo*Cm)wOEDMbn;mvYOk zToSqEmTM@N66r=1#c!Q+I=}B9-^cg!c)UOF%jb1@zMk*r>z_}et&IgpKw1C*0D!D4 zO;54sYWC3K<6*z4HC1oelN8;|g>Fytp@-rEi2!2)&6_B1MZuAXr-(QL+9e`cd~z(sA-(6n|Hz*ftTX_sEkSLFWX+ZICI6@wYg5h*p(R$(Ao$z zTwDI12f|JmNbo_QGBy7v9eZa0A=BvrXm$0_&`?;YCX5zHQrAGCQ0j1mIsyS@TR?*t zR5~sUN)1x{6Ty@igb(x$p!?FO^1mbEylKI70|*=J-&IfotgZhIObz;nD>iHDVYmQw z4H#UVLit_VU)DkNQ^fy=@n5Zj92fya^;5(kT5uqqeI-7Mf1KI${qID-4cTbWCj))i z_k!~`rQw4qL@M3N)BwW%0weem&_t9D&YOtvf#L}W98^PFO9QIwqe*~jAT*E!JW^W& zq2==@&VTbqnHXc>a1;WgYih2cVP>vtjMPDyYME$g>*`>1;AVe(t*AkC92HOeliQb_ z`yXG8|LKdy1QKy{TA%}s=Kn_swqzQe7DT26$Ro62D0yXPUn+qX8l>|3j{Yv$lo;q6 zLL`_6(kSwOk&O2JF938kHBlN!Z#)!^)AoiEbhUJ$I3x}a^&y~;a7{RoO#-|4zx@gS zLEhgwWuLH%2>62qt%E>n;&9$NP#m7EKp&JA3X0R#B0x1Ykti)3&PUhB8xK)uLsb8* zoBz+HZ%*xc*A#CykmOo3ZL#lk)Lo|B- zS=SIrv-vMt-ln#%ukxx!OCS6)s-Nkl#g*c%&yo+5uj2!{E=ojOHi0yR73a>g5`Z^E z4|;HkMtAit!MKd$rt`|fqfYjHl%3XoY0z9c@qV{Cs`OlG<2~lq%9F>t70YK}v0fc& zIbIS|@lWJTW?MEg4I+N&_>HFpZW~@bXe4dnmipwT;&dBy zvAPZ_N}A%?Q(Vd&$zYLG6{MZMs-P^Qz z4xQD8oDOJ&#RMzMiQSZ**(o|~)(x8!wcY5~9@vg>e>X8IuS+H^G7}z2_LRDt|0>kK z9qtuQC7l0pmM@0p+^_c}J8{8cpnpIPE--=Eh)_0rxnW`${rKCnQMbXMP^XBZYVJj7g7cX{%TZiQgxwR~q|cfS$LJpWpOpxs9WieMSAMCftF3_;Nq&rVL4C;N}=u{vM{_FK`ULfxKo16RLu zf9i&R^LdgZO0UMqZ`PcoOiI;3fty zDDCMpY0}eYQg!Bs_wOs*l;JGAv?mY(Ycb{xAC&CRt!Y%4DFqluBy;6>uAELH+=`!1 zjMNvRh<^?~VKmV!3$1QQmgsL;Ge+X3sYBZI?NBtl%`(?7^FL10Cz=U zS*$}1a9*$1M_=4jRTOP7Nt=D2^ix{-3p1BE!OPTG=UIX*jiI`4B(A_87RsWr^hk*< zmyf}$*eS_LsLnInQE;BO(-qLg%~s4>k&STrS!kX#&`2=9R4Yw}Z}nrQMcRm-G%@`4 zL{ShSV$HyfG}rpez~f1hrbR*Xn}vwi>6r~3`9j{w(nAtA594aHRo8$h0aB-v%iz$>sCWEVy+ATx&z@;&}{#g#{6R`7Wh`S|4H*HZa!?+?rx-}WTy z0H(zA%N=E%6{127_u4I_noQG$iwbt6<1X(QZHSc59YsA)q%QOnGz+DV3}1M6hw~EM zlnmxewWW-ogYBj$nWx*N_G&_}4=ag3@*Qc9h%yw6lbvrBSP4%|arhphD8?|$+z3x% z78$*`bb7iOF(GXR}TX2OoKk6mvr3 zqnr~+?#e~mvPWr}_e&aoig|oO zRtn(Bec--yEmB|4H}ZU6gl;T&S*5XaOJg~w7__jiQ>F%gJtXtf5yp68d4SQbQx=D4 zd-;;&UmVZ0F#ZKgHolTKH(Ql(u@Eap)o+s;Ko^D>yOY&hoPdl+jsn=&dFQdX3y+dM z9o#VcwR@)WNl^dBy|ikJ_wWeQZ5;Y2MmI8 zrwQWjpvl1=0KjaC=J?9-7O${M(*6sGjdymtXUHf0Z}8`FM9h-xDE83DJL`k;?IDpU zbm$Mc&E{Q&T2C)-Rlo?3@7=uH+(9?@8Yw&?ahz%QS>jV}jy7wb%wUW|%IK zr=L-gF&QG#aN;qi6{p`leusC(?n~kCjchZ7>gKNldWKv5^jN`8F3gw-8~N2wmxb(< z`5Cc;nH}}TgOUB=y^HBWUKZIOwgKaJ(Cd7Q1C7a1A*kCCwX61h_j`s-1pC)9(QQ}N zl26kyw42J$f-~yhripY0dnrh3xXcf{(H(tZT7G5dN6=6txSN5^7=sve7c|2xAS$k2 z2j0BTJhO0HLf8NxDMVKs+ZM0SYm-r|>XXFmC!No|kRxX=`_Kt@An5s2Qj;H!5j=a` zq0fC6{nBJC40vr}>@cGq;?ZaGxuJ-s;yFNL3{Ww7%s%l=8{(shVzejv=d93|#W#HS z_V5kP+yMl?ldX<37wA+KVyKG`h|1CDi^0H%^Q8Dnx2ffZ4{P*>%>75PZadpyog$5C zPUvTQzq~tfHMuF3k=5wx7It}2DNR4QsIpt~%q1gOv`5$8g0{!?;M{|Y-=AuyyzLL7 zsb3}eHn&cN+;e<3_xcz(yK8YfuByZFX`vZa&ANSF{jzYHoSezH-O{&v{ZdR4U{R>& zO@z1=_~e7LxxRJwd6quQRY{GVc5 z_503TmLM+LCqex!L1BuAREkKa7*ZG$Z8l>x9$#=T?7w{;m-o zLoNs_jMcl%TwmC;v?S7&s#*=6TW9s$t~>qqPAycvi-cb7(0CU=v6Yigc5GdiqaHlf&j^>uE5Lm*%w1*^ z&uTNZvm0X`JrIKm?%M6D1+`O=-CaCC><4+5@17tOy??aF=sj1da2oc^i_U#2EiYxf z3gRg&ALRaH0WFbY`5v%BRZe}5Ys{6y`SW)DA%`J1xF(PAANw?dA%)zit6Ae3KE16F zQt_aP-t^15-OR?x6~Frs0I*h2tW!Fp2<~C-U#{JF#=JuL~3omsh& z*?NEvjl`!ZWR;G>lRhUN+vbTRsnhU@++gQHT1?Pp1HyLO-bH`VvyL(320T7?{0HuM z2QR$FFzsq%3hCCSjE8x;%X{4wo9l+Ik=QS%zab5Z}!*nt-cLCzToG? zyP)L^y}Nzi{XqWBO2dlUjKQ%7^rQY)`JG-CkDUTmsJ45@r-vliAdY_7Qp`$wpsIX5 z2lT3eCNb(6fB9DQ0Uj_`rfq50ec5p3%6eNQ(f?Ur-W{9hhB9)lYTiQ#Y9dYBe|_M{1R8#lUp0-b9qc=;k?Hl z*6Ik52JkGMj7Dq$de6l?DjCLyvTlR|bGWQpJC*8SZ-?&rRr&-;G2^E~G{=X=f{?|HI=wVcd084w60XLEo= z5sjguS9>E^^bI=|5+WLY;#s=#4zuaJP=G@N?W3}NXb>AF;76m-0BZQL=QI-#NIaI| zZH8X{ngb_ppOd1b>gfW9yTtXNT`i++$ny+sgLLuKwc!5Od zU!q*?$q)-RhX%nLAYi_5I1+-z8vqypgTiBQfIb8XM;aNzQHF2~41pk^kpwsz^8JB| z9CE010)=Gt-JNJfg!=P%!30CY(9lqWP?Q0i<7bG#f&AIliJRq3`+u7NzgM9jzOR)DRAF7@~Utf=F!N<4hWh zXG0=FMJEPS29-d=V*no-k`D8wA^{izZG?c~=qM@-fka@bzF0H@X+;0Q^KW=84vt1y z!uMI=NGJrt(h7$nAxLO67K_ALVBrYT53CJ~%L7=xv>(11BH!P!`2WNbEI2fP$L2V( z*+D-Ff$Y!bvAO>2UJz;S3A^gEvVkL3MTr=lHE5WzpR5HLtA3IKdC zFu+$-fpokP9tNO|M7$_0-UtBbIJ%E7)KDbRaJ_E+QAa1FA*Q zZCz|Sxu+ynY^Pv!yPFgTiKmSv z$|TLrz)NS6x1|)Gn=!kd%SzSR=v6xtD-EgR)_~JZLWn`dYmNgk@Vuyy{;a2dxeU0%oTsbKq*lLAP-=L+KM@6Qr)L2vBI!1KU`Qk%>|%4{64s zHp#MIpU2ARC>$n6g-_8U6!Y{Vf?=CI=3`DUMynnkPC2=~&ns!eAB9QfTkRdJ$BZ8J zVOtAEQ&x_#_%)uFaahfgch{5VHh{fcLt6Ug9UC@X;zEXR7`oddi`>b5s%|UYGzp}4 z_G|OTOK;>a_NWxRAMss)b|U+($z)7-?_PHMt?tp|(!RP4?ZaQJblv2GY9!0{Xz9<# z0fA-{m3j77=WgX=o1`NoZVNRCbklwAmV(Lp)^c}vBxu2_aP86~+EyerJMq(Sy)kI= z;&yUX;sx;Un%=J#_8LFYY`*M|yP9(+*Y#sI#zp)+NFRu?=zIcfGFCtOc(ZKZZs%qX z+}1h%l1s7K*|Bo{?%wizCCu?N7>#@B**}9h{z~Cd4<&ESNTg$S+vXQ)R!A9BY6P5Q zj%`Q(rks5HW(PBsld-vi+>kGh+51U5GVfocMX5}5=PYh_467*H^aRF8J?;aQHLkF; zMDgrUk4DpF18P+|K6P9uQl^TZ+oyKWaRFUTEp9vQP$c$CS1RJz7qL!v!AXz zQ{WqG(SE1SoZq}ZI{9fEPqtS6%vgEX*v;91EKIL{BuYo=W5u#|oU+UDN4~PRu1{La zcm_x1OXFvsLiGv+b_%OI+oA`&p8ewTIXevFVehBfTd<|(-N8Caugn4LK(DDl;_ZB6 z;&Df$6Ptuc;B))t!*o3av4AQGqy7069Jbzn$lH8E@@3N{N4;YaXo{4MM zsM@iGuOMZab)Rm4=DZ8aVq|h8jhAuhRR&^3Sv67*Wj)fc-Fz%@AOju;xqJkb%+Wy{ zxrH&J@C}AKOIzD5PxEt?7r^CLHlK`7YoaLC4wi{EmDeGc^sn?3{`o9k%}&B5joklGaHY|OYJ3Qd8NX)h(_*xoss2gLE|rjjjDyW}xDI-hnMG}xqt-WXS*u10 z2Bu$<$0Wg#`)WPO#Ur!#cesC4P<_svw;LW2O5k>z7Yqt6t3=j%Tz$L8Ur?)JBel1N z;y~~QH>kFFh5pgIwx;cT?J_?wyydnY_4D-)?`Dw9h0{(iTA%F?KVmB8c5`b)(zYt4 z#n{w)PW(l#%oc^^2WsatK}F}VuANS=1U;>Zc`<`WTdHY|`Iu`QdNti7=+CTvvV5za zsdptI6=+P{+iR^6qi7T~CGYXLVGJSlMxy_e``rx9j$0K+JfmOdTyn44+JD;;=SYn` z6mrpc6x5tDqkAwoZ>W^Kduj4Wp=WyAHkUT@-{l^>9y712!YqxLhk+*)zY10Qm$L4( zOIGV>gv~Y-U09XxJknmcTui_Cn0o2X7G)35&{nbO()svnb2ImMY3>aTONh&U@UbEy zh459oLF|Ids$`TNSL&?u^8wBh@YQ2AcVzgNfdEsN(xC* z4rA>na_Tv~w`crLut>X>voiMDf7I%?YzR-T=8xV96?gv9#Lv00Dz)T4cLKeuA`|W! z*gK`6Y&z%%m^4Mgr@an-Jy}0jwSC`Y-%`O;l*2@B!JgIzHl)}S6ti3iQ`2%jRx!PU znNkg&UqtXvt!TT%k3O7;SkXKh{6Xq$OpD$F+Zylwo5gvY&O^p(e+sUU)SH{wHbQ4R zp~hLWN~;}-S7XK=g`|C&y5tgZsZyNv@=+Z`p*(XnMEAGSwDf>+`$|_GajH1 zB~j|QgDuN*^sN4eFPNZy-3Ffe4a>)ICw{W_nkGorUamMWoXL*sX5R`?=MPuGAFr6f z+{PYo0FNS7GwBCb*WD-?#bR>J?%uQeTACRVvVALebNDHKCmO|0ayNHNz|A&>Th+DQ qJca4hyL+#DIdAJ!&u2bJ9CRYFFu?N4(6RMD8XHRoQrUj*=>Gw1i`>Tm diff --git a/front/src/main/resources/static/images/main/main_img.png.20251114 b/front/src/main/resources/static/images/main/main_img.png.20251114 deleted file mode 100644 index 5f00d4c751e4234e3cc5b69160017f0f6637eef7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 41819 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

c! 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 N002ovPDHLkV1j6mnZW=6 diff --git a/front/src/main/resources/static/images/main/main_img_left.png.20251114 b/front/src/main/resources/static/images/main/main_img_left.png.20251114 deleted file mode 100644 index a156a375a474120d62931830419872118848d452..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6855 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 diff --git a/front/src/main/webapp/WEB-INF/jsp/itms/sys/PrsnlPortletCreateManage2.jsp.20251111 b/front/src/main/webapp/WEB-INF/jsp/itms/sys/PrsnlPortletCreateManage2.jsp.20251111 deleted file mode 100644 index f8fb8ff4..00000000 --- a/front/src/main/webapp/WEB-INF/jsp/itms/sys/PrsnlPortletCreateManage2.jsp.20251111 +++ /dev/null @@ -1,421 +0,0 @@ - - -<% -/** - * @ Class Name : PrsnlPortletCreateManage2.jsp - * @ Description : 사용자포틀릿관리 목록2 조회 - * @ Modification Information - * @ - * @ 수정일 수정자 수정내용 - * @ ---------- -------- --------------------------- - * @ 2025.03.10 나혁제 최초 생성 - * - * @ author urp 인프라본부 나혁제 - * @ since 2025.03.10 - * @ version 1.0 - * @ see - * - */ -%> - -<%@ page contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> -<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> -<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%> -<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> -<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> -<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %> - - -" rel="stylesheet" type="text/css"> - - -<%-- 2025.08.29 나혁제 스크립트 오류가 발생함 - - ---%> - - - - - - - - -사용자포틀릿관리2 - -<%-- 2025.03.10 나혁제 로컬에서 사용 - - ---%> - - - - - - - - - - - - - - <%-- 2025.03.10 나혁제 신디자인 적용 -

- --%> -
- -
- -
- -

사용자 포틀릿관리

- - -
-
-
- -
-
-
- -
- - - ※포틀릿을 하나도 지정하지 않는 경우 업무게시판, 공지사항 포틀릿은 기본으로 보여집니다. -

-
- -
- -

${result2.prsnlKoreanNm}

-
-
-
-
-
- - -
-
- - - - - -
-
-
-
-
-
- - -
-
- - - - - -
-
-
-
-
- -
- - -
-
-
-
- - - <%-- 2025.03.10 나혁제 신디자인 적용 - -
- -
-
- - -
- -
- -
- - --%> -
-
-
- \ No newline at end of file diff --git a/front/src/main/webapp/WEB-INF/jsp/main/MainView.jsp.20250310 b/front/src/main/webapp/WEB-INF/jsp/main/MainView.jsp.20250310 deleted file mode 100644 index 7ae46f5b..00000000 --- a/front/src/main/webapp/WEB-INF/jsp/main/MainView.jsp.20250310 +++ /dev/null @@ -1,239 +0,0 @@ -<%-- - Class Name : LoginUsr.jsp - Description : 로그인화면 - Modification Information - - 수정일 수정자 수정내용 - ------- -------- --------------------------- - 2025.01.03 나혁제 최초생성 - - author : urp 인프라본부 나혁제 - since : 2025.01.03 ---%> - -<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> - -<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> -<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> -<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%> -<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> -<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> -<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %> - - - -
- -
- -
-

ur ITSM v2.0

-

ur ITSM 업무에 대한 전반적인 정보를 지원합니다.

-
- - - -
- -
-
-

- 오늘의 할일 - 더보기 -

- - <%-- - - "> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
자산관리
대분류중분류소분류자산번호자산명상태호스트명제조사모델유지보수대상
대분류중분류소분류자산번호자산명상태호스트명제조사모델유지보수대상
- --%> - - -
-
- - - -
-
-

- 최신 업무 공지 - 더보기 -

- - -
-
- - - <%-- - -
-
-

- 오늘의 할일11 - 더보기 -

- - -
-
- - --%> - -
- - - <%-- - -
-
-

- 테스트 div - 더보기 -

- - -
-
- - --%> - - - -
- -
- diff --git a/front/src/main/webapp/WEB-INF/jsp/main/MainView.jsp.20251112 b/front/src/main/webapp/WEB-INF/jsp/main/MainView.jsp.20251112 deleted file mode 100644 index 5c0f873f..00000000 --- a/front/src/main/webapp/WEB-INF/jsp/main/MainView.jsp.20251112 +++ /dev/null @@ -1,371 +0,0 @@ -<%-- - Class Name : LoginUsr.jsp - Description : 로그인화면 - Modification Information - - 수정일 수정자 수정내용 - ------- -------- --------------------------- - 2025.01.03 나혁제 최초생성 - - author : urp 인프라본부 나혁제 - since : 2025.01.03 ---%> - -<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> - -<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> -<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> -<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%> -<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> -<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> -<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %> - - -<%-- - - ---%> - - - - - - - - - - - - - - - - - - - - - -
- -
- -
-

ur ITSM v2.0

-

ur ITSM 업무에 대한 전반적인 정보를 지원합니다.

-
- - - -
-
- - -
-
- - - - - - - -
-
-
-
- -
-
- - -
-
-
-
- - -
- - -
-
- - - - - - - -
-
-
-
- -
-
- - -
-
-
-
- - <%-- - -
-
-

- 오늘의 할일 - 더보기 -

- - -
-
- - - -
-
-

- 최신 업무 공지 - 더보기 -

- - -
-
- - --%> - -
- - - <%-- - -
-
-

- 테스트 div - 더보기 -

- - -
-
- - --%> - - - -
- -
- -