﻿.notice-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 150px 0;
}

    .notice-wrap .notice-title-wrap {
        width: 100%;
        max-width: 1170px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 50px;
    }

        .notice-wrap .notice-title-wrap .notice-title {
        }

        .notice-wrap .notice-title-wrap .notice-subtitle {
            letter-spacing: 10px;
        }

    .notice-wrap .list-wrap {
        width: 100%;
        max-width: 1170px;
        margin-top: 50px;
        padding: 20px;
    }

        .notice-wrap .list-wrap .list-title-wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom:30px;
        }

            .notice-wrap .list-wrap .list-title-wrap .title {
                color: #555;
                font-size: 14px;
            }

            .notice-wrap .list-wrap .list-title-wrap .search {
                display: flex;
            }

                .notice-wrap .list-wrap .list-title-wrap .search input {
                    height: 40px;
                    border: 1px solid #bbb;
                    border-radius: 7px;
                    padding: 0px 10px;
                    box-sizing: border-box;
                    margin-right: 3px;
                }

                .notice-wrap .list-wrap .list-title-wrap .search button {
                    width: 40px;
                    height: 40px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    border: 0;
                    border-radius: 7px;
                    background: #4c4f6f;
                    color: #fff;
                    cursor: pointer;
                    font-size: 16px;
                }

                    .notice-wrap .list-wrap .list-title-wrap .search button:hover {
                        background: #54598c;
                    }

                .notice-wrap .list-wrap .list-title-wrap .search input:focus {
                    outline: none;
                }


.list-title-wrap .right_box {
    display: flex;
    gap: 20px;
    align-items: center;
}

    .list-title-wrap .right_box .write_wrap button {
        padding:0 12px;
        background: #333;
        color: #fff;
        border-radius: 7px;
        font-weight: 700;
        font-size: 16px;
        cursor: pointer;
        border: 0;
        height: 40px;
    }

        .list-title-wrap .right_box .write_wrap button:hover {
            background: #a1c9cc;
            border: 0;
        }

.notice-wrap .list-wrap .table-wrap .table tr td .result {
    padding: 10px 15px;
    background: #333;
    color: #fff;
    border-radius: 10px;
}

    .notice-wrap .list-wrap .table-wrap .table tr td .result.on {
        background: #8ecbcf;
    }

    .notice-wrap .list-wrap .tab-wrap {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

            .notice-wrap .list-wrap .tab-wrap .tab {
                height: 100%;
            }

                .notice-wrap .list-wrap .tab-wrap .tab input {
                    display: none;
                }

                .notice-wrap .list-wrap .tab-wrap .tab label {
                    width: 100%;
                    height: 100%;
                    display: block;
                    padding: 10px 20px;
                    cursor: pointer;
                }

                    .notice-wrap .list-wrap .tab-wrap .tab label:hover {
                        color: #51a8ae;
                    }


                .notice-wrap .list-wrap .tab-wrap .tab input:checked + label {
                    background: unset;
                    color: #51a8ae;
                    border-bottom: 5px solid #65b6bc;
                }

        .notice-wrap .list-wrap .table-wrap {
            width: 100%;
            margin-top: 20px;
        }

            .notice-wrap .list-wrap .table-wrap .table {
                width: 100%;
            }

                .notice-wrap .list-wrap .table-wrap .table tr {
                    border-bottom: 1px solid #ddd;
                }

                .notice-wrap .list-wrap .table-wrap .table thead tr {
                    background: #fafafa;
                    border-top: 2px solid #555;
                }

                .notice-wrap .list-wrap .table-wrap .table tbody tr {
                    cursor: pointer;
                }

                    .notice-wrap .list-wrap .table-wrap .table tbody tr:hover {
                        background: #fafafa;
                    }

                .notice-wrap .list-wrap .table-wrap .table tr th,
                .notice-wrap .list-wrap .table-wrap .table tr td {
                    text-align: center;
                    height: 50px;
                    vertical-align: middle;
                }

                .notice-wrap .list-wrap .table-wrap .table tr th {
                    font-weight: bold;
                }

                .notice-wrap .list-wrap .table-wrap .table tr td {
                }

                    .notice-wrap .list-wrap .table-wrap .table tr td .left {
                        font-size: 18px;
                        text-align: left;
                        font-weight: 600;
                    }

                        .notice-wrap .list-wrap .table-wrap .table tr td .left .option {
                            font-size: 15px;
                            font-weight: 300;
                            color: #7ea7e3;
                            height: 20px;
                        }

                    .notice-wrap .list-wrap .table-wrap .table tr td.image {
                        padding: 20px;
                    }

                        .notice-wrap .list-wrap .table-wrap .table tr td.image > div {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                        }

                            .notice-wrap .list-wrap .table-wrap .table tr td.image > div img {
                                width: 100%;
                            }

            .notice-wrap .list-wrap .table-wrap .paging {
                width: 100%;
                max-width: 1170px;
                margin-top: 50px;
            }

                .notice-wrap .list-wrap .table-wrap .paging .navigation {
                    padding: 20px 0;
                }

                    .notice-wrap .list-wrap .table-wrap .paging .navigation .pagination {
                        display: flex;
                        justify-content: center;
                    }

                        .notice-wrap .list-wrap .table-wrap .paging .navigation .pagination li {
                            width: 40px;
                            height: 40px;
                            margin-right: 5px;
                            border-radius: 40px;
                            cursor: pointer;
                            transition: .3s;
                        }

                            .notice-wrap .list-wrap .table-wrap .paging .navigation .pagination li:hover,
                            .notice-wrap .list-wrap .table-wrap .paging .navigation .pagination li.active {
                                background: #65b6bc;
                            }

                            .notice-wrap .list-wrap .table-wrap .paging .navigation .pagination li.disabled {
                                cursor: not-allowed;
                                background: unset;
                            }

                            .notice-wrap .list-wrap .table-wrap .paging .navigation .pagination li:hover a,
                            .notice-wrap .list-wrap .table-wrap .paging .navigation .pagination li.active a {
                                color: #fff;
                            }

                            .notice-wrap .list-wrap .table-wrap .paging .navigation .pagination li.disabled a {
                                color: unset;
                            }

                            .notice-wrap .list-wrap .table-wrap .paging .navigation .pagination li a {
                                width: 100%;
                                height: 100%;
                                display: flex;
                                justify-content: center;
                                align-items: center;
                            }

                                .notice-wrap .list-wrap .table-wrap .paging .navigation .pagination li a span {
                                }

    .notice-wrap .detail-wrap {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-top: 70px;
        padding: 10px;
    }

        .notice-wrap .detail-wrap > div {
            width: 100%;
            max-width: 1170px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: start;
        }

        .notice-wrap .detail-wrap .detail-title-wrap {
        }

            .notice-wrap .detail-wrap .detail-title-wrap .notice-tag {
                padding: 5px 10px;
                background: #f27b9d;
                border-radius: 3px;
                color: #fff;
            }

            .notice-wrap .detail-wrap .detail-title-wrap .notice-title {
                width: 100%;
                display: flex;
                justify-content: space-between;
                margin-top: 5px;
            }

            .notice-wrap .detail-wrap .detail-title-wrap .notice-subtitle {
                width: 100%;
                display: flex;
                justify-content: space-between;
                padding-bottom: 10px;
                border-bottom: 1px solid #ddd;
            }

                .notice-wrap .detail-wrap .detail-title-wrap .notice-subtitle .notice-name {
                    display: flex;
                    gap: 10px;
                }

        .notice-wrap .detail-wrap .detail-info-wrap {
            margin-top: 20px;
        }

            .notice-wrap .detail-wrap .detail-info-wrap .detail-info {
                padding: 10px;
                width: 100%; 

            }

                .notice-wrap .detail-wrap .detail-info-wrap .detail-info img {
                    max-width: 100%;
                }

.notice-wrap .reply-wrap {
    margin-top: 30px;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 20px;
}

    .notice-wrap .reply-wrap .reply-info {
        width:100%;
    }

        .notice-wrap .reply-wrap .reply-info .tit {
            padding: 5px;
            color: #fff;
            font-weight: 500;
            background: #333;
            border-radius: 3px;
            width: 80px;
            text-align: center;
        }

            .notice-wrap .reply-wrap .reply-info .tit i {
                transform: rotate(90deg);
                margin-right:5px;
            }
        .notice-wrap .reply-wrap .reply-info .ctn {
            margin-top: 10px;
        }




            .notice-wrap .list-wrap .table-wrap .box-wrap {
                width: 100%;
            }

                .notice-wrap .list-wrap .table-wrap .box-wrap .box {
                    display: inline-flex;
                    flex-direction: column;
                    justify-content: center;
                    width: calc((100% / 3) - 24px);
                    margin: 0 10px 15px 10px;
                    vertical-align: top;
                    cursor: pointer;
                }

            .notice-wrap .list-wrap .table-wrap .box-wrap .box .image {
                width: 100%;
                border-radius: 20px;
                display: flex;
                justify-content: center;
                align-items: center;
                overflow: hidden;
            } 

                .notice-wrap .list-wrap .table-wrap .box-wrap .box .image img {
                    width: 100%;
                }

            .notice-wrap .list-wrap .table-wrap .box-wrap .box .title-wrap {
                padding: 15px;
            }

                .notice-wrap .list-wrap .table-wrap .box-wrap .box .title-wrap .title {
                }

                .notice-wrap .list-wrap .table-wrap .box-wrap .box .title-wrap .subtitle {
                    display: none;
                }

                    .notice-wrap .list-wrap .table-wrap .box-wrap .box .info-wrap {
                        display: flex;
                        justify-content: space-between;
                        padding: 10px 25px;
                        background: #f6f6f6;
                        font-size: 12px;
                        border-radius: 20px;
                    }

                .notice-wrap .list-wrap .table-wrap .box-wrap .box .info-wrap .view {
                }

                .notice-wrap .list-wrap .table-wrap .box-wrap .box .info-wrap .date {
                }

    .notice-wrap .btn-wrap {
        width: 100%;
        max-width: 1170px;
        display: flex;
        justify-content: right;
        align-items: center;
        margin-top: 13px;
    }

        .notice-wrap .btn-wrap button {
            padding: 10px 20px;
            border: 0;
            border-radius: 5px;
            background: #4c4f6f;
            color: #fff;
            cursor: pointer;
        }

            .notice-wrap .btn-wrap button:hover {
                background: #54598c;
            }

        .notice-wrap .btn-wrap button i {
            margin-right: 3px;
        }

.table-wrap .bna_wrap {
    margin-top:40px;
}

.table-wrap .bna_wrap .bna_txt {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .table-wrap .bna_wrap .bna_txt .sur_name span {
        font-weight:700;
    }

    .table-wrap .bna_wrap .bna_txt .deg_btn div {
        display: inline-block;
        padding: 8px 12px;
        background: #65b6bc;
        color: #fff;
        margin-left: 5px;
        border-radius:5px;
        font-weight:500;
        cursor: pointer;
    }

    .table-wrap .bna_wrap .bna_box {
        width: 100%;
        margin: 20px 0;
        height: 563px;
    }

        .table-wrap .bna_wrap .bna_box .bna_img {
            display: flex;
            width: 100%;
            height: 100%;
            border-radius: 30px;
            overflow: hidden;
            border: 1px solid #cecece;
        }
            .table-wrap .bna_wrap .bna_box .bna_img .be_img,
            .table-wrap .bna_wrap .bna_box .bna_img .af_img {
                width: 50%;
                position:relative;
            }

                .table-wrap .bna_wrap .bna_box .bna_img .be_img img,
                .table-wrap .bna_wrap .bna_box .bna_img .af_img img {
                    width: 100%;
                    display: table-cell;
                }

                .table-wrap .bna_wrap .bna_box .bna_img .af_img .login {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    background: #333333db;
                    color: #fff;
                    font-weight: 500;
                    display: flex;
                    flex-direction: column;
                    text-align: center;
                    align-items: center;
                    justify-content: center;
                    backdrop-filter: blur(10px);
                    -webkit-backdrop-filter: blur(10px);
                    font-size: 1.5rem;
                    padding: 10px;
                }

                    .table-wrap .bna_wrap .bna_box .bna_img .af_img .login .txt {
                        word-break: keep-all;
                    }

                    .table-wrap .bna_wrap .bna_box .bna_img .af_img .login a {
                        padding: 10px 30px;
                        color: #88d4da;
                        border: 2px solid #88d4da;
                        border-radius: 50px;
                        margin-top: 20px;
                    }

                        .table-wrap .bna_wrap .bna_box .bna_img .af_img .login a:hover {
                            background: #88d4da;
                            color: #fff;
                            transition: .2s;
                        }


                .table-wrap .bna_wrap .bna_box .bna_img .be_img .be_txt,
                .table-wrap .bna_wrap .bna_box .bna_img .af_img .af_txt {
                    position: absolute;
                    top: 20px;
                    left: 20px;
                    padding: 5px 10px;
                    border-radius: 5px;
                    background: #333;
                    color: #fff;
                    font-size: 1.1rem;
                    font-weight: 500;
                }

    .table-wrap .thumb_list {
        display:flex;
        gap:10px;
        width:100%;
    }

        .table-wrap .thumb_list .thumb_box {
            width: 25%;
            border: 1px solid #cecece;
            border-radius: 20px;
            cursor: pointer;
            overflow: hidden;
            display: flex;
        }

            .table-wrap .thumb_list .thumb_box .thm_be,
            .table-wrap .thumb_list .thumb_box .thm_af {
                width: 50%;
                position: relative;
                display: flex;
            }


                .table-wrap .thumb_list .thumb_box .thm_be img,
                .table-wrap .thumb_list .thumb_box .thm_af img {
                    width: 100%;
                }

            .table-wrap .thumb_list .thumb_box.click {
                border: 5px solid #c5dbdd;
            }

            .table-wrap .thumb_list .thumb_box .thm_af .thm_login {
                position: absolute;
                width: 100%;
                height: 100%;
                background: #98a5a8b5;
                color: #fff;
                font-weight: 500;
                display: flex;
                flex-direction: column;
                text-align: center;
                align-items: center;
                justify-content: center;
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
            }
.table-wrap .col_bar {
    width: 1px;
    background: #cecece;
}
.notice-wrap .list-wrap .eye_tab {
}

.notice-wrap .eye_tab .input {
    display:flex;
    justify-content:center;
}


.notice-wrap .eye_tab .input label {
    display: block;
    width: 20%;
    padding: 10px 0;
    font-size: 1rem;
    font-weight: bold;
    border: 1px solid #000;
    margin: 70px 0 60px 0;
    color: #21242788;
    cursor: pointer;
    text-align: center;
}


.notice-wrap .list-wrap .eye_tab .input label:hover {
    color: #000;
}

.notice-wrap .eye_tab .input input {
    display: none;
}
.notice-wrap .list-wrap .eye_tab .input input[type='radio']:checked + label {
    color: #fff;
    background: #000;
}





        @media screen and (max-width: 1023px) {
            .notice-wrap .list-wrap .tab-wrap {
        display: block;
        margin-top: 20px;
    }

            .notice-wrap.bna .list-wrap .tab-wrap {
                display: flex;
                flex-wrap: wrap;
                gap: 10px;
            }

                .notice-wrap .list-wrap .tab-wrap .tab {
                    width: calc((100% / 3) - 3px);
                    display: inline-flex;
                    text-align: center;
                }

            .notice-wrap.bna .list-wrap .tab-wrap .tab {
                width:unset;
            }
}

@media screen and (max-width: 767px) {
    .notice-wrap {
        padding: 80px 0;
    }
@media screen and (max-width: 367px) {
    .notice-wrap {
        padding: 80px 0;
    }

        .notice-wrap .notice-title-wrap .notice-subtitle {
            letter-spacing: 2px;
        }

        .notice-wrap .list-wrap .list-title-wrap {
            flex-direction: column;
            align-items: start;
            gap: 10px;
        }

            .notice-wrap .list-wrap .list-title-wrap .search {
                /*width: 100%;
                justify-content: right;*/
            }

    .list-title-wrap .right_box {
        gap: 10px;
        align-items: flex-start;
        flex-direction: column;
    }


        .notice-wrap .list-wrap .table-wrap .table tr td .complete.on,
        .notice-wrap .list-wrap .table-wrap .table tr td .waiting.on {
            display: inline-block;
            position: absolute;
            bottom: 10%;
            right: 0;
        }

        .notice-wrap .list-wrap .table-wrap .table thead {
            display: none;
        }

        .notice-wrap .list-wrap .table-wrap .table tbody tr {
            position:relative;
        }

        .notice-wrap .list-wrap .table-wrap .table tbody tr:first-child {
            border-top: 2px solid #555;
        }

        .notice-wrap .list-wrap .table-wrap .table tr td {
            display: contents;
        }

            .notice-wrap .list-wrap .table-wrap .table tr td span {
                display: block;
                text-align: left;
            }

            .notice-wrap .list-wrap .table-wrap .table tr td.num {
                display: none;
            }

        .notice-wrap .list-wrap .table-wrap .paging .navigation .pagination li {
            width: 30px;
            height: 30px;
            margin-right: 3px;
        }

        .notice-wrap .list-wrap .table-wrap .table tr td.state span {
            float: right;
        }

    .notice-wrap .list-wrap .table-wrap .box-wrap .box {
        width: calc((100% / 2) - 13px);
        margin: 0 5px 15px 5px;
    }
        .notice-wrap .list-wrap .table-wrap .box-wrap .box .image {
            border-radius: 10px;
        }
        .notice-wrap .list-wrap .table-wrap .box-wrap .box .title-wrap {
            padding: 10px 5px;
        }
        .notice-wrap .list-wrap .table-wrap .box-wrap .box .info-wrap {
            padding: 10px 15px;
        }

        .table-wrap .bna_wrap .bna_txt {
            flex-direction: column;
            gap: 20px;
        }
            .table-wrap .bna_wrap .bna_txt .sur_name {
                background: #f1f1f1;
                padding: 5px 10px;
                text-align: center;
                border-radius: 5px;
            }

            .table-wrap .bna_wrap .bna_txt .deg_btn a {
                padding: 8px 20px;
                margin-left: 10px;
            }

            .table-wrap .bna_wrap .bna_box .bna_img {
                border-radius: 10px;
            }


                    .table-wrap .bna_wrap .bna_box .bna_img .af_img .login {
                        font-size: 0.85rem;
                    }

                        .table-wrap .bna_wrap .bna_box .bna_img .af_img .login a {
                            padding: 7px 12px;
                            margin-top: 10px;
                        }


                    .table-wrap .bna_wrap .bna_box .bna_img .be_img .be_txt,
                    .table-wrap .bna_wrap .bna_box .bna_img .af_img .af_txt {
                        position: absolute;
                        top: 5px;
                        left: 5px;
                        padding: 5px 8px;
                        font-size: 0.8rem;
                    }

    .table-wrap .thumb_list {
        flex-wrap: wrap;
    }


        .table-wrap .thumb_list .thumb_box {
            width: 48%;
            border-radius: 10px;
        }


            .table-wrap .thumb_list .thumb_box .thm_af .thm_login {
                font-size:0.7rem;
            }


    .notice-wrap .eye_tab .input {
        width: 100%;
        flex-wrap: wrap;
        margin-top: 40px;
    }
        .notice-wrap .eye_tab .input label {
            width: 50%;
            margin: 0;
            border: 1px solid #000;
        }

    .table-wrap .bna_wrap .bna_box {
        height:unset;
        min-height: 139px;
    }

}
