@charset "utf-8";

#board-list .search-wrap {
    border: 1px solid var(--line-color);
    background: #f7f7f7;
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 60px;
}
#board-list .search-wrap form {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
#board-list .search-wrap .group {
    border: 1px solid var(--line-color);
    border-radius: var(--sub-radius);
    overflow: hidden;
    background: #fff;
    display: flex;
    flex: 1;
}
#board-list .search-wrap .group select {
    flex: 0 0 120px;
    border-radius: 0;
    border: none;
    border-right: 1px solid var(--line-color);
}
#board-list .search-wrap .group input[type=text] {
    border: none;
    outline: none;
    flex: 1;
}
#board-list .submit-wrap {
    justify-content: flex-end;
}

#board-list .list-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid var(--line-color);
}
#board-list .list-wrap li {
    border-top: 1px solid var(--line-color);
}
#board-list .list-wrap .question {
    display: flex;
    padding: 24px 60px 24px 20px;
    color: var(--font-color);
    text-decoration: none;
    background: #f7f7f7;
    position: relative;
}
#board-list .list-wrap .question:before {
    content: '';
    display: block;
    width: 12px;
    height: 9px;
    background: url('../imgs/arrow.png') no-repeat 0 0;
    position: absolute;
    right: 25px;
    top: 30px;
    transition: all 0.2s;
}
#board-list .list-wrap li.active .question:before {
    transform: rotate(180deg);
}
#board-list .list-wrap .question .number {
    flex: 0 0 50px;
    text-align: center;
}
#board-list .list-wrap .question .subject {
    flex: 1;
    color: #222;
    font-weight: 600;
}
#board-list .list-wrap .question .subject .category {
    font-weight: 400;
    margin-right: 8px;
}
#board-list .list-wrap .question .date {
    flex: 0 0 150px;
    text-align: right;
}
#board-list .list-wrap .answer {
    background: #fff;
    color: #5c5c5c;
    padding: 24px 70px;
    display: none;
}
#board-list .list-wrap .answer p {
    word-break: keep-all;
}
#board-list .list-wrap .no-count {
    margin: 50px 0;
}
