/* BASIC css start */
/* =========================================
   상단 탭 & 마키 배너 공통 스타일
   ========================================= */
.top-nav-area {
    width: 100%;
    background: #fff;
    margin-top: 20px;
}

.top-tabs {
    display: flex;
    list-style: none;
    border-bottom: 1px solid #DBDBDB;
    max-width: var(--layout-total-width);
    margin: 0 auto;
}

.top-tabs li {
    flex: 1;
    text-align: center;
    position: relative;
}

.top-tabs li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background-color: #dbdbdb;
}

.top-tabs a {
    display: block;
    padding: 31px 0;
    font-size: 22px;
    color: #000;
    font-weight: 600;
}

.top-tabs li.active a {
    color: var(--main-color);
    font-weight: 700;
}

.top-tabs li.active::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #3b1790;
    z-index: 1;
}

.mo-text {
    display: none;
}

.cateName {
    font-size: 28px;
    font-weight: 600;
    padding-top: 24px;
}

.top-nav-area+.cateName {
    padding-top: 48px;
}

/* =========================================
   목록화면
   ========================================= */

.cw-boardlist {
    margin-top: 16px;
    border-top: 2px solid #000;
}

.cw-boardlist .post.header {
    display: none;
}

.cw-boardlist .post {
    border-bottom: 1px solid #DBDBDB;
    padding: 36px 20px;
}

.cw-boardlist .post a {
    color: #000;
}

.cw-boardlist .post a img[src='/board/images/neo_default.gif'] {
    display: none;
}

.cw-boardlist .post .subject {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.42;
}

.cw-boardlist .post .subject .product {
    display: none;
}

.cw-boardlist .post .subject .complete {
    color: #FD7106;
    font-size: 16px;
    font-weight: 600;
}

.cw-boardlist .notice .subject {
    padding-left: 0;
    gap: 8px;
    font-weight: 700;
}

.cw-boardlist .post :where(.writer, .date, .read, .recommend) {
    width: auto;
    font-size: 16px;
    font-weight: 400;
    color: #888;
    line-height: 1;
}

.cw-boardlist .post .text-end span:not(.displaynone)~span:not(.displaynone)::before {
    content: "";
    display: inline-block;
    background: #DBDBDB;
    margin: 0 8px;
    height: 3px;
    width: 3px;
    border-radius: 50%;
    vertical-align: middle;
}

.cw-boardlist .notice .subject .round-text {
    flex-shrink: 0;
    background: var(--main-color);
    color: #fff;
    border: 1px solid var(--main-color);
    width: 43px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    line-height: 1;
    padding: 0;
    font-size: 13px;
    font-weight: 700;
    position: relative;
    top: 2px;
}

/* 데이터 없을 때 */
.no-data {
    text-align: center;
    padding: 80px 0;
    border-bottom: 1px solid #DBDBDB;
}

.no-data .icon_box {
    margin-bottom: 15px;
}

.no-data p {
    font-size: 15px;
    color: #bbb;
    font-weight: 400;
}

.newPaging {
    padding: 64px 0 0;
    position: relative;
}

.cw-boardsearch form {
    margin-top: 64px;
    background: #FAFAFA;
    gap: 8px;
    padding: 28px 16px;
}

.cw-boardsearch form select:not(#dummy_id) {
    outline: 0;
    background: #fff url(/design/cbtis/images/select_bg1.svg) no-repeat center right 18px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    padding: 0 18px;
    font-size: 17px;
    font-weight: 500;
    color: #000;
    border: 1px solid #dbdbdb;
    border-radius: 56px;
    width: 176px;
    height: 56px;
    background-size: 12px;
}

.cw-boardsearch form .inputBox {
    color: #000;
    border: 1px solid #dbdbdb;
    background: #fff;
    border-radius: 56px;
    height: 56px;
    flex: 1;
    max-width: 440px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 16px;
}

.cw-boardsearch form .inputBox input {
    height: 54px;
    border: 0;
    outline: 0;
    flex: 1;
    padding: 0 16px 0 20px;
    color: #000;
    font-size: 17px;
    font-weight: 500;
}


/* =========================================
   보기화면
   ========================================= */

.board_view {
    max-width: calc(1128px + (var(--layout-side-padding) * 2));
}

.board_view :is(.pageTitle, .top-nav-area, .board_category, .cateName) {
    display: none;
}

.cw-boardview {
    margin-top: 34px;
}

.cw-boardview .view-info {
    border-top: 0;
}

.cw-boardview .view-info dt {
    padding: 0;
    border-bottom: 0;
    font-size: 24px;
    font-weight: 600;
    color: #000;
}



.cw-boardview .view-info dd {
    padding: 12px 0 34px;
    border-bottom: 1px solid #DBDBDB;
    color: #888888;
    font-size: 16px;
    font-weight: 400;
}

.cw-boardview .view-contents {
    padding: 40px 0;
    font-size: 18px;
    font-weight: 400;
    color: #000;
    border-bottom: 1px solid #DBDBDB;
    line-height: 1.6;
}

.cw-boardbtns {
    padding: 56px 0;
    gap: 6px;
}

.cw-boardbtns a {
    border-radius: 8px;
    color: #000;
    background: #fff;
    border: 1px solid #000;
    max-width: 280px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
}

.cw-boardview .view-contents img {
    max-width: 100%;
}


.board_btn.-pc {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
}

.board_btn a.btn {
    color: #fff;
    background: var(--main-color);
    border-radius: 8px;
    width: 216px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    gap: 6px;
}

.cw-boardview .view-info dd .author::after {
    background: #DBDBDB;
    margin: 0 8px;
    height: 3px;
    width: 3px;
    border-radius: 50%;
}

.cw-boardview .view-prd {
    border: 0;
    border-top: 0;
    border-bottom: 1px solid #dbdbdb;
    padding: 9px 0;
    margin: 0;
    grid-template-columns: 116px auto;
}

.cw-boardview .view-prd dt {
    width: 88px;
}

.cw-boardview .view-prd dd {
    font-size: 18px;
    font-weight: 600;
}

.cw-boardview .view-prd dd.name {
    font-weight: 500;
    margin-bottom: 8px;
}

.cw-boardview .view-prd dd strong {
    font-weight: 600;
}

/* =========================================
   비밀번호 화면
   ========================================= */
.newContainer.board_password {
    max-width: calc(480px + (var(--layout-side-padding) * 2));
}

.newContainer.board_password .pageTitle {
    font-size: 32px;
    margin: 64px auto 0;
}

.newContainer.board_password .form-wrapper {
    margin-top: 56px;
}

.newContainer.board_password .form-wrapper input {
    width: 100%;
    border: 1px solid #dbdbdb;
    padding: 0 20px;
    height: 56px;
}

.newContainer.board_password .btn-password {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.newContainer.board_password .btn-password a {
    border-radius: 8px;
    height: 56px;
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

.newContainer.board_password .btn-password a+a {
    background: var(--main-color);
    color: #fff;
    border: 1px solid var(--main-color);
}

.cw-boardview .view-info dt .reply-state {
    font-size: 16px;
    color: #FD7106;
    font-weight: 700;
    margin-left: 4px;
}

/* =========================================
   쓰기화면
   ========================================= */

.board_write {
    max-width: calc(1128px + (var(--layout-side-padding) * 2));
}

.board_write :is(.pageTitle, .top-nav-area, .board_category) {
    display: none;
}

.board_write .top-nav-area+.cateName {
    padding-top: 0;
}

.cw-boardwrite {
    margin-top: 20px;
}

.cw-boardwrite .write-info.line,
.cw-boardwrite .write-info:not(.write-info ~ .write-info) {
    border-top: 2px solid #000;
}

.cw-boardwrite .write-info {
    grid-template-columns: 185px auto;
    border-bottom: 1px solid #EAEAEA;
    font-size: 14px;
    font-weight: 500;
    padding: 0;
}

.cw-boardwrite .write-info dt {
    padding: 16px 0 16px 16px;
    color: #888888;
    font-size: 16px;
    font-weight: 700;
}

.cw-boardwrite .write-info dd {
    padding: 16px 0 16px 16px;
    border-left: 1px solid #eaeaea;
}

.cw-boardwrite .write-info :where(.cw-textfield, .cw-select-box) {
    height: 48px;
    width: 100%;
    border-radius: 0;
    border: 1px solid #dbdbdb;
    padding: 0 12px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    max-width: 336px;
}

.-flex {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cw-boardwrite .write-info dd .auto-lock {
    color: var(--main-color);
    margin-top: 0;
    font-weight: 500;
}

.-flex select#subhead {
    border: 1px solid #dbdbdb;
    border-radius: 0;
    padding: 0 12px;
    font-size: 16px;
    outline: 0;
    background: #fff url(/design/cbtis/images/select_bg1.svg) no-repeat center right 12px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    max-width: 176px;
}

.-flex input#bw_input_subject {
    flex: 1;
    max-width: 100%;
}

.cw-boardwrite .write-info dd .myorder .-flex {
    position: relative;
    gap: 8px;
    max-width: 464px;
    width: 100%;
}

.cw-boardwrite .write-info dd .myorder .-flex #ordernumclear {
    position: absolute;
    top: 15px;
    right: 138px;
}

.cw-boardwrite .write-info dd .myorder .-flex .btn-primary {
    width: 120px;
    height: 48px;
    border-radius: 5px;
    background: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cw-boardwrite .write-info dd textarea.cw-textfield {
    border: 1px solid #DBDBDB;
    padding: 12px;
    height: 200px;
    max-width: 100%;
    font-family: 'Pretendard', sans-serif !important;
    font-size: 16px;
}

.cw-boardwrite .write-info dd.file {
    column-gap: 8px;
}

.cw-boardwrite .write-info dd.file .cw-textfield {
    width: 100%;
}

.cw-boardwrite .write-info dd.file .btn {
    border: 1px solid #000000;
    border-radius: 5px;
    height: 48px;
    width: 48px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.board_write .cw-boardbtns a {
    max-width: 216px;
}

.board_write .cw-boardbtns a:first-child {
    background: var(--main-color);
    border: 1px solid var(--main-color);
    color: #fff;
}

@media screen and (max-width: 1024px) {

    /* =========================================
   상단 탭 & 마키 배너 공통 스타일
   ========================================= */
    .top-nav-area {
        margin-top: 8px;
    }

    .top-tabs li:not(:last-child)::after {
        height: 10px;
    }

    .top-tabs li.active::before {
        height: 3px;
    }

    .top-tabs a {
        font-size: 14px;
        padding: 16.5px 0;
    }

    /* 텍스트 전환 */
    .pc-text {
        display: none;
    }

    .mo-text {
        display: inline;
    }

    .cateName {
        font-size: 16px;
        padding-top: 0;
        font-weight: 700;
    }

    .top-nav-area+.cateName {
        padding-top: 24px;
    }



    /* =========================================
   목록화면
   ========================================= */
    .cw-boardlist .post {
        padding: 24px 16px;
    }

    .cw-boardlist .post .subject {
        font-size: 16px;
        gap: 6px;
    }

    .cw-boardlist .post .subject .complete {
        font-size: 14px;
    }

    .cw-boardlist .post :where(.writer, .date, .read, .recommend) {
        font-size: 14px;
    }

    .cw-boardlist .post .text-end span:not(.displaynone)~span:not(.displaynone)::before {
        margin: 0 4px;
    }

    .cw-boardlist .notice .subject .round-text {
        width: 38px;
        height: 23px;
        font-size: 13px;
        top: 0;
    }

    .newPaging {
        padding: 24px 0 0;
    }

    .cw-boardsearch form {
        margin-top: 16px;
        background: #fff;
        padding: 0;
        gap: 4px;
    }

    .cw-boardsearch form select:not(#dummy_id) {
        height: 36px;
        width: 84px;
        padding: 0 10px;
        font-size: 13px;
        font-weight: 400;
        background: #fff url(/design/cbtis/images/select_bg1.svg) no-repeat center right 10px;
        background-size: 10px;
    }

    .cw-boardsearch form .inputBox {
        max-width: 100%;
        height: 36px;
        padding-right: 12px;
        gap: 0;
    }

    .cw-boardsearch form .inputBox input {
        height: 34px;
        padding: 0 12px;
        font-size: 13px;
        font-weight: 400;
    }

    .cw-boardsearch form .inputBox a img {
        width: 18px;
    }

    /* =========================================
   보기화면
   ========================================= */
    .cw-boardview {
        margin-top: 50px;
    }

    .cw-boardview .view-info dt {
        font-size: 15px;
        position: relative;
    }

    .cw-boardview .view-info dd {
        padding: 8px 0 18px;
        font-size: 12px;
    }

    .cw-boardview .view-contents {
        padding: 16px 0;
        font-size: 13px;
        border-bottom: 0;
    }

    .cw-boardbtns {
        padding: 40px 0;
    }

    .cw-boardbtns .btn {
        max-width: 100%;
        border: 1px solid #DBDBDB;
        border-radius: 6px;
        height: 48px;
        font-size: 14px;
    }

    .board_btn.-mo {
        display: flex;
        margin-top: 16px;
    }

    .board_btn a.btn {
        width: 100%;
        border-radius: 4px;
        height: 32px;
        font-size: 12px;
        gap: 4px;
    }

    .board_btn a.btn img {
        width: 12px;
    }

    .cw-boardview .view-info dt .reply-state {
        font-size: 12px;
        position: absolute;
        bottom: -19px;
        right: 0;
    }

    .cw-boardview .view-prd {
        padding: 6px 0;
        grid-template-columns: 60px auto;
    }

    .cw-boardview .view-prd dd {
        font-size: 12px;
    }

    .cw-boardview .view-prd dd.name {
        margin-bottom: 6px;
    }

    .cw-boardview .view-prd dt {
        width: 48px;
    }

    /* =========================================
   비밀번호 화면
   ========================================= */
    .newContainer.board_password .pageTitle {
        margin: 32px auto 0;
        font-size: 19px;
    }

    .newContainer.board_password .form-wrapper {
        margin-top: 24px;
    }

    .newContainer.board_password .form-wrapper input {
        height: 42px;
        padding: 0 12px;
    }

    .newContainer.board_password .btn-password {
        margin-top: 24px;
    }

    .newContainer.board_password .btn-password a {
        height: 48px;
        border-radius: 6px;
        font-size: 14px;
    }

    .cw-boardlist .post .ico-reply img,
    .cw-boardlist .post .subject img[src^="/design/cbtis/images/"] {
        width: 14px;
    }

    /* =========================================
   쓰기화면
   ========================================= */
    .cw-boardwrite {
        margin-top: 24px;
    }

    .board_write .top-nav-area+.cateName {
        font-size: 19px;
        text-align: center;
        padding-top: 32px;
    }

    .cw-boardwrite .write-info.line,
    .cw-boardwrite .write-info:not(.write-info ~ .write-info) {
        border-top: 0;
    }

    .cw-boardwrite .write-info {
        border-bottom: 1px solid #dbdbdb;
        font-size: 12px;
        display: block;
    }

    .cw-boardwrite .write-info dt {
        padding: 28px 0 0 0;
        font-size: 13px;
    }


    .cw-boardwrite .write-info.line,
    .cw-boardwrite .write-info:not(.write-info ~ .write-info) dt {
        padding: 0;
    }

    .cw-boardwrite .write-info dd {
        border-left: 0;
        padding: 14px 0 16px;
    }

    .cw-boardwrite .write-info dd .auto-lock {
        font-weight: 700;
    }


    .-flex {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .-flex select#subhead {
        max-width: 100%;
        background-size: 12px;
        height: 42px;
        font-size: 14px;
    }

    .cw-boardwrite .write-info :where(.cw-textfield, .cw-select-box) {
        height: 42px;
        font-size: 14px;
        max-width: 100%;
    }

    .-flex input#bw_input_subject {
        min-height: 42px;
    }

    .cw-boardwrite .write-info dd .myorder .-flex {
        max-width: 100%;
        display: flex;
        flex-direction: row;
    }

    .cw-boardwrite .write-info dd .myorder .-flex #ordernumclear {
        top: 11px;
        right: 88px;
    }

    .cw-boardwrite .write-info dd .myorder .-flex .btn-primary {
        border-radius: 4px;
        max-width: 72px;
        height: 42px;
        font-size: 13px;
    }

    .cw-boardwrite .write-info dd .myorder .-flex .btn-primary span .pctext {
        display: none;
    }

    .cw-boardwrite .write-info dd textarea.cw-textfield {
        padding: 16px 12px;
        height: 182px;
        font-size: 14px;
    }

    .cw-boardwrite .write-info dd.file .btn {
        height: 42px;
        width: 42px;
        border-radius: 4px;
    }

    .cw-boardwrite .write-info dd.file .btn img {
        width: 12px;
    }

    .board_write .cw-boardbtns {
        display: flex;
        flex-direction: row;
    }

    .board_write .cw-boardbtns a {
        max-width: 100%;
        flex: 1;
    }
}

@media screen and (max-width: 767.98px) {

    /* =========================================
   목록화면
   ========================================= */
    .cw-boardlist .post {
        padding: 15.5px 0;
    }

    .cw-boardlist .post .infos {
        width: 100%;
    }

    .cw-boardlist .post .subject {
        font-size: 14px;
        gap: 4px;
    }

    .cw-boardlist .post .subject .complete {
        font-size: 12px;
        font-weight: 500;
    }

    .cw-boardlist .post .text-end {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        margin-top: 14px;
    }


    .cw-boardlist .post .text-end :where(.writer, .date, .read, .recommend) {
        font-size: 12px;
    }

    .cw-boardlist .post .text-end .date::before {
        background: #dbdbdb;
        width: 3px;
        height: 3px;
        border-radius: 50%;
        margin: 0 4px;
    }

    .cw-boardlist .post .text-end .writer.displaynone+.date::before {
        display: none;
    }

    .cw-boardlist .notice .subject .round-text {
        width: 31px;
        height: 20px;
        font-size: 11px;
        top: 0;
    }

    /* =========================================
   보기화면
   ========================================= */

    /* =========================================
   쓰기화면
   ========================================= */


} 
/* BASIC css end */

