@charset "utf-8";

:root {

}

/* 게시판 기능 */
.board-function {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 10;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(20px);
}

.board-function > ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.board-function > ul > li {
    position: relative;
    height: 100%;
    padding: 0 33px 0 33px;
    cursor: pointer;
}

.board-function > ul > li::before {
    display: block;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background: rgba(255, 255, 255, 0.15);
    width: 1px;
    height: 100%;
}

.board-function > ul > li:last-child::before {
    display: none;
}

.board-function > ul > li > ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 37px;
}

.board-function > ul > li > ul > li:first-child {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.board-function > ul > li > ul > li input {
    width: 20px;
    height: 20px;
    border: 0;
    border-radius: 0;
    cursor: pointer;
}

.board-function > ul > li  > a,
.board-function > ul > li > ul > li label,
.board-function > ul > li > ul > li button {
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-KR-base-2);
    font-weight: 400;
    background: none;
    cursor: pointer;
}

/* 게시판 리스트 */
.board-list-wrap {
    width: 100%;
    height: auto;
}

.board-output-wrap {
    width: 100%;
    height: auto;
    border-top: 4px solid var(--signature-color);
}

.board-ouput-checkbox {
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 16px;
    z-index: 1;
}

.board-ouput-checkbox input[type="checkbox"] {
    width: 100%;
    height: 100%;
    appearance: none;
    transition: all 0.5s;
    background: #f4f4f4;
    border: 4px solid #f4f4f4;
    border-radius: 300px;
    cursor: pointer;
}

.board-ouput-checkbox input[type="checkbox"]:checked {
    background: var(--signature-color);
    border: 4px solid #f4f4f4;
}

.board-output-wrap label {
    display: none;
}

.board-output-modify {
    position: absolute;
    right: 137px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 100px;
    z-index: 1;
    background: transparent;
    transition: all 0.5s;
    border: 2px solid #eeeeee;
    margin-right: 20px;
}

.board-output-modify.hover {
    background: var(--signature-color);
    border: 2px solid var(--signature-color);
}

.board-output-modify a {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.board-output-modify i {
    font-size: 19px;
    color: #505050;
    transition: all 0.5s;
}

.board-output-modify.hover i {
    color: #fff;
}

.board-output-frame {
    width: 100%;
    height: auto;
}

.board-output-frame ul {
    width: 100%;
    height: auto;
}

.board-output-frame li {
    position: relative;
    padding: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    border-bottom: 1px solid #dcdcdc;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    transition: all .5s;
    cursor: pointer;
}

.board-ouput-list {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.board-ouput-list h1,
.board-ouput-list p {
    font-size: clamp(1.125rem, 1vw, 20px);
    font-weight: 300;
}

.board-ouput-list h1 {
    width: 50%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.board-ouput-list-file a {
    font-size: clamp(1.125rem, 1vw, 1.25rem);
    color: #505050;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
}

.board-ouput-list-file i {
    font-size: 1.125rem;
    color: #505050;
    margin-right: 9px;
    transition: all 0.5s;
}

.board-output-bottom-page,
.board-output-bottom-search {
    width: 100%;
    height: 47px;
    margin-top: 56px;
}

.pg_wrap {
    width: 100%;
    height: 100%;
}

.pg {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 18px;
    padding-left: 30px;
}

.pg span,
.pg a {
    font-size: 18px;
    font-weight: 500;
}

.pg span {
    color: var(--signature-color);
}

.board-output-bottom-search form,
.board-output-bottom-search fieldset,
.board-output-bottom-search-frame {
    width: 100%;
    height: 100%;
}

.board-output-bottom-search label {
    display: none;
}

.board-output-bottom-search-frame {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.board-output-bottom-search-frame select,
.board-output-bottom-search-frame input,
.board-output-bottom-search-frame button {
    outline: none;
}

.board-output-bottom-search-frame select {
    font-size: 1rem;
    font-family: var(--font-KR-base-2);
    color: #fff;
    padding: 0 20px;
    height: 100%;
    background: #434343 url(./img/icon_arrow.svg) right 20px center no-repeat;
}

.board-output-bottom-searchbar {
    width: 300px;
    height: 100%;
}

.board-output-bottom-search-frame input {
    font-size: 1rem;
    font-family: var(--font-KR-base-2);
    font-weight: 400;
    color: var(--signature-color);
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    transition: all .5s;
    text-align: center;
}

.board-output-bottom-search-frame input::placeholder {
    font-size: 1rem;
    font-family: var(--font-KR-base-2);
    font-weight: 400;
    color: #434343;
}

.board-output-bottom-search-frame input:focus {
    background: #c8eaee;
}

.board-output-bottom-search-frame button {
    height: 100%;
    padding: 0 20px;
    background: var(--signature-color);
    cursor: pointer;
}

.board-output-bottom-search-frame p {
    font-size: 1rem;
    font-family: var(--font-KR-base-2);
    font-weight: 500;
    color: #fff;
}

/* 게시판 글쓰기 */
.board-write-wrap {
    width: 100%;
    height: 100vh;
    background: url(./img/bbs_write_bg.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.board-write-wrap::before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(transparent, #000 76%);
}

.board-write-title-wrap {
    height: 100%;
    padding-left: 100px;
    padding-top: 100px;
}

.board-write-logo {
    position: relative;
    width: 170px;
}

.board-write-title {
    position: relative;
    margin-top: 37px;
}

.board-write-title h1 {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    padding-top: 46px;
    border-top: 1px solid #4d4d4d;
}

.board-write-title h1 span {
    display: block;
    font-weight: 100;
    margin-top: 7px;
}

.board-write-system-name {
    position: absolute;
    left: 100px;
    bottom: 100px;
}

.board-write-system-name h1 {
    font-size: 100px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    white-space: nowrap;
    mix-blend-mode: exclusion;
}

.board-write-info-wrap {
    position: absolute;
    right: 0;
    top: 0;
    width: 40vw;
    height: 100%;
    padding: 84px;
    backdrop-filter: blur(13px) grayscale(1);
    border-radius: 15px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.5);
}

.board-write-info-common label {
    display: none;
}

.board-write-info-common {
    margin-top: 30px;
}

.board-write-info-common:nth-child(1) {
    margin-top: 0;
}

.board-write-info-common input {
    width: 100%;
    font-family: var(--font-KR-base-2);
    font-size: 1rem;
    font-weight: 300;
    color: #fff;
    background: transparent;
    transition: all 0.5s;
}

.board-write-info-common input {
    border-bottom: 1px solid #454545;
    padding: 0 17px 17px 17px;
}

.board-write-info-common input::placeholder {
    font-family: var(--font-KR-base-2);
    font-weight: 400;
}

.board-write-info-common input::placeholder {
    color: #fff;
}

.board-write-info-common input:focus {
    outline: none;
    border-bottom: 1px solid var(--signature-color);
}

.board-write-img-common{
    margin-top: 40px;
}

.board-write-img-0 {
    margin-top: 60px;
}

.board-write-img-common label {
    color: var(--signature-color);
    font-size: 17px;
    font-weight: 600;
    padding: 0 17px 17px 17px;
    display: block;
}

.board-write-img-common input {
    padding-top: 17px;
    border-top: 1px solid #454545;
    font-size: .875rem;
}

.board-write-img-common input[type="file"]::file-selector-button {
    font-size: .875rem;
    font-family: var(--font-KR-base-2);
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 5px;
    background: #fff;
    border: 0;
    cursor: pointer;
    margin-right: 10px;
}

.board-write-info-btn {
    width: 100%;
    height: auto;
    margin-top: 70px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.board-write-info-btn a,
.board-write-info-btn button {
    width: 100px;
    height: 54px;
    font-size: 1rem;
    color: #fff;
    font-family: var(--font-KR-base-2);
    font-weight: 600;
    display: flex;
    background: #2d2d2d;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
}

.board-write-info-btn button {
    margin-left: 20px;
    background: var(--signature-color);
    cursor: pointer;
}

.file_del {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    padding-left: 17px;
}

.file_del label {
    font-size: 14px;
    font-weight: 400;
    display: block;
    width: calc(100% - 18px - 23px);
    height: auto;
    text-align: left;
    padding: 0;
    margin: 0;
    margin-left: 9px;
    background: none;
    border-radius: 0;
}

.file_del input {
    width: 18px;
    height: 18px;
}

.board-write-thumnail-view {
    margin-top: 28px;
    width: 100%;
    height: 114px;
    padding-left: 17px;
}

.board-write-thumnail-view img {
    width: auto;
    height: 100%;
}

/* 글보기 */
.board-view-title-wrap {
    padding: 35px 45px;
    border-top: 4px solid var(--signature-color);
    background: #EFFAFB;
}

.board-view-title-wrap h1,
.board-view-title-wrap span {
    color: #000;
}

.board-view-title-wrap h1 {
    width: 100%;
    font-size: 22px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;;
}

.board-view-title-wrap span {
    display: block;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 7px;
}

.board-view-info-wrap {
    width: 100%;
    height: auto;
    margin-top: 68px;
}

.board-view-info-wrap p {
    margin-top: 31px;
    font-size: 18px;
    font-weight: 300;
}

.board-view-info-file {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.board-view-info-file img {
    max-width: 100%;
    height: auto;
    margin-top: 50px;
}

.board-view-info-file img:nth-child(1) {
    margin-top: 0;
}

.board-view-attach-wrap {
    margin-top: 68px;
    background: #f8f8f8;
    padding: 25px 33px;
}

.board-view-attach-wrap ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}

.board-view-attach-wrap a {
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.board-view-attach-wrap i {
    font-size: 18px;
    color: #a0a0a0;
    margin-right: 8px;
}

.board-view-btn-wrap {
    width: 110px;
    height: 59px;
    border: 1px solid #e5e5e5;
    background: transparent;
    margin: 50px auto 0 auto;
    transition: all .5s;
}

.board-view-btn-wrap.hover {
    border: 1px solid var(--signature-color);
    background: var(--signature-color);
}

.board-view-btn-wrap a {
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    transition: all .5s;
}

.board-view-btn-wrap.hover  a {
    color: #fff;
}   