#mainView_board {
  height: 100%;
}

#mainView_board > .container-board {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#mainView_board > .container-board > .contents-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 10px;
}

#mainView_board > .container-board > .contents-category > .select-boardCategory{
  display: flex;
  flex-direction: row;
  align-items: center;
}

#mainView_board > .container-board > .contents-category > .select-boardCategory > label{
  margin-right: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}

#mainView_board > .container-board > .contents-category > .select-boardCategory > i{
  font-size: 16px;
  color: var(--main-color);
}



#mainView_board > .container-board > .contents-board{
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}

#mainView_board > .container-board > .contents-board > .item-board{
  padding-left: 4px;
  padding-right: 4px;
  padding-top: 4px;
  padding-bottom: 2px;
  margin-right: 14px;
}

#mainView_board > .container-board > .contents-board > .item-board > label{
  font-size: 13px;
  font-weight: 400;
  color: #000000;
}

#mainView_board > .container-board > .contents-board > .item-board.select{
  border-bottom: 2px var(--main-color) solid;
}

#mainView_board > .container-board > .contents-board > .item-board.select > label{
  font-weight: 500;
  color: var(--main-color);
}


#mainView_board > .container-board > .contents-post{
  flex: 1;
  margin-top: 10px;
  border-top: 4px #ededed solid;
  overflow-y: auto;
}

#mainView_board > .container-board > .contents-post > .item-post{
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 20px;
  padding-right: 20px;
}

#mainView_board > .container-board > .contents-post > .item-post + .item-post{
  border-top: 1px #dedede dashed;
}

#mainView_board > .container-board > .contents-post > .item-post.none{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}

#mainView_board > .container-board > .contents-post > .item-post.none > label{
  font-size: 13px;
  font-weight: 500;
  color: #888888;
}

#mainView_board > .container-board > .contents-post > .item-post > .line-postItem{
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

#mainView_board > .container-board > .contents-post > .item-post > .line-postItem > .postInfo-boardName{
  font-size: 10px;
  font-weight: 400;
  background: #ececec;
  color: #666666;
  border-radius: 20px;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 2px;
  padding-bottom: 2px;
}

#mainView_board > .container-board > .contents-post > .item-post > .line-postItem > .postInfo-postType{
  font-size: 10px;
  font-weight: 400;
  border-radius: 2px;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 2px;
  padding-bottom: 2px;
  margin-left: 5px;
}

#mainView_board > .container-board > .contents-post > .item-post > .line-postItem > .postInfo-postType.important{
  background: var(--red-color);
  color: #ffffff;
}

#mainView_board > .container-board > .contents-post > .item-post > .line-postItem > .postInfo-postType.popup{
  background: var(--yellow-color);
  color: #ffffff;
}

#mainView_board > .container-board > .contents-post > .item-post > .line-postItem > .postInfo-optionButton{
  position: absolute;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  right: -20px;
  width: 50px;
  height: 50px;

  font-size: 13px;
  color: #666666;
}

#mainView_board > .container-board > .contents-post > .item-post > .line-postItem > .postInfo-subject{
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  padding-top: 6px;
  padding-bottom: 4px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

#mainView_board > .container-board > .contents-post > .item-post > .line-postItem > .left-postItemLine{
  flex: 1;
}

#mainView_board > .container-board > .contents-post > .item-post > .line-postItem > .left-postItemLine > .postInfo-writer{
  font-size: 12px;
  color: #aaaaaa;
  font-weight: 400;
  margin-right: 12px;
}

#mainView_board > .container-board > .contents-post > .item-post > .line-postItem > .left-postItemLine > .postInfo-regDate{
  font-size: 12px;
  color: #aaaaaa;
  font-weight: 400;
}


#mainView_board > .container-board > .contents-post > .item-post > .line-postItem > .right-postItemLine{
  text-align: right;
}

#mainView_board > .container-board > .contents-post > .item-post > .line-postItem > .right-postItemLine > .postInfo-views{
  font-size: 12px;
  color: #aaaaaa;
  font-weight: 400;
}

#mainView_board > .container-board > .contents-post > .item-post > .line-postItem > .right-postItemLine > .postInfo-views > i{
  color: #aaaaaa;
  margin-right: 4px;
}

#mainView_board > .container-board > .contents-post > .item-post > .line-postItem > .right-postItemLine > .postInfo-comment{
  margin-left: 10px;
  font-size: 12px;
  color: #aaaaaa;
  font-weight: 400;
}

#mainView_board > .container-board > .contents-post > .item-post > .line-postItem > .right-postItemLine > .postInfo-comment > i{
  color: #aaaaaa;
  margin-right: 4px;
}



#boardCategorySelectView {
  bottom: 0;
  height: auto;
  max-height: 30%;
}

#boardCategorySelectView.hide {
  bottom: -30%;
}

#boardCategorySelectView .title-boardCategorySelect {
  margin-top: 20px;
  padding-left: 25px;
  padding-right: 25px;
}

#boardCategorySelectView .title-boardCategorySelect label{
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}

#boardCategorySelectList{
  margin-top: 10px;
  padding-bottom: 10px;
  padding-left: 25px;
  padding-right: 25px;
}

#boardCategorySelectList .row-boardCategorySelect {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 4px;
  padding-right: 4px;
}

#boardCategorySelectList .row-boardCategorySelect + .row-boardCategorySelect{
  border-top: 1px #eaeaea solid;
}

#boardCategorySelectList .row-boardCategorySelect label{
  font-size: 15px;
  font-weight: 500;
  color: #333333;
}

#boardCategorySelectList .row-boardCategorySelect.select label {
  color: var(--main-color);
}

#boardCategorySelectList .row-boardCategorySelect p{
  font-size: 11px;
  font-weight: 400;
  color: #888888;
  margin-top: 4px;
}



#mainView_board .button-boardWrite {
  position: fixed;
  right: 15px;
  bottom: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 20px;
  background: var(--main-color);
  box-shadow: 0 1px 3px 0 rgba(0,0,0, 0.15), 0 1px 3px 0 rgba(0,0,0, 0.15);
}

#mainView_board .button-boardWrite label{
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

#mainView_board .button-boardWrite i {
  margin-right: 6px;
}


.view-boardMoreOption {
  position: absolute;
  width: 90px;
  box-shadow: 0 1px 3px 0 rgba(0,0,0, 0.15), 0 1px 3px 0 rgba(0,0,0, 0.15);
  background: #f0f0f0;
  border-radius: 2px;
  opacity: 0;
  top: 100%;
  left: 100%;
  -webkit-transition: opacity 0.1s ease-in-out;
  -moz-transition: opacity 0.1s ease-in-out;
  -o-transition: opacity 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out;
  z-index: 10;
}

.view-boardMoreOption.show {
  opacity: 1;
  -webkit-transition: opacity 0.1s ease-in-out;
  -moz-transition: opacity 0.1s ease-in-out;
  -o-transition: opacity 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out;
}

.view-boardMoreOption .item-boardMoreOption {
  display: block;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 12px;
  color: #000000;
  font-weight: 500;
}

.view-boardMoreOption .item-boardMoreOption + .item-boardMoreOption {
  border-top: 1px #dfdfdf solid;
}
