@charset "utf-8";
/* =====================================

	* board

    CSS CONTENTS : 
    01. list
    02. list::effect
    03. button
    04. list::paging
    05. view
    06. view::comment
    07. view::move
    08. write

====================================== */

.acco-list > .no-data {
    padding: 50px 0;
    border-color: #e2e2e2;
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    background-color: #fafafa;
    color: #8d8d8d;
}
.acco-list > .no-data img{
    margin: 0 auto 20px;
}
.acco-list > li {
    border: 1px solid #e2e2e2;
    border-radius: 3px;
}
.acco-list > li + li {
    margin-top: 14px;
}
.acco-tit {
	position: relative;
}
.acco-tit > a {
    position: relative;
    display: block;
    padding: 32px 0;
    padding-left: 110px;
    padding-right: 145px;
    font-size: 2.2rem;
    font-weight: 600;
    word-break: break-all;
}
.acco-tit > a:before,
.acco-con:before {
    position: absolute;
    left: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    border-radius: 50%;
}
.acco-tit > a:before {
    top: 50%;
    transform: translateY(-50%);
    content: 'Q';
    background-color: #01439a;
}
.acco-tit > a:after {
    display: block;
    content: '';
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    border: 2px solid #000000;
    border-radius: 3px;
    background-image: url('../image/ic_acco_arrow.png');
    background-repeat: no-repeat;
    background-position: center;
    box-sizing: border-box;
}
.acco-tit > img {
    max-height: 10px;
}
.acco-list > li.on .acco-tit > a:after {
    -webkit-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg);
}
.acco-list .acco-con {
    position: relative;
    display: none;
    padding: 15px 30px 30px;
    padding-right: 45px;
    word-break: keep-all;
}
.acco-list .view-contents {
    min-height: initial;
    padding: 0;
    padding-left: 80px;
    padding-right: 100px;
    border: 0;
    font-size: 1.7rem;
    word-break: break-all;
}
.acco-con:before {
    top: 15px;
    content: 'A';
    background-color: #0ea1e6;
}
.acco-con .bbs-admin select {
    width: 65px;
    height: 27px;
    font-size: 15px;
}
.bbs-admin .form-item{
    width: 65px;
    height: 27px;
    margin: 2px;
    margin-right: 5px;
    border-radius: 2px;
    padding: 0 5px;
    border-color: #7d7d7d;
    background-color: #fff;
    font-size: 1.4rem;
    vertical-align: top;
}
.bbs-admin .btn.btn-modify,
.bbs-admin .btn.btn-delete{
    width: 27px;
    height: 27px;
    margin: 2px;
    border-radius: 2px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid transparent;
}
.bbs-admin .btn.btn-modify{
    background-image: url('../image/ic_modify.png');
}
.bbs-admin .btn.btn-delete{
    background-image: url('../image/ic_delete.png');
}

/* list::effect */
.ef01,
.ef02,
.ef03,
.ef04 {
    position: relative;
}
.ef01:before,
.ef01:after{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    z-index: 1;
    width: 0;
    height: 3px;
    background-color: #162694;
}
.ef01:before{
    top: 0;
    left: 0;
    transition: 0.2s ease;
}
.ef01:after{
    right: 0;        
    transition: 0.2s ease 0.2s;
}
.ef01 > .acco-tit:before,
.ef01 > .acco-tit:after{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    width: 3px;
    height: 0;
    background-color: #162694;
}
.ef01 > .acco-tit:before{
    bottom: 0;
    left: 0;
    transition: 0.2s ease 0.3s;
}
.ef01 > .acco-tit:after{
    top: 0;
    right: 0;    
    transition: 0.2s ease 0.1s;
}
.ef01:hover:before{
    width: 100%;
}
.ef01 > .acco-tit:hover:after{
    height: 100%;
}
.ef01:hover:after{
    width: 100%;    
}
.ef01 > .acco-tit:hover:before{
    height: 100%;
}
.ef01.on:before,
.ef01.on:after,
.ef01.on > .acco-tit:before,
.ef01.on > .acco-tit:after{
    display: none;
}


/* button */
.board-wrap .btn-wrap{
    margin-top: 20px;
}
.btn-admin .btn.btn-modify,
.btn-admin .btn.btn-delete{
    width: 27px;
    height: 27px;
    margin: 1px;
    border: 1px solid transparent;
    border-radius: 2px;
    background-repeat: no-repeat;
    background-position: center;
}
.btn-admin .btn.btn-modify{
    border-color: #7d7d7d;
    background-color: #fff;
    background-image: url('../image/ic_modify.png');
}
.btn-admin .btn.btn-delete{    
    border-color: #565656;
    background-color: #565656;
    background-image: url('../image/ic_delete.png');
}
.board-view + .btn-wrap{
    text-align: right;
}

.btn.btn-list{
    background-color: #fff;
    border-color: #9f9f9f;
    color: #191919;
}
.btn.btn-modify{
    background-color: #f7f8ff;
    border-color: #162694;
    color: #162694;
}
.btn.btn-delete{
    background-color: #fff;
    border-color: #e21a52;
    color: #e21a52;
}
.btn.btn-cancel{
    background-color: #8b8b8b;
    border-color: #8b8b8b;
    color: #fff;
}
.btn.btn-write{
    background-color: #162694;
    border-color: #162694;
    color: #fff;
}

/* list::paging */
.paging-wrap{
    margin-top: 40px;
    text-align: center;
}
.paging{
    display: inline-block;
    vertical-align: top;
    text-align: center;
}
.paging > li{
    overflow: hidden;
    display: inline-block;
    width: 35px;
    height: 35px;
    margin: 1px;
    border-radius: 3px;
    border: 1px solid transparent;
    vertical-align: top;
    transition: 0.3s ease;
}
.paging > .num:hover,
.paging > .num.on,
.paging > .num:hover > a,
.paging > .num.on > a{
    font-weight: 700;
    color: #000000;
}
.paging > li > a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 3px 0;
    font-size: 1.8rem;
    font-weight: 500;
    color: #b3b3b3;
    transition: 0.3s ease;
}
.paging > li:not(.num){
    background-repeat: no-repeat;
    background-position: center;
    border-color: #cecece;
    background-color: #fff;
    transition: 0.3s ease;
}
.paging > li:not(.num):hover{
    background-color: #f7f7f7;
}
.paging .first{
    background-image: url('../image/ic_first.png');
}
.paging .prev{
    margin-right: 15px;
    background-image: url('../image/ic_prev.png');
}
.paging .next{
    margin-left: 15px;
    background-image: url('../image/ic_next.png');
}
.paging .last{    
    background-image: url('../image/ic_last.png');
}


/* view */
.view-contop {
    padding: 10px 20px;
    background-color: #144393;
    text-align: center;
}
.view-tit {
    font-size: 2.4rem;
    font-weight: 600;
    color: #fff;
}
.view-contents {
    min-height: 400px;
    padding: 30px;
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
    border-color: #b3c0d7;
    font-size: 1.7rem;
    font-weight: 500;
}
.view-contents * {
    font: inherit;
}
.view-contents img {
    max-width: 100%;
}
.view-attach {
    margin-top: 60px;
    margin-bottom: 20px;
    padding: 20px 30px;
    background-color: #fafafa;
    border: 1px solid #e2e2e2;
}
.view-attach-con .con > a {
    display: block;
    padding: 4px 0;
    padding-left: 30px;
    font-size: 1.7rem;
    background-image: url('../image/img_file.png');
    background-repeat: no-repeat;
    background-position: 0 10px;
    transition: all 0.3s;
}
.view-attach-con .con > a:hover {
    font-weight: 500;
    text-decoration: underline;
}


/* write */
.write-wrap{
    border-top: 2px solid #3b3b3b;
}
.write-wrap .form-tit{
    background-color: #f6f8fc;
    color: #191919;
}
