@charset "utf-8"; /* box */ .content { width: 100%; height: 100%; } .row { padding-top: 5px; padding-bottom: 5px; } .box { background-color: var(--white); height: auto; padding: 2rem; border-radius: 10px; border: 0.1rem solid var(--tk-gray-40); } .page-title { font-size: 3rem; font-weight: bold; color: var(--green); } .admin-page-title { font-size:1.8rem; font-weight: bold; color: var(--blue); } .admin-sec-title { font-size: 1.8rem; font-weight: bold; color: var(--blue); } .box-title { font-size: 1.3rem; } .box-out-title { font-size: 2.5rem; font-weight: bold; padding-bottom: 1rem; a{ font-size: 1.4rem; } } .box-content { font-size: 2rem; color: var(--blue); font-family: "GmarketSans-B"; } .chart-title { font-size: 1.4rem; font-weight: bold; } .content-box { height: calc(100% - 48px); /* background-color: aliceblue; */ } .detail-bold { font-size: 1.6rem; font-weight: 700; } .detail-text { font-size: 1.6rem; font-weight: 400; } .date-text { font-size: 1.4rem; font-weight: 400; } .search-list { display: grid; gap: 24px; grid-template-columns: 1fr 1fr 1fr; .img-wrap { height: 20rem; background-color: #EDF1F5; background-repeat: no-repeat; background-position: center; background-size: contain; border-radius: inherit; text-align: center; } .img-wrap.main_1 { background-image: url(https://uiux.egovframe.go.kr/resources/img/guide/contents/main/img_main_1.png); } .conts-wrap { display: flex; align-items: flex-start; justify-content: flex-start; flex-direction: column; padding: 2.4rem 0 0 0 ; gap: 1.2rem; width: 100%; color: var(--tk-gray-70); } .conts-wrap .tit { font-size: 1.9rem; } } /* btn */ .small-btn { width: 120px; padding: 0.7rem 1rem; border-radius: 0.5rem; font-size: 1.5rem; } .large-btn { width: 100%; padding: 0.5rem 0; border-radius: 0.5rem; } .icon-btn { padding: 0.5rem; border-radius: 50%; } .close-btn { font-size: 1.6rem; font-weight: 900; } .logout-btn { padding: 0.5rem 1rem; color: var(--dark); position: relative; font-size: 1.6rem; } .logout-btn::before { content: ""; width: 1px; height: 10px; position: absolute; top: 50%; left: 0; transform: translateY(-50%); background-color: #aaa; } .close-btn { color: #d6def6; } .comment-btn { width: 100%; height: 6.5rem; max-height: 6.5rem } .blue-btn, .blue-border-btn:hover { background-color: var(--blue); color: var(--white); transition: all 0.3s ease-in-out; } .red-btn, .red-border-btn:hover { background-color: var(--red); color: var(--white); transition: all 0.3s ease-in-out; } .green-btn, .green-border-btn:hover { background-color: var(--green); color: var(--white); transition: all 0.3s ease-in-out; } .orange-btn, .orange-border-btn:hover { background-color: var(--orange); color: var(--white); transition: all 0.3s ease-in-out; } .darkg-btn, .darkg-border-btn:hover { background-color: var(--gray-dark); color: var(--white); transition: all 0.3s ease-in-out; } .gray-btn, .gray-border-btn:hover { background-color: #eee; color: #333; transition: all 0.3s ease-in-out; } .blue-border-btn { border: 1px solid var(--blue); color: var(--blue); background-color: var(--white); } .red-border-btn { border: 1px solid var(--red); color: var(--red); background-color: var(--white); } .green-border-btn { border: 1px solid var(--green); color: var(--green); background-color: var(--white); } .orange-border-btn { border: 1px solid var(--orange); color: var(--orange); background-color: var(--white); } .darkg-border-btn { border: 1px solid var(--gray-dark); color: var(--gray-dark); background-color: var(--white); } .gray-border-btn { border: 1px solid #aaa; color: #aaa; background-color: var(--white); } .white-border-btn { border: 1px solid var(--white); color: var(--white); background-color: transparent; } .tp-btn { background-color: transparent; width: 15px; height: 15px; margin-left: 10px; } button:disabled { background-color: #eee; color: #333; } .del-icon-btn { width: 25px; height: 25px; padding: 5px; background-color: var(--red); color: var(--white); border-radius: 50%; } .set-icon-btn { width: 25px; height: 25px; padding: 5px; background-color: var(--darkG); color: var(--white); border-radius: 50%; } /* 모달 */ .modal-wrapper { background-color: rgba(0, 0, 0, 0.5); position: fixed; width: 100%; height: 100%; top: 0; left: 0; display: flex; justify-content: center; align-items: center; z-index: 11000; } .modal-container { background: #fff; min-width: 500px; width: 35%; /* height: 80%; */ border-radius: 5px; display: grid; grid-template-rows: auto 1fr auto; padding: 20px; box-sizing: border-box; max-height: 95%; min-height: 500px; } .modal-title { width: 100%; border-bottom: 1px solid #d4cccc; padding: 10px 0; } .modal-subtitle { font-size: 1.3rem; font-weight: 600; } .modal-content-monthly { width: 100%; padding: 20px 0; overflow-y: auto; } .large-modal { width: 90%; } .medium-modal { width: 60%; } .small-modal { min-width: 200px; min-height: 200px; max-width: 450px; height: auto; max-height: 50%; } .list-modal { width: 80%; height: 80%; } .alert-write { font-size: 1.6rem; line-height: 180%; } .modal-content-monthly::-webkit-scrollbar { width: 10px; } .modal-content-monthly::-webkit-scrollbar-thumb { background-color: #6b6b6b; border-radius: 10px; background-clip: padding-box; border: 2px solid transparent; } .modal-content-monthly::-webkit-scrollbar-track { background-color: #eee; border-radius: 10px; box-shadow: inset 0px 0px 5px white; } .modal-end { width: 100%; padding: 15px 0; } .alert-modal .modal-end button, .small-modal .modal-end button { margin-left: 0; } .full-input, .full-select { width: 100%; } .half-input, .half-select { width: 50%; } /* table */ .list-table .admin-list.list-table { border-top: 1px solid var(--light); border-bottom: 1px solid var(--light); } .admin-wrap .list-table thead th { background-color: var(--teal); padding: 10px 0; font-family: "yungju"; font-size: 1.2rem; } .list-table tbody tr, .admin-list.list-table tbody tr, .form-table2 tr { border-top: 1px solid var(--light); } .admin-wrap .list-table tbody td, .admin-list.list-table tbody td { font-size: 1.2rem; } .list-table tbody tr:nth-child(even) { background-color: var(--sky-green); } .admin-wrap .admin-list.list-table thead th { background-color: var(--light); font-family: "Pretendard-B"; font-size: 1.2rem; } .admin-list.list-table tbody tr:nth-child(even) { background-color: var(--background-white); } .admin-style .form-table, .content-navigate { border-top: 1px solid var(--gray-dark); border-bottom: 1px solid var(--gray-dark); } .form-table { border-top: 1px solid var(--green); border-bottom: 1px solid var(--green); } .form-table2 { border: 1px solid var(--light); } .form-table th, .form-table td, .form-table2 th, .form-table2 td { padding: 1rem; position: relative; } .form-table2 th { background-color: var(--teal); border-right: 1px solid var(--light); } .form-table-adm th { background-color: var(--light); border-right: 1px solid var(--white); } .admin-style .form-table2 th { background-color: var(--light); border-right: 1px solid var(--light); } .form-table-style .form-table { border-top: none; border-bottom: none; } .detail-table { border-top: 2px solid var(--green); border-bottom: 1px solid var(--green); } .cmmn-table tr td:nth-of-type(2) { text-align: left; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; word-break: break-all; } .cmmn-table2 tr td:nth-of-type(2), .cmmn-table2 tr td:nth-of-type(3) { text-align: left; } .admin-list.faq-table tbody tr:nth-child(even), .list-table.faq-table tbody tr:nth-child(even) { background-color: var(--white); } .admin-list.faq-table tbody tr.answer, .list-table.faq-table tbody tr.answer { background-color: var(--sky-green); } .admin-detail { border-top: 2px solid var(--light); border-bottom: 1px solid var(--light); } .detail-table .detail-title{ background-color: var(--white); border-bottom: 1px solid var(--green); } .admin-detail .detail-title { background-color: var(--light); border-bottom: 1px solid var(--blue); } .detail-title td { padding: 2rem 1.5rem; } .detail-table-title { font-size: 1.8rem; } .complex-table th { border: 1px solid var(--white); } .content-navigate tr { border-top: 1px solid var(--gray-dark); } .content-navigate tr td:nth-of-type(1) { border-right: 1px solid var(--light); } /* 파일찾기 및 필수 */ .form-table input[type="file"] { position: absolute; width: 0; height: 0; padding: 0; overflow: hidden; border: 0; } .filebox { height: 4rem; } .filebox .upload-name { display: inline-block; padding: 0.7rem 1rem; vertical-align: middle; border: 1px solid #dddddd; color: #999999; } .form-table label { display: inline-block; } .essential { font-size: 1.3rem; } .essential span { color: var(--red); } .form-table th span, .form-table-style .form-table label.form-title, .form-table label.form-title { position: relative; } .form-table th span::after, .form-table-style .form-table label.form-title::after, .form-table label.form-title::after { content: "*"; color: var(--red); position: absolute; top: 0; right: 0; transform: translate(100%, -50%); } /* 서치 */ .search-bar { position: relative; .box{ position: relative; margin: 0 auto; height: 5.6rem; width: 54.8rem; padding: 0; border: 0; } } .search-input{ border-radius: 0.8rem; border: 1px solid var(--tk-gray-60); width: 100%; height: 100%; } /* placeholder style */ .search-input::-webkit-input-placeholder { color: #999999; } .search-input::-moz-placeholder { color: #999999; } .search-input:-ms-input-placeholder { color: #999999; } .search-input::-ms-input-placeholder { color: #999999; } .search-input:focus { border: 2px solid var(--tk-primary-40); /* 원하는 색상으로 변경 (예: 파란색) */ outline: none; /* 포커스 시 outline 제거 (선택사항) */ } .search-button { position: absolute; top: 15px; right: 1rem; } .search-icon { color: #1d1d1d; } .condition-input { border-left: 1px solid var(--dark); } /*PAGINATION*/ .pagination-button-type { display: flex; align-items: center; justify-content: center; font-size: 1.3rem; } .pagination-button-type a { display: block; text-align: center; cursor: pointer; border: 1px solid var(--dark); padding: 0 7px; border-radius: 0.5rem; } /* 정우추가 */ .pagination-button-type a.prev:after { content: "\003C"; font-weight: 900; } .pagination-button-type a.next:after { content: "\003E"; font-weight: 900; } .pagination-button-type a.first-page:after { content: "\003C\003C"; font-weight: 900; } .pagination-button-type a.end-page:after { content: "\003E\003E"; font-weight: 900; } .pagination-button-type a.active { background-color: var(--green); color: white; cursor: default !important; } /* 페이지 템플릿 */ .gall-img { width: 100%; height: 200px } .gall-img>img { width: 100%; height: 100%; object-fit: cover; } /* 댓글 */ .comment-zone { background-color: var(--skyblue); border-radius: 1rem; } .comment-zone2 { background-color: var(--background-white); border-radius: 1rem; } .comment-wrap { padding: 16px; background-color: var(--white); } .comment-item:not(:first-child) { border-top: 1px solid #ddd; } .parents-nodes { padding-left: 8px; } .children-nodes { padding-left: 8px; } .comment-user, .comment-text { font-size: 1.3rem; } .comment-date { color: var(--gray); font-size: 1.2; } .reply-zone { position: relative; margin-bottom: 10px; } .reply-input { border-radius: 50px; } .reply-btn { position: absolute; border-radius: 50px; top: 50%; right: 6px; transform: translateY(-50%); } /* 팝업 */ .popup-wrap { height: 100vh; } .popup-container { width: 100%; height: calc(100vh - 50px); } /* 트리 */ .p-tree { padding: 0.5rem 1rem; } .node-name { width: 100%; font-size: 1.2rem; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; word-break: break-all; } .selected { border: 1px solid var(--blue); border-radius: 0.3rem; } .ghost { height: 15px; color: transparent; border: 1px dashed var(--blue); } .ghost * { display: none; } /* 파일 목록 */ .file-wrap p { display: block; width: calc(100% - 15px); white-space: nowrap; text-overflow: ellipsis; overflow: hidden; } .file-wrap button.del-btn { width: 15px; } /* 목록형 공지사항 */ .list_news ul { overflow: hidden; height: 20rem; } .list_news ul li.leli, .list_news ul li:nth-child(2n+1) { margin-right: 4%; } .list_news ul li { float: left; position: relative; width: 48%; margin-bottom: 2px; } .list_news ul li a { display: block; float: left; width: 100%; vertical-align: middle; padding: 0 80px 0 8px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; line-height: 25px; font-size: 15px; color: #000; font-weight: 400; } .list_news ul li span { position: absolute; right: 0; top: 2px; margin-right: 0; text-align: right; font-size: 15px; color: #999; font-family: 'gothic'; font-weight: 500; } .list_news ul li:before { content: ''; display: inline-block; width: 3px; height: 3px; border-radius: 50%; background-color: #62656A; position: absolute; left: 0; top: 50%; margin-top: -1.5px; } /* 메인 스와이퍼 슬라이드 */ .swiper-container { width: 100%; height: 100%; position: relative; overflow: hidden; } .swiper-wrapper{ } .swiper-slide{height: 20rem;} .swiper-slide img { width: 100%; height: 100%; background-color: #aaa; text-align: center; } .banner-zone { position: relative; .button { font-size: 0; border: none; background-color: transparent; width: 35px; height: 35px; border: 1px solid #ddd; border-radius: 50%; display: inline-block; vertical-align: middle; cursor: pointer; position: absolute; transition: all 0.1s; } .swiper-slide{height: 20rem;} /* 이전 버튼 (prev) */ .swiper-button-prev { &::after { content: ''; /* content 속성을 추가하여 ::after 가상 요소를 제대로 표시 */ background-image: url(../img/prev.svg); background-size: cover; width: 9px; height: 13px; display: block; /* 이미지를 블록 요소로 만들어 크기 적용 */ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); /* 이미지를 버튼 중앙에 배치 */ } } .swiper-pagination{ left: 50%; bottom: 0px; } /* 다음 버튼 (next) */ .swiper-button-next { &::after { content: ''; /* content 속성을 추가하여 ::after 가상 요소를 제대로 표시 */ background-image: url(../img/next.svg); background-size: cover; width: 9px; height: 13px; display: block; /* 이미지를 블록 요소로 만들어 크기 적용 */ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); /* 이미지를 버튼 중앙에 배치 */ } } .button.stop{ &::after { content: ''; /* content 속성을 추가하여 ::after 가상 요소를 제대로 표시 */ background-image: url(../img/stop.svg); background-size: cover; width: 9px; height: 13px; display: block; /* 이미지를 블록 요소로 만들어 크기 적용 */ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); /* 이미지를 버튼 중앙에 배치 */ } } .button.play{ &::after { content: ''; /* content 속성을 추가하여 ::after 가상 요소를 제대로 표시 */ background-image: url(../img/play.svg); background-size: cover; width: 9px; height: 13px; display: block; /* 이미지를 블록 요소로 만들어 크기 적용 */ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); /* 이미지를 버튼 중앙에 배치 */ } } } .quick-link { display: flex ; width: 100%; height: 145px; justify-content: space-between; align-items: flex-start; gap: 10px; transition: height 0.4s; } .quick-link li { display: flex ; align-items: center; flex-direction: column; width: 20%; padding: 22px 10px; border-radius: 15px; border: 1px solid #EEE; background: #FFF; transition: all 0.3s; .link { display: flex ; flex-direction: column; justify-content: center; align-items: center; width: 144px; color: #000; text-align: center; } .icon.n1 { background-image: url(../img/A00.svg); width: 51px; height: 50px; } }