@charset "utf-8";
body{
    background-color: #f3f3f3;
}

/* 로고 */
.notice_logo{
    height: 75px;
    display: flex;
    justify-content: center;
}

.notice_logo a{
    display: block;
    width: 150px;
    height: 75px;
    background: url(../img/ggpaycolorlogo.png) no-repeat center center /contain;
    text-indent: -9999px;
}

/* 배너 */
.notice_banner{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 75px;
}

.notice_inner{
    width: 1200px;
    background-color: rgb(0, 78, 138);
    padding: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    flex-direction: column;
    color: white;
}

/* 페이지버튼 */
.notice_faq{
    display: flex;
    justify-content: center;
}
.notice_faq_inner{
    width: 1200px;
    display: flex;
    justify-content: start;
    padding: 10px 0;
    align-items: center;
    gap: 20px;
    position: relative;
}

.btn_line::after{
    content: "|";
    display: inline-block;
    padding-left: 20px;
}

.notice_base_inner{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 공지사항 조회 */
.notice_lookup_inner{
    width: 1200px;
    display: flex;
    justify-content: space-between;
    padding: 20px 0 20px 0;
    align-items: flex-end;
}

.notice_count{
    color: rgb(88, 166, 255);
}

.notice_search{
    position: relative;
}
.notice_search input{
    padding: 10px 70px 10px 10px;
    border: 1px solid #cccccc;
    border-radius: 2px;
}

.notice_search input::placeholder{
    color: #cccccc;
}

.search_btn{
    position: absolute;
    top: 25%;
    right: 8px;
    width: 20px;
    height: 20px;
    background: url(../img/search_btn.png) no-repeat center center /contain;
    text-indent: -9999px;
    cursor: pointer;
}

/* 공지사항 목록 */

.notice_list_inner{
    width: 1200px;
    font-size: 12px;
}

.notice_list_name{
    text-align: center;
    padding: 8px 0 10px 0;
    border-top: 1px solid #888888;
    border-bottom: 1px solid #888888;
    background: white;
}

.notice_list_cont li{
    border-bottom: 1px solid #888888;
}

.notice_list_cont li span{
    display: block;
    width: 100%;
    cursor: pointer;
    font-size: 12px;
    color: #888888;
    background: #ececec;
    padding: 8px 0 10px 10px;
}

.notice_list_img{
    display: none;
    padding: 8px 0 10px 10px;
    background-color: white;
}

.notice_list_cont li span:hover{
    color: black;
}

/* 공지사항 리스트 순서버튼 */
.notice_next_btn{
    padding: 70px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.notice_next_btn span{
    color: #888888;
    cursor: pointer;
}

.notice_checked{
    color: black !important;
}