@charset "UTF-8";

* {
  padding: 0;
  margin: 0;
}

html,
body {
  width: 100%;
}

.viewBox {
  width: 100%;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.viewBox_tit {
  width: 100%;
  height: 61px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px solid #E6E7EC;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.viewBox_tit .back {
  background-color: transparent;
  background-image: url(../images/icon/back.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 11px;
  height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 10px;
}

.viewBox_tit .tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.viewBox_tit .tit .episode {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  color: #8F9197;
  margin-top: 5px;
}

.viewBox_tit h1 {
  white-space: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 100;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.viewBox_tit .control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  right: 10px;
}

.viewBox_tit .control .mode {
  border: 1px solid #eaeaea;
  border-radius: 20px;
  width: 80px;
  height: 30px;
  cursor: pointer;
  position: relative;
  margin-right: 50px;
}

.viewBox_tit .control .mode_action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 20;
  cursor: pointer;
}

.viewBox_tit .control .mode_action:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: url(../images/icon/white_off.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 30px;
}

.viewBox_tit .control .mode_info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
  z-index: 10;
}

.viewBox_tit .control .mode_info:after {
  content: '화이트';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  position: absolute;
  top: 50%;
  left: calc(100% - 45px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.viewBox_tit .control .mode.on {
  border-color: #0e0e0e;
  background-color: #2b2b2b;
  color: #fff;
}

.viewBox_tit .control .mode.on .mode_action {
  left: calc(100% - 30px);
}

.viewBox_tit .control .mode.on .mode_action:after {
  background-image: url(../images/icon/white_on.svg);
}

.viewBox_tit .control .mode.on .mode_info:after {
  content: '블랙';
  left: calc(100% - 65px);
}

.viewBox_tit .control_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  color: #1E1F21;
  line-height: 24px;
  cursor: pointer;
  margin-right: 30px;
}

.viewBox_tit .control_item.subscribe {
  width: 90px;
}

.viewBox_tit .control_item.subscribe:before {
  content: '';
  background-image: url(../images/icon/plus.svg);
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.viewBox_tit .control_item.subscribe.on:before {
  background-image: url(../images/icon/check_on.svg);
  background-size: 24px 24px;
}

.viewBox_tit .control_item.bookmark:before {
  content: '';
  background-image: url(../images/icon/book_off.svg);
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 22px;
  height: 24px;
  margin-right: 10px;
}

.viewBox_tit .control_item.bookmark.on:before {
  background-image: url(../images/icon/book_on.svg);
}

.viewBox_contents {
  padding: 35px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: calc(100% - 131px);
  overflow-y: auto;
  overflow-x: hidden;
  position: absolute;
  top: 61px;
  left: 0;
  right: 0;
  bottom: 70px;
  -webkit-transition: all .2s;
  transition: all .2s;
  cursor: pointer;
}

.viewBox_contents .viewinfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 1190px;
  margin: 0 auto;
}

.viewBox_contents .viewControl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 50px;
}

.viewBox_contents .viewControl .shareArea {
  border: 1px solid #E6E7EC;
  background-color: #fff;
  border-radius: 6px;
  width: 93px;
  height: 80px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  -webkit-transition: all .5s;
  transition: all .5s;
  overflow: hidden;
}

.viewBox_contents .viewControl .shareArea .share {
  -webkit-transition: all .5s;
  transition: all .5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 93px;
  height: 80px;
  border: 1px solid transparent;
  border-radius: 6px;
  margin-right: 12px;
  color: #1E1F21;
}

.viewBox_contents .viewControl .shareArea .share:before {
  content: '';
  background-image: url(../images/icon/share.svg);
  width: 24px;
  height: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.viewBox_contents .viewControl .shareArea .close_sh {
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all .5s;
  transition: all .5s;
  opacity: 0;
  font-size: 0;
}

.viewBox_contents .viewControl .shareArea .code {
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all .5s;
  transition: all .5s;
  opacity: 0;
  font-size: 0;
}

.viewBox_contents .viewControl .shareArea.on {
  width: 219px;
  height: 95px;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.viewBox_contents .viewControl .shareArea.on .share {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0;
  height: unset;
  -webkit-box-orient: unset;
  -webkit-box-direction: unset;
  -ms-flex-direction: unset;
  flex-direction: unset;
}

.viewBox_contents .viewControl .shareArea.on .share:before {
  margin-right: 10px;
  margin-bottom: 0;
}

.viewBox_contents .viewControl .shareArea.on .close_sh {
  position: absolute;
  top: 12px;
  right: 10px;
  background-color: transparent;
  background-image: url(../images/icon/close.svg);
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.viewBox_contents .viewControl .shareArea.on .code {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.viewBox_contents .viewControl .shareArea.on .code input[type=text] {
  font-size: 13px;
  color: #3A71FF;
  border: 1px solid #DCDCDC;
  border-right: 0;
  border-radius: 6px 0 0 6px;
  width: 100%;
  height: 37px;
  padding-left: 7px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.viewBox_contents .viewControl .shareArea.on .code input[type=submit] {
  background-color: #245FD1;
  border: 1px solid #043EAE;
  border-radius: 0 6px 6px 0;
  width: 100%;
  height: 37px;
  font-size: 14px;
  color: #fff;
}

.viewBox .v_comment {
  position: fixed;
  top: 61px;
  left: unset;
  right: 0;
  bottom: 71px;
}

.viewBox .v_comment_layout {
  position: fixed;
  top: 61px;
  right: -527px;
  bottom: 71px;
  width: 527px;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-left: 1px solid #E6E7EC;
  background-color: #fff;
  z-index: 100;
  overflow: initial;
  -webkit-transition: all .5s;
  transition: all .5s;
  opacity: 0;
}

.viewBox .v_comment_layout .form {
  width: 100%;
}

.viewBox .v_comment_layout .form_tit {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.viewBox .v_comment_layout .form_tit h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.viewBox .v_comment_layout .form_writing {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 68px;
  grid-template-columns: 1fr 68px;
  grid-gap: 10px;
  margin-top: 15px;
}

.viewBox .v_comment_layout .form_writing .input_str {
  width: 100%;
  height: 40px;
  border-radius: 164px;
  position: relative;
  background-color: #F4F5F8;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px;
  grid-template-columns: 1fr 20px;
  grid-gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: initial;
}

.viewBox .v_comment_layout .form_writing .input_str input {
  border: 0;
  width: 100%;
  height: 100%;
  background: none;
}

.viewBox .v_comment_layout .form_writing .submit {
  width: 100%;
  height: 40px;
  border-radius: 164px;
  background-color: #1E1F21;
  color: #fff;
  font-size: 14px;
}

.viewBox .v_comment_layout .form_list {
  position: relative;
  height: calc(100% - 85px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 15px;
}

.viewBox .v_comment_layout .form_list_comment {
  overflow-y: auto;
  overflow-x: hidden;
  position: static;
  padding-right: 20px;
}

.viewBox .v_comment_layout .form_list_comment_item {
  overflow: hidden;
}

.viewBox .v_comment_layout .form_list_comment_item:first-child {
  padding-top: 0;
}

.viewBox .v_comment_layout .form_list_comment::-webkit-scrollbar {
  display: none;
}

.viewBox .v_comment_layout .layout_close {
  position: absolute;
  top: 10px;
  left: -50px;
  background-image: url(../images/comments/close_off.svg);
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
}

.viewBox .v_comment_layout .layout_close:hover {
  -webkit-filter: brightness(250%) grayscale(0.5);
  filter: brightness(250%) grayscale(0.5);
}

.viewBox .v_comment:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  z-index: -1;
}

.viewBox .v_comment.on {
  z-index: 9999;
  left: 0;
}

.viewBox .v_comment.on .v_comment_layout {
  right: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
  opacity: 1;
}

.viewBox .v_comment.on .v_comment_layout .layout_close {
  opacity: 1;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}

.viewBox .v_comment.on:after {
  opacity: 1;
  z-index: 1;
}

.viewBox_footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 71px;
  background-color: #fff;
  border-top: 1px solid #E6E7EC;
  overflow: initial;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.viewBox_footer .action {
  width: 680px;
  height: 100%;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 166px 2fr 166px;
  grid-template-columns: 166px 2fr 166px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.viewBox_footer .action_item {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.viewBox_footer .action_item .size {
  border: 1px solid #E6E7EC;
  background-color: #fff;
  border-radius: 164px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30px 1fr 30px;
  grid-template-columns: 30px 1fr 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 110px;
  height: 40px;
}

.viewBox_footer .action_item .size button {
  padding: 0;
  min-height: 0;
  font-size: 14px;
  background: none;
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.viewBox_footer .action_item .size input {
  width: 100%;
  border: 0;
  text-align: center;
  font-size: 14px;
}

.viewBox_footer .action_item .list {
  background-color: #fff;
  border: 1px solid #E6E7EC;
  border-radius: 164px;
  padding: 0 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  line-height: 40px;
  color: #1E1F21;
}

.viewBox_footer .action_item .list:before {
  content: '';
  background-image: url(../images/icon/list.svg);
  background-repeat: no-repeat;
  width: 14px;
  height: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
}

.viewBox_footer .action_item .list:hover {
  border-color: #CCCDD2;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.viewBox_footer .action_item .comment {
  background-color: #fff;
  border: 1px solid #E6E7EC;
  border-radius: 164px;
  padding: 0 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  line-height: 40px;
  color: #1E1F21;
  position: relative;
  overflow: initial;
}

.viewBox_footer .action_item .comment:before {
  content: '';
  background-image: url(../images/icon/com.svg);
  background-repeat: no-repeat;
  width: 16px;
  height: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
}

.viewBox_footer .action_item .comment .number {
  background-color: #E41C1C;
  color: #fff;
  border-radius: 16px;
  padding: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: -10px;
  right: 0;
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-size: 10px;
}

.viewBox_footer .action_item .comment:hover {
  border-color: #CCCDD2;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.viewBox_footer .action_item .prev {
  background-color: #fff;
  border: 1px solid #E6E7EC;
  border-radius: 164px;
  padding: 0 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 40px;
  line-height: 38px;
  color: #1E1F21;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
}

.viewBox_footer .action_item .prev:before {
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url(../images/icon/arrow.svg);
  width: 9px;
  height: 12px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-right: 10px;
}

.viewBox_footer .action_item .prev:hover {
  border-color: #CCCDD2;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.viewBox_footer .action_item .next {
  background-color: #fff;
  border: 1px solid #E6E7EC;
  border-radius: 164px;
  padding: 0 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 40px;
  line-height: 38px;
  color: #1E1F21;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
}

.viewBox_footer .action_item .next:after {
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url(../images/icon/arrow.svg);
  width: 9px;
  height: 12px;
  margin-left: 10px;
}

.viewBox_footer .action_item .next:hover {
  border-color: #CCCDD2;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.viewBox_footer .action_item:nth-child(2) {
  margin: 0 auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.viewBox_footer .action_item:nth-child(2) a {
  margin-right: 5px;
}

.viewBox_footer .action_item:nth-child(2) a:last-child {
  margin-right: 0;
}

.viewBox_footer .action_item:first-child {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.viewBox_footer .action_item:last-child {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.viewBox_footer .quit_menu {
  position: absolute;
  top: -300px;
  right: 25px;
  border: 1px solid #E6E7EC;
  background-color: #fff;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.viewBox_footer .quit_menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 13px;
  color: #1E1F21;
  border-bottom: 1px solid #E6E7EC;
  padding: 10px 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 40px;
}

.viewBox_footer .quit_menu a .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
}

.viewBox_footer .quit_menu a:last-child {
  border-bottom: 0;
}

.viewBox_footer .quit_menu a:hover {
  background-color: #fbfbfb;
}

.viewBox_footer .quit_menu a.scroll-top {
  position: unset;
  width: auto;
  height: auto;
  background: none;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #E6E7EC;
}

.viewBox.hidebar .viewBox_tit,
.viewBox.hidebar .viewBox_footer {
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.viewBox.hidebar .viewBox_contents {
  top: 0;
  bottom: 0;
  height: 100% !important;
}

.viewBox .quit_number {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  display: none;
  overflow: hidden;
}

.viewBox .quit_number .quit_number_layout {
  position: absolute;
  top: 20%;
  left: 50%;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  z-index: 999;
  width: 400px;
  -webkit-transform: translate(-50%, -30%);
  transform: translate(-50%, -30%);
  opacity: 0;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  overflow: hidden;
}

.viewBox .quit_number_tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 40px;
  border-bottom: 1px solid #eaeaea;
  background-color: #fff;
  position: relative;
}

.viewBox .quit_number_tab_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  color: #1a1a1a;
  border-bottom: 4px solid transparent;
  cursor: pointer;
  margin-right: 10px;
}

.viewBox .quit_number_tab_item:hover,
.viewBox .quit_number_tab_item.active {
  border-color: #ce4c29;
}

.viewBox .quit_number_tab_item:last-child {
  margin-right: 0;
}

.viewBox .quit_number_tab .q_close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.viewBox .quit_number_list {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 3px;
  padding: 15px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.viewBox .quit_number_list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  font-size: 14px;
  border: 1px solid #eaeaea;
  background-color: #f5f5f5;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #1a1a1a;
  font-weight: 100;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.viewBox .quit_number_list a:hover {
  background-color: #ce4c29;
  border-color: #ce4c29;
  color: #fff;
}

.viewBox .quit_number:before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
  opacity: 0;
  -webkit-transition: all .1s;
  transition: all .1s;
}

.viewBox .quit_number.on .quit_number_layout {
  opacity: 1;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.viewBox .quit_number.on:before {
  opacity: 1;
}

.viewBox .warning_pop {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  overflow: hidden;
}

.viewBox .warning_pop_grid {
  background-color: #fff;
  z-index: 999;
  position: relative;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.viewBox .warning_pop_layout {
  position: absolute;
  top: 20%;
  left: 50%;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  z-index: 999;
  width: 400px;
  -webkit-transform: translate(-50%, -30%);
  transform: translate(-50%, -30%);
  opacity: 0;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  overflow: hidden;
  -webkit-filter: blur(2px);
  filter: blur(2px);
}

.viewBox .warning_pop_layout_head {
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #f7f7f7;
}

.viewBox .warning_pop_layout_head .q_close {
  position: absolute;
  right: 15px;
  cursor: pointer;
}

.viewBox .warning_pop_layout_contents {
  padding: 10px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-bottom: 0;
}

.viewBox .warning_pop_layout_contents .warning_control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.viewBox .warning_pop_layout_contents .warning_control button {
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 5px;
  background-color: #cc0000;
  color: #fff;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.viewBox .warning_pop_layout_contents .warning_control button:last-child {
  margin-bottom: 0;
}

.viewBox .warning_pop_layout_contents .warning_control button:hover:hover {
  -webkit-animation: button .5s linear infinite;
  animation: button .5s linear infinite;
}

@-webkit-keyframes button {
  0% {
    background-color: #ff0000;
  }

  10% {
    background-color: #db0000;
  }

  20% {
    background-color: #c20000;
  }

  30% {
    background-color: #ad0000;
  }

  40% {
    background-color: #960000;
  }

  50% {
    background-color: #6e0000;
  }
}

@keyframes button {
  0% {
    background-color: #ff0000;
  }

  10% {
    background-color: #db0000;
  }

  20% {
    background-color: #c20000;
  }

  30% {
    background-color: #ad0000;
  }

  40% {
    background-color: #960000;
  }

  50% {
    background-color: #6e0000;
  }
}

.viewBox .warning_pop_layout_contents .warning_form {
  margin-top: 15px;
}

.viewBox .warning_pop_layout_contents .warning_form textarea {
  width: 100%;
  min-height: 100px;
  border: 1px solid #e9e9e9;
  background-color: #f2f2f2;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.viewBox .warning_pop_layout_contents .warning_form .form_btn {
  margin-top: 15px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.viewBox .warning_pop_layout_contents .warning_form .form_btn button {
  width: 100%;
  height: 40px;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.viewBox .warning_pop_layout_contents .warning_form .form_btn button.form_submit {
  background-color: #1a1a1a;
  color: #fff;
}

.viewBox .warning_pop_layout_contents .warning_form .form_btn button.form_close {
  background-color: #fafafa;
  border: 1px solid #fafafa;
}

.viewBox .warning_pop_layout_contents .warning_form .form_btn button:hover {
  -webkit-filter: grayscale(0.2);
  filter: grayscale(0.2);
}

.viewBox .warning_pop:before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
  opacity: 0;
  -webkit-transition: all .1s;
  transition: all .1s;
}

.viewBox .warning_pop.on .warning_pop_layout {
  opacity: 1;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  -webkit-filter: blur(0);
  filter: blur(0);
}

.viewBox .warning_pop.on:before {
  opacity: 1;
}

.viewBox.on {
  background-color: #121212;
}

.viewBox.on .viewBox_tit {
  background-color: #1a1a1a;
  border-color: #000;
}

.viewBox.on .viewBox_tit .back {
  -webkit-filter: grayscale(0.5) brightness(800%);
  filter: grayscale(0.5) brightness(800%);
}

.viewBox.on .viewBox_tit .tit .episode {
  color: #8F9197;
}

.viewBox.on .viewBox_tit h1 {
  color: #d9d9d9;
}

.viewBox.on .viewBox_tit h1 .back {
  -webkit-filter: grayscale(0.5) brightness(800%);
  filter: grayscale(0.5) brightness(800%);
}

.viewBox.on .viewBox_tit .control_item {
  color: #d9d9d9;
}

.viewBox.on .viewBox_tit .control_item:before {
  -webkit-filter: grayscale(0.5) brightness(800%);
  filter: grayscale(0.5) brightness(800%);
}

.viewBox.on .viewBox_tit .control_item.on:before {
  -webkit-filter: none;
  filter: none;
}

.viewBox.on .viewBox_tit .control_item.subscribe:before {
  background-color: #000;
}

.viewBox.on .viewBox_tit .view_manga {
  background-color: #1a1a1a;
  border-color: #000;
}

.viewBox.on .viewBox_tit .view_manga_item .info h4 {
  color: #fff;
}

.viewBox.on .viewBox_tit .view_manga_item .info .data time {
  color: #fff;
}

.viewBox.on .viewBox_tit .view_manga_item .info .data .continue {
  color: #fff;
}

.viewBox.on .viewBox_tit .view_manga_item .info .data .continue .arrow {
  -webkit-filter: grayscale(0.5) brightness(800%);
  filter: grayscale(0.5) brightness(800%);
}

.viewBox.on .viewBox_tit .view_manga_item:hover {
  background-color: #000;
}

.viewBox.on .viewBox_tit .view_manga_over {
  background-color: #232323;
}

.viewBox.on .viewBox_tit .view_manga .more {
  border-color: #000;
  background-color: #2d2d2d;
  color: #d9d9d9;
}

.viewBox.on .viewBox_contents .viewControl .shareArea {
  background-color: #1a1a1a;
  border-color: #000;
}

.viewBox.on .viewBox_contents .viewControl .shareArea .share {
  color: #d9d9d9;
}

.viewBox.on .viewBox_contents .viewControl .shareArea .code input[type=text] {
  background-color: #000;
  border-color: #000;
}

.viewBox.on .v_comment_layout {
  background-color: #1c1c1c;
  color: #d9d9d9;
  border-color: #1a1a1a;
}

.viewBox.on .v_comment_layout .form_tit .spoiler_name {
  color: #d9d9d9;
}

.viewBox.on .v_comment_layout .form_writing .input_str {
  background-color: #000;
}

.viewBox.on .v_comment_layout .form_writing .input_str input {
  background-color: #000;
  color: #d9d9d9;
}

.viewBox.on .v_comment_layout .form_writing .submit {
  background-color: #690000;
}

.viewBox.on .v_comment_layout .form_list_tab a {
  color: #d9d9d9;
}

.viewBox.on .v_comment_layout .form_list_comment_item .comments_list {
  border-color: #2f2f2f;
}

.viewBox.on .v_comment_layout .form_list_comment_item .comments_list .user_info .name h4 {
  color: #d9d9d9;
}

.viewBox.on .v_comment_layout .form_list_comment_item .comments_list .user_info .view_action_item.view {
  background-color: #353535;
}

.viewBox.on .v_comment_layout .form_list_comment_item .comments_list .user_info .view_action_item.view .view_text {
  color: #d9d9d9;
}

.viewBox.on .v_comment_layout .form_list_comment_item .comments_list .user_info .info_text p {
  color: #d9d9d9;
}

.viewBox.on .v_comment_layout .form_list_comment_item .comments_list .user_info .info_text.spo_text .text {
  color: #d9d9d9;
}

.viewBox.on .v_comment_layout .form_list_comment_item .comments_list .user_info .info_text .e_text {
  color: #d9d9d9;
}

.viewBox.on .v_comment_layout .form_list_comment_item .comments_list .user_info .info_control_item {
  color: #d9d9d9;
}

.viewBox.on .v_comment_layout .form_list_comment_item .comments_list .user_info .info_control_item:before {
  -webkit-filter: grayscale(0.5) brightness(800%);
  filter: grayscale(0.5) brightness(800%);
}

.viewBox.on .v_comment_layout .form_list_comment_item .comments_list .user_info .info_control_item.suggestion:before {
  background-image: url(../images/icon/dabong_d_off.svg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.viewBox.on .v_comment_layout .form_list_comment_item .comments_list .user_info .info_control_item.suggestion.on:before {
  background-image: url(../images/icon/dabong_d_on.svg);
}

.viewBox.on .v_comment_layout .form_list_comment_item .comments_list .user_info .reply_form .info .form_input input {
  color: #d9d9d9;
  border-color: #3b3b3b;
}

.viewBox.on .v_comment_layout .form_list_comment_item .comments_list .user_info .reply_form .info .form_control .control_item .spoiler_name {
  color: #d9d9d9;
}

.viewBox.on .v_comment_layout .form_list_comment_item .comments_list .user_info .reply_form .info .form_control .control_item input[type=submit] {
  background-color: #000;
}

.viewBox.on .v_comment_layout .form_list_comment_item .comments_list .user_info .reply_layout {
  background-color: #161616;
}

.viewBox.on .v_comment_layout .form_list_comment_item .comments_list .user_info .reply_layout .form_list_comment_item .comments_list .user_info .info_text .text {
  color: #d9d9d9;
}

.viewBox.on .viewBox_footer {
  background-color: #1a1a1a;
  border-color: #000;
}

.viewBox.on .viewBox_footer .action_item .size {
  background-color: #2b2b2b;
  border-color: #000;
  color: #d9d9d9;
}

.viewBox.on .viewBox_footer .action_item .size button {
  color: #d9d9d9;
}

.viewBox.on .viewBox_footer .action_item .size input {
  background-color: #2b2b2b;
  color: #d9d9d9;
}

.viewBox.on .viewBox_footer .action_item .list,
.viewBox.on .viewBox_footer .action_item .comment,
.viewBox.on .viewBox_footer .action_item .prev,
.viewBox.on .viewBox_footer .action_item .next {
  background-color: #2b2b2b;
  border-color: #000;
  color: #d9d9d9;
}

.viewBox.on .viewBox_footer .action_item .list:before,
.viewBox.on .viewBox_footer .action_item .list:after,
.viewBox.on .viewBox_footer .action_item .comment:before,
.viewBox.on .viewBox_footer .action_item .comment:after,
.viewBox.on .viewBox_footer .action_item .prev:before,
.viewBox.on .viewBox_footer .action_item .prev:after,
.viewBox.on .viewBox_footer .action_item .next:before,
.viewBox.on .viewBox_footer .action_item .next:after {
  -webkit-filter: grayscale(0.5) brightness(800%);
  filter: grayscale(0.5) brightness(800%);
}

.viewBox.on .viewBox_footer .action_item .list:hover,
.viewBox.on .viewBox_footer .action_item .comment:hover,
.viewBox.on .viewBox_footer .action_item .prev:hover,
.viewBox.on .viewBox_footer .action_item .next:hover {
  background-color: #000;
}

.viewBox.on .emoji .emoji_btn {
  -webkit-filter: grayscale(0.5) brightness(800%) !important;
  filter: grayscale(0.5) brightness(800%) !important;
}

.viewBox.on .emoji .emoji_contents {
  background-color: #212121;
  border-color: #121212;
}

.viewBox.on .emoji .emoji_contents .emoji_item {
  -webkit-filter: grayscale(0.5) brightness(800%) !important;
  filter: grayscale(0.5) brightness(800%) !important;
}

.viewBox.on .quit_number_layout {
  background-color: #000;
}

.viewBox.on .quit_number_tab {
  border-color: #2f2f2f;
  background-color: transparent;
}

.viewBox.on .quit_number_tab_item {
  color: #d9d9d9;
}

.viewBox.on .quit_number_list a {
  border-color: #1a1a1a;
  background-color: #1a1a1a;
  color: #fff;
}

.viewBox.on .quit_number_list a.active,
.viewBox.on .quit_number_list a:hover {
  background-color: #ce4c29;
  border-color: #ce4c29;
  color: #fff;
}

.viewBox.on .warning_pop_layout {
  background-color: #000;
}

.viewBox.on .warning_pop_layout_head {
  color: #fff;
  border-color: #2f2f2f;
}

.viewBox.on .warning_pop_layout_contents .warning_form textarea {
  background-color: #1c1c1c;
  border-color: #000;
  color: #fff;
}

.viewBox.on .warning_pop_layout_contents .warning_form .form_btn .form_close {
  background-color: #1c1c1c;
  border-color: #1c1c1c;
  color: #fff;
}

.manga_view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.manga_view.on {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.view_manga {
  position: fixed;
  top: 60px;
  right: 0;
  bottom: 70px;
  background-color: #fff;
  border: 1px solid #E6E7EC;
  width: 250px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .2s;
  transition: all .2s;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  opacity: 0;
}

.view_manga_tab {
  width: 100%;
  height: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.view_manga_tab a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #3a3a3a;
  color: #fff;
  width: 100%;
  height: 100%;
  font-size: 14px;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.view_manga_tab a:hover,
.view_manga_tab a.active {
  background-color: #5b93ff;
}

.view_manga_over {
  width: 100%;
  height: calc(100% - 40px);
  overflow-y: auto;
  background-color: #fff;
  padding: 3px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.view_manga_over::-webkit-scrollbar {
  display: none;
}

.view_manga_item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 83px 1fr;
  grid-template-columns: 83px 1fr;
  grid-gap: 20px;
  padding: 3px 6px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.view_manga_item .img {
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  padding-top: 125%;
  background-color: #fafafa;
}

.view_manga_item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.view_manga_item .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.view_manga_item .info h4 {
  font-size: 14px;
  color: #1E1F21;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
  font-weight: 100;
}

.view_manga_item .info .data {
  margin-top: 10px;
}

.view_manga_item .info .data time {
  color: #b1b1b1;
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.view_manga_item .info .data .continue {
  color: #1E1F21;
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 5px;
}

.view_manga_item .info .data .continue .arrow {
  background-image: url(../images/icon/arrow.svg);
  background-repeat: no-repeat;
  width: 9px;
  height: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 10px;
}

.view_manga_item .info .data .new {
  margin-top: 5px;
  font-size: 12px;
  color: #E41C1C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.view_manga_item .info .data .new span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 2px;
}

.view_manga_item:last-child {
  margin-bottom: 0;
}

.view_manga_item:hover {
  background-color: #fafafa;
}

.view_manga .more {
  margin-left: -25px;
  margin-right: -25px;
  margin-bottom: -25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: 1px solid #E6E7EC;
  padding: 15px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #1E1F21;
}

.view_manga.on {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  z-index: 9999;
  opacity: 1;
}

.comments_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 24px 1fr;
  grid-template-columns: 24px 1fr;
  grid-gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #E6E7EC;
}

.comments_list .user_img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  background-image: url(../images/comments/user_icon.svg);
  background-repeat: no-repeat;
}

.comments_list .user_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.comments_list .user_info {
  position: relative;
}

.comments_list .user_info .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.comments_list .user_info .name h4 {
  font-size: 14px;
  color: #1E1F21;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 15px;
}

.comments_list .user_info .name time {
  font-size: 13px;
  color: #8F9197;
}

.comments_list .user_info .info_text {
  margin-top: 15px;
  color: #1E1F21;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.comments_list .user_info .info_text.spo_text {
  display: none;
}

.comments_list .user_info .info_text .e_text {
  -webkit-transition: all .2s;
  transition: all .2s;
}

.comments_list .user_info .info_text .e_text.on {
  opacity: 0;
  z-index: -1;
}

.comments_list .user_info .info_text .edit_form {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px;
  border: 1px solid #1a1a1a;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  padding-right: 70px;
}

.comments_list .user_info .info_text .edit_form input {
  border: 0;
  font-size: 13px;
  background: none;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.comments_list .user_info .info_text .edit_form button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 13px;
  color: #fff;
  background-color: #1a1a1a;
  min-height: unset;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60px;
}

.comments_list .user_info .info_text .edit_form.on {
  opacity: 1;
  z-index: 1;
}

.comments_list .user_info .info_control {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.comments_list .user_info .info_control_item {
  background: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 0;
  min-height: unset;
  margin-right: 15px;
  font-size: 13px;
}

.comments_list .user_info .info_control_item:before {
  content: '';
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-size: 80% 80%;
  background-position: center;
  margin-right: 5px;
}

.comments_list .user_info .info_control_item.suggestion:before {
  background-image: url(../images/comments/dabong_off.svg);
  width: 19px;
  height: 17px;
}

.comments_list .user_info .info_control_item.suggestion.on:before {
  background-image: url(../images/comments/dabong_on.svg);
}

.comments_list .user_info .info_control_item.Deprecated:before {
  background-image: url(../images/comments/dabong_d_off.svg);
  width: 19px;
  height: 17px;
}

.comments_list .user_info .info_control_item.Deprecated.on:before {
  background-image: url(../images/comments/dabong_d_on.svg);
}

.comments_list .user_info .info_control_item:last-child {
  margin-right: 0;
}

.comments_list .user_info .info_control .controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.comments_list .user_info .info_control .controls .info_control_item {
  color: #8F9197;
  font-size: 13px;
}

.comments_list .user_info .info_control .controls .info_control_item:hover {
  color: #1a1a1a;
}

.comments_list .user_info .more_comment {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  color: #4D94FF;
  background: none;
  margin-top: 10px;
  padding: 0 10px;
  height: 20px;
  min-height: unset;
  -webkit-transition: all .2s;
  transition: all .2s;
  border-radius: 30px;
}

.comments_list .user_info .more_comment:before {
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
  background-image: url(../images/comments/down_arrow.svg);
  background-repeat: no-repeat;
  width: 12px;
  height: 9px;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.comments_list .user_info .more_comment .num {
  margin-left: 10px;
}

.comments_list .user_info .more_comment.on:before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.comments_list .user_info .more_comment:hover {
  background-color: #4D94FF;
  color: #fff;
}

.comments_list .user_info .more_comment:hover:before {
  -webkit-filter: brightness(200%) grayscale(0.5);
  filter: brightness(200%) grayscale(0.5);
}

.comments_list .user_info .view_action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
}

.comments_list .user_info .view_action_item {
  width: 81px;
  height: 25px;
  border-radius: 20px;
  border: 1px solid transparent;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  font-size: 13px;
  margin-right: 5px;
}

.comments_list .user_info .view_action_item button {
  width: 100%;
  height: 100%;
  background: none;
  border: 0;
  font-size: 13px;
}

.comments_list .user_info .view_action_item.spo {
  border-color: #245FD1;
  background-color: #245FD1;
  color: #d9d9d9;
}

.comments_list .user_info .view_action_item.view {
  border-color: #1E1F21;
  color: #1E1F21;
}

.comments_list .user_info .view_action_item:last-child {
  margin-right: 0;
}

.comments_list .user_info .reply_form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 24px 1fr;
  grid-template-columns: 24px 1fr;
  grid-gap: 15px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 0;
  opacity: 0;
}

.comments_list .user_info .reply_form .img {
  background-repeat: no-repeat;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin-top: 10px;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
}

.comments_list .user_info .reply_form .img.me {
  background-image: url(../images/comments/me.svg);
}

.comments_list .user_info .reply_form .info {
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  z-index: 999;
}

.comments_list .user_info .reply_form .info .form_input input,
.comments_list .user_info .reply_form .info .form_input textarea {
  width: 100%;
  height: 40px;
  background: none;
  border: 0;
  border-bottom: 1px solid #E6E7EC;
  color: #1E1F21;
  font-size: 13px;
}

.comments_list .user_info .reply_form .info .form_input input:focus,
.comments_list .user_info .reply_form .info .form_input textarea:focus {
  border-color: #1E1F21;
}

.comments_list .user_info .reply_form .info .form_control {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.comments_list .user_info .reply_form .info .form_control .emoji_contents {
  margin-left: 0;
}

.comments_list .user_info .reply_form .info .form_control .control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.comments_list .user_info .reply_form .info .form_control .control_item {
  margin-right: 15px;
}

.comments_list .user_info .reply_form .info .form_control .control_item input {
  cursor: pointer;
}

.comments_list .user_info .reply_form .info .form_control .control_item input[type=button] {
  border: 1px solid #E6E7EC;
  background-color: #fff;
  border-radius: 30px;
  width: 50px;
  height: 30px;
  font-size: 13px;
}

.comments_list .user_info .reply_form .info .form_control .control_item input[type=submit] {
  border: 0;
  background-color: #1E1F21;
  border-radius: 30px;
  width: 50px;
  height: 30px;
  font-size: 13px;
  color: #fff;
}

.comments_list .user_info .reply_form .info .form_control .control_item:last-child {
  margin-right: 0;
}

.comments_list .user_info .reply_form.on {
  height: 85px;
  opacity: 1;
}

.comments_list .user_info .reply_form.on .img,
.comments_list .user_info .reply_form.on .info {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.comments_list .user_info .reply_layout {
  padding: 5px 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fafafa;
  margin-top: 10px;
}

.comments_list .user_info .reply_layout .form_list_comment_item:last-child .comments_list {
  border-bottom: 0;
}

.comments_list .user_info .user_Declaration {
  position: absolute;
  top: 0;
  right: 20px;
  cursor: pointer;
  font-size: 13px;
  color: #8F9197;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.comments_list .user_info .user_Declaration .Declaration_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.comments_list .user_info .user_Declaration .Declaration_item .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: -5px;
  margin-right: 5px;
  width: 20px;
}

.comments_list .user_info .user_Declaration .Declaration_item .icon img {
  width: 100%;
  height: auto;
}

.comments_list .user_info .user_Declaration:hover {
  color: #ce4c29;
}

.comments_list .user_info .more_comments_list {
  height: 0;
  opacity: 0;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.comments_list .user_info .more_comments_list.on {
  height: auto;
  opacity: 1;
}

.comments_list:last-child .user_info .reply_form.on .info .form_control .emoji .emoji_contents {
  margin-top: -157px;
}

.emoji_btn {
  min-height: unset;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: none;
}

.emoji_contents {
  position: fixed;
  width: 200px;
  min-height: 132px;
  background-color: #fff;
  border: 1px solid #E6E7EC;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 6px;
  margin-top: 10px;
  margin-left: -165px;
  display: none;
  grid-gap: 10px;
  z-index: 99999;
}

.emoji_contents .emoji_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  width: 20px;
  height: 20px;
}

.emoji_contents.on {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 1fr);
}

.spoiler {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.spoiler_name {
  font-size: 14px;
  color: #1E1F21;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
}

.spoiler_action {
  background-color: #8F9197;
  border-radius: 164px;
  width: 44px;
  height: 24px;
  position: relative;
  min-height: unset;
}

.spoiler_action:after {
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 20px;
  background-color: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  border-radius: 50%;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.spoiler_action.on {
  background-color: #245FD1;
}

.spoiler_action.on:after {
  left: unset;
  right: 2px;
}

@media (max-width: 980px) {
  .viewBox_tit {
    padding: 0;
  }

  .viewBox_tit .tit {
    width: calc(100% - 134px);
  }

  .viewBox_tit .control {
    position: unset;
    margin-left: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .viewBox_tit .control .mode {
    margin-right: 10px;
    width: 30px;
    height: 30px;
  }

  .viewBox_tit .control .mode_info {
    display: none;
  }

  .viewBox_tit .control .mode.on .mode_action {
    left: 0;
  }

  .viewBox_tit .control_item {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-right: 10px;
  }

  .viewBox_tit .control_item.subscribe {
    width: 24px;
    height: 24px;
    overflow: hidden;
    position: relative;
    border-radius: 50%;
    background-color: #fff;
  }

  .viewBox_tit .control_item.subscribe:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #fff;
  }

  .viewBox_contents .viewinfo {
    width: 100%;
  }

  .viewBox_contents .viewinfo p img {
    width: 100%;
  }

  .viewBox_contents::-webkit-scrollbar {
    display: none;
  }

  .viewBox_footer .quit_menu {
    right: 10px;
  }

  .viewBox_footer .action {
    width: 100%;
    -ms-grid-columns: 95px 1fr 95px;
    grid-template-columns: 95px 1fr 95px;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .viewBox_footer .action_item a:before {
    margin-right: 0 !important;
  }

  .viewBox_footer .action_item a:after {
    margin-left: 0 !important;
  }

  .viewBox_footer .action_item a span {
    display: none;
  }

  .viewBox .quit_number_layout {
    width: 90% !important;
  }

  .viewBox .warning_pop_layout {
    width: 90% !important;
  }

  .viewBox .v_comment_layout {
    width: calc(100% - 60px);
    padding: 10px;
  }

  .viewBox .v_comment_layout .form_list {
    margin-top: 15px;
  }

  .viewBox .v_comment_layout .form_list_comment_item .comments_list {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0;
    padding: 10px 0;
  }

  .viewBox .v_comment_layout .form_list_comment_item .comments_list .user_img {
    display: none !important;
  }

  .viewBox .v_comment_layout .form_list_comment_item .comments_list .user_info .info_text {
    margin-top: 0;
  }

  .viewBox .v_comment_layout .form_list_comment_item .comments_list .user_info .info_text.spo_text {
    padding-top: 0;
  }

  .viewBox .v_comment_layout .form_list_comment_item .comments_list .user_info .info_control {
    margin-top: 0;
  }

  .viewBox .v_comment_layout .form_list_comment_item .comments_list .user_info .view_action {
    margin-top: 0;
    padding: 10px 0;
  }

  .viewBox .v_comment_layout .form_list_comment_item .comments_list .reply_layout {
    padding: 10px;
  }

  .viewBox .v_comment_layout .form_list_comment_item .comments_list .reply_layout .form_list_comment_item .comments_list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0 !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .viewBox .v_comment_layout .form_list_comment_item .comments_list .reply_layout .form_list_comment_item .comments_list .user_info .more_comments_list {
    margin-top: 10px;
  }

  .viewBox .v_comment_layout .form_list_comment_item .comments_list .reply_layout .form_list_comment_item .comments_list .user_info .info_text .text {
    color: #d9d9d9;
  }

  .viewBox .spoiler_name {
    display: none !important;
  }
}

/*# sourceMappingURL=viewBox.css.map */