/* ../static/font/Open_Sans/OpenSans.css */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: normal;
  src:
    local("Open Sans"),
    local("OpenSans-Regular"),
    url("./OpenSans-Regular-CRYIR5E5.ttf") format("truetype");
}

/* src/style/index.scss */
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: normal;
  src:
    local("Raleway"),
    local("Raleway-Regular"),
    url("./Raleway-Regular-NOFERR7R.ttf") format("truetype");
}
.button {
  cursor: pointer;
}
.icon-button {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  height: 1em;
  cursor: pointer;
}
.icon-button .icon {
  max-height: 100%;
}
body {
  margin: 0;
  font-family:
    "Open Sans",
    "Segoe UI",
    "Microsoft YaHei UI",
    Roboto,
    Tahoma,
    Geneva,
    Verdana,
    sans-serif;
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: normal;
  src:
    local("Raleway"),
    local("Raleway-Regular"),
    url("./Raleway-Regular-NOFERR7R.ttf") format("truetype");
}
#message-container {
  position: fixed;
  top: 2em;
  left: 0;
  width: 100%;
  pointer-events: none;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  z-index: 100000000000;
}
#message-container .icon {
  height: 1em;
  margin-right: 0.5em;
}
#message-container .message {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  height: 2em;
  margin-top: 0.5em;
  color: #888;
}
#message-container .message .message-block {
  display: flex;
  flex-flow: row nowrap;
  flex-shrink: 0;
  align-items: center;
  padding: 0em 1em;
  background: white;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
  height: 2em;
}
#message-container .message.info .icon {
  color: #aaa;
}
#message-container .message.warn .icon {
  color: #ffc537;
}
#message-container .message.error .icon {
  color: #ff6534;
}
#message-container .message.success .icon {
  color: #94e383;
}
#message-container .message.show {
  animation-name: show-msg;
  animation-duration: 0.3s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
#message-container .message.hide {
  animation-name: hide-msg;
  animation-duration: 0.3s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
@keyframes show-msg {
  0% {
    height: 0;
    opacity: 0;
  }
  100% {
    height: 2em;
    opacity: 1;
  }
}
@keyframes hide-msg {
  0% {
    height: 2em;
    opacity: 1;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: normal;
  src:
    local("Raleway"),
    local("Raleway-Regular"),
    url("./Raleway-Regular-NOFERR7R.ttf") format("truetype");
}
.top-nav {
  font-family:
    "Raleway",
    "Roboto",
    "Segoe UI",
    "Microsoft YaHei UI",
    Tahoma,
    Geneva,
    Verdana,
    sans-serif;
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  font-weight: bold;
  margin-top: 1em;
  user-select: none;
}
.top-nav .button-menu {
  display: none;
}
.top-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: row nowrap;
}
.top-nav li {
  margin: 1em;
  border-bottom: solid 2px transparent;
  transition: all 0.2s;
  display: block;
}
.top-nav li:hover {
  border-bottom-color: black;
}
.top-nav a {
  text-align: center;
  display: block;
  padding: 0.5em 1em;
  color: inherit;
  text-decoration: none;
}
.top-nav .title {
  font-size: 2em;
  font-weight: lighter;
}
@media (max-width: 1200px) {
  .top-nav .menu-content {
    justify-content: flex-start;
  }
}
@media (max-width: 1000px) {
  .top-nav {
    position: sticky;
    align-items: flex-start;
    top: 0;
    left: 0;
    z-index: 100;
    margin: 0;
    height: 4em;
    width: 100%;
    width: 100%;
    height: 4em;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
  }
  .top-nav .button-menu {
    font-size: 2em;
    width: 2em;
    height: 2em;
    box-sizing: border-box;
    display: initial;
    z-index: 1000;
    padding: 0.5em;
  }
  .top-nav .title {
    font-size: 1.2em;
  }
  .top-nav .nav-list {
    display: flex;
    flex-flow: column nowrap;
  }
  .top-nav .menu-content {
    color: #777;
    position: fixed;
    top: 0;
    left: -19em;
    width: 16em;
    height: 100%;
    padding-top: 3em;
    background: white;
    box-shadow: 0 0 3em rgba(0, 0, 0, 0.1);
    flex-flow: column nowrap;
    z-index: 100;
    transition: left 0.3s;
  }
  .top-nav .menu-content.expand {
    left: 0;
  }
  .top-nav a {
    text-align: left;
    padding: 0.5em 2em;
  }
  .top-nav li {
    margin: 0;
    padding: 1em 0.5em;
  }
  .top-nav li:hover {
    border-bottom-color: transparent;
    background: #eee;
  }
  .top-nav .title {
    font-size: 1.2em;
  }
  .top-nav.expand .button-menu {
    color: #777;
  }
}
@media (min-width: 1000px) {
  .top-nav .menu-content {
    width: 1600px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .top-nav .menu-admin {
    position: absolute;
    right: 0;
    display: flex;
    flex-flow: row nowrap;
  }
  .top-nav .icon-button .icon {
    height: 1em;
  }
  .top-nav .icon-button .content {
    display: none;
  }
  .top-nav .title {
    margin: 2em 0;
  }
}
@media (min-width: 1000px) and (max-width: 1660px) {
  .top-nav .menu-content {
    width: 1360px;
  }
}
@media (min-width: 1000px) and (max-width: 1400px) {
  .top-nav .menu-content {
    width: 100%;
  }
}
@media (min-width: 1000px) and (max-width: 1200px) {
  .top-nav .menu-content {
    justify-content: flex-start !important;
  }
}
@media (max-width: 1000px) {
  .top-nav .menu-content {
    display: flex;
    flex-flow: column nowrap;
    box-sizing: border-box;
  }
  .top-nav .menu-admin {
    flex: 1 0;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-end;
  }
  .top-nav .menu-admin a {
    padding: 1.5em 2.5em;
  }
  .top-nav .icon-button {
    justify-content: flex-start;
  }
  .top-nav .icon-button .icon {
    height: 1em;
  }
  .top-nav .icon-button .content {
    margin-left: 1em;
  }
}
.page-footer {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  background-color: #ddd;
  height: 200px;
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: normal;
  src:
    local("Raleway"),
    local("Raleway-Regular"),
    url("./Raleway-Regular-NOFERR7R.ttf") format("truetype");
}
.dialog {
  user-select: none;
  pointer-events: no;
}
.dialog.dialog-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}
.dialog .wrapper {
  width: 400px;
  min-height: 200px;
  background-color: white;
  border-radius: 1em;
  padding: 1.5em 2em;
  display: flex;
  flex-flow: column nowrap;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.dialog .icon {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  height: 3em;
}
.dialog .content {
  flex: 1 0;
  display: flex;
  flex-flow: column;
  align-items: center;
  font-size: 1.2em;
}
.dialog .buttons {
  display: flex;
  flex-flow: row;
  justify-content: flex-end;
}
.dialog .button {
  padding: 0.5em 0.5em;
  background-color: #eee;
  margin-left: 1em;
  border-radius: 0.5em;
  min-width: 5em;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #777;
  box-sizing: border-box;
  font-family:
    "Raleway",
    "Roboto",
    "Segoe UI",
    "Microsoft YaHei UI",
    Tahoma,
    Geneva,
    Verdana,
    sans-serif;
}
.dialog .button.primary {
  background-color: #444;
  color: white;
}
.dialog .button.progress {
  padding: 0;
}
.dialog .button.progress .icon {
  height: 1.5em;
  animation-name: spin;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.63, 0.19, 0.44, 0.88);
}
.dialog.show {
  animation-name: show-dialog-bg;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
.dialog.show .wrapper {
  animation-name: show-dialog-wrapper;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.39, 1.49, 0.84, 0.98);
  animation-iteration-count: 1;
}
.dialog.hide {
  animation-name: hide-dialog-bg;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
.dialog.hide .wrapper {
  animation-name: hide-dialog-wrapper;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
}
@keyframes show-dialog-bg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes show-dialog-wrapper {
  0% {
    transform: scale(0.5) translate(0, -100px);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
@keyframes hide-dialog-bg {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes hide-dialog-wrapper {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: scale(0) translate(0, 100px);
    opacity: 0;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(720deg);
  }
}
.waterfall {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
}
.waterfall .waterfall-column {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.tabs .tabs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-flow: row nowrap;
}
.tabs .tab-item {
  padding: 0.5em 1em;
  margin: 0 1em;
  border-bottom: solid 2px transparent;
  cursor: pointer;
}
.tabs .tab-item.active {
  border-bottom-color: black;
}
.form {
}
.form .form-field {
  margin: 1.5em 0;
}
.form .field-name {
  font-size: 0.8em;
}
.form input {
  border: none 0;
  border-bottom: solid 2px;
  outline: none;
  padding: 0.2em 0;
  font-size: 1em;
  width: 100%;
}
.form .field-editor-loc {
  display: flex;
  flex-flow: row;
}
.form .field-editor-loc .seperator {
  margin: 0 0.5em;
}
.form input::-webkit-outer-spin-button,
.form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form input[type=number] {
  -moz-appearance: textfield;
}
.progress-bar {
  width: 100%;
  height: 5px;
  position: relative;
  color: #ccc;
}
.progress-bar .progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: black;
}
.comment-system .ver-wrapper {
  flex: 1 1;
}
.comment-system .hor-wrapper {
  display: flex;
  flex-flow: row nowrap;
}
.comment-system .avatar-wrapper {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  width: 60px;
}
.comment-system .avatar {
  height: 60px;
  width: 60px;
  border-radius: 100%;
  margin-bottom: 20px;
}
.comment-system .post-area {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
}
.comment-system .post-area .post-hint {
  display: none;
}
.comment-system .post-area .hint {
  margin: 0;
  margin-top: 0.5em;
  font-size: 1em;
  color: #AAA;
  font-family: "Raleway";
}
.comment-system .post-area .hint.none {
  white-space: pre;
}
.comment-system .post-area .hint.error {
  color: #ff5a5a;
}
.comment-system .post-area .hor-wrapper {
  align-items: flex-start;
}
.comment-system .post-area .comment-poster {
  margin-top: 20px;
  flex: 1;
}
.comment-system .post-area .input-area {
  flex: 1;
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 1em;
}
.comment-system .post-area .avatar-wrapper .line {
  opacity: 0;
}
.comment-system .post-area [contentEditable=true]:empty:before {
  content: attr(data-placeholder);
  cursor: text;
  color: #AAA;
}
.comment-system .post-area .input-wrapper {
  flex: 1;
  margin: 0 0.5em;
}
.comment-system .post-area .input-wrapper .text-input {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
}
.comment-system .post-area .text-input {
  flex: 1 0;
  padding: 0.2em 0.5em;
  margin: 0 0.5em;
  border: none 0px transparent;
  border-bottom: solid 2px #CCC;
  background-color: transparent;
  font-size: 1em;
  transition: all 0.3s;
  outline: none;
}
.comment-system .post-area .text-input::placeholder {
  color: #AAA;
}
.comment-system .post-area .text-input:focus {
  border-color: #4fc3f7;
}
.comment-system .post-area .input-url {
  margin-top: 1em;
}
.comment-system .post-area .input-comment {
  margin-top: 1em;
  border: none 0px transparent;
  min-height: 5em;
  border-left: solid 3px #CCC;
}
.comment-system .post-area .input-comment:empty {
  border-color: transparent;
}
.comment-system .post-area .input-comment:hover {
  border-color: #4fc3f7;
}
.comment-system .post-area .input-comment:focus {
  border-color: #4fc3f7;
}
.comment-system .post-area .button-send {
  margin-left: 1em;
  width: 36px;
  height: 36px;
  cursor: pointer;
  fill: #AAA;
  transition: all 0.2s;
}
.comment-system .post-area .button-send.sending > svg {
  fill: #4fc3f7;
  transform-origin: center;
  animation-name: rotation;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.comment-system .post-area .button-send:hover {
  fill: #4fc3f7;
}
.comment-system .post-area .mobile-layout {
  display: none;
}
.comment-system .info-wrapper {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;
}
.comment-system .info-wrapper .user-info {
  flex: 1;
  display: flex;
  flex-flow: column nowrap;
}
.comment-system .info-wrapper .user-info .hor-wrapper {
  align-items: stretch;
}
.comment-system ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@keyframes rotation {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}
.decoration {
  width: 60px;
  display: block;
  position: relative;
  cursor: default;
}
.decoration .icon {
  display: flex;
}
.decoration .icon svg {
  width: 100%;
  height: 100%;
}
.decoration .circle-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  margin-top: 40px;
  align-items: center;
  transition: all 0.3s;
}
.decoration .circle-wrapper:hover {
  margin-top: 30px;
}
.decoration .circle {
  height: 20px;
  width: 20px;
  font-size: 20px;
  background-color: #CCC;
  border-radius: 100%;
  z-index: 1;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  transition: all 0.3s;
  cursor: pointer;
}
.decoration .circle .icon {
  fill: white;
  width: 80%;
  opacity: 0;
  transition: all 0.3s;
  width: 80%;
  height: 80%;
}
.decoration .circle:hover {
  height: 40px;
  width: 40px;
  background-color: #4fc3f7;
}
.decoration:hover .circle .icon {
  opacity: 1;
}
.decoration .line-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
.decoration .line {
  flex: 1 0;
  width: 5px;
  background-color: rgba(0, 0, 0, 0.05);
}
.comment-loading {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  height: 4em;
}
.comment-loading .text-wrapper {
  font-family: "Raleway";
  color: #CCC;
  font-size: 1.2em;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  height: 40px;
  margin-left: 1em;
}
.comment-loading .circle-wrapper {
  margin: 0;
}
.comment-loading .circle-wrapper:hover {
  margin: 0;
}
.comment-loading .circle-wrapper .circle {
  width: 40px;
  height: 40px;
  background-color: #4fc3f7;
  cursor: default;
}
.comment-loading .circle-wrapper .circle .icon {
  fill: white;
  opacity: 1;
}
.spin {
  transform-origin: center;
  animation-name: rotation;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.comment {
  user-select: text;
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
}
.comment:hover > .decoration .circle {
  background-color: #4fc3f7;
}
.comment > .hor-wrapper {
  align-items: flex-start;
}
.comment .hor-wrapper {
  display: flex;
  flex-flow: row nowrap;
}
.comment .comment-wrapper {
  flex: 1 1;
  margin-left: 20px;
}
.comment .name {
  color: rgba(0, 0, 0, 0.6);
  font-weight: bold;
  border-bottom: solid 2px transparent;
  transition: all 0.2s;
  text-decoration: none;
}
.comment .name:hover {
  color: #4fc3f7;
  border-color: #4fc3f7;
}
.comment .time {
  margin-left: 1em;
  font-size: 0.8em;
  color: rgba(0, 0, 0, 0.2);
  font-weight: bold;
}
.comment .comment-text {
  margin: 1em 0;
  color: #555;
  min-height: 5em;
  white-space: normal;
  word-break: break-all;
  word-break: break-word;
  min-height: inherit;
}
.comment .sub-comment {
  padding-left: 30px;
  border-left: solid 3px #E0F7FA;
}
@media all and (max-width: 800px) {
  .comment-system .post-area {
    min-height: 6em;
  }
  .comment-system .post-area .decoration {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
  }
  .comment-system .post-area .decoration .circle-wrapper {
    margin: 0;
    position: relative;
  }
  .comment-system .post-area .decoration .circle {
    width: 40px;
    height: 40px;
    background-color: #4fc3f7;
  }
  .comment-system .post-area .decoration .circle .icon {
    opacity: 1;
  }
  .comment-system .post-area .post-hint {
    flex: 1;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    font-family: "Raleway";
    color: #CCC;
    margin-left: 1em;
  }
  .comment-system .post-area .comment-poster {
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    display: none;
    opacity: 0;
  }
  .comment-system .post-area .comment-poster.show {
    display: flex;
    opacity: 1;
  }
  .comment-system .post-area .comment-poster > .hor-wrapper {
    background-color: white;
    margin: 1em;
    padding: 1.5em;
    padding-bottom: 0;
    border-radius: 0.5em;
  }
  .comment-system .post-area .text-input {
    border: none;
    background-color: #EEE;
    padding: 0.5em 1em;
    border-radius: 0.3em;
  }
  .comment-system .post-area .button-send {
    display: none;
  }
  .comment-system .post-area .button-send.mobile {
    display: block;
    padding: 0.5em;
  }
  .comment-system .post-area .button-send.mobile .icon {
    width: 100%;
    height: 100%;
  }
  .comment-system .post-area .mobile-layout {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-end;
  }
  .comment-system .post-area .mobile-layout .avatar-wrapper {
    width: 48px;
    height: 48px;
    display: none;
  }
  .comment-system .post-area .mobile-layout .avatar-wrapper img {
    width: 100%;
    height: 100%;
  }
  .comment-system .comment-loading .circle-wrapper .circle {
    background-color: #CCC;
  }
  .comment-system .comment .avatar-wrapper {
    width: 48px;
  }
  .comment-system .comment .avatar {
    width: 48px;
    height: 48px;
  }
}
@media all and (max-width: 500px) {
  .comment-system .comment-poster .avatar-wrapper {
    display: none;
  }
  .comment-system .comment-poster .mobile-layout {
    justify-content: space-between;
  }
  .comment-system .comment-poster .mobile-layout .avatar-wrapper {
    display: block;
  }
}
.stats-like {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-top: 2em;
  user-select: none;
}
.stats-like.hit {
  color: #ff5c83 !important;
}
.stats-like .like-button {
  width: 3em;
  border-radius: 100px;
  cursor: pointer;
  overflow: visible;
  stroke-linecap: round;
  stroke-linejoin: round;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
@keyframes hit-like {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
body {
  background-color: #eee;
}
.top-nav {
  background-color: #222;
  color: white;
  margin-top: 0;
}
.top-nav li:hover {
  border-color: white;
}
@media (max-width: 1000px) {
  .top-nav {
    background-color: black;
  }
  .top-nav .title {
    color: white;
  }
  .top-nav .button-menu {
    color: white;
  }
}
.page-content {
  min-height: 100vh;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-thumb {
  background: #888;
}
::-webkit-scrollbar-thumb:hover {
  background: #444;
}
.gallery-preview {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 2em;
  display: flex;
  flex-flow: row wrap;
}
.gallery-preview .exhibit-item {
  flex-grow: 1;
  background-color: #ccc;
  margin: 10px;
  transition-timing-function: cubic-bezier(0.32, 2.54, 0.71, 1);
  transform-origin: 0.5 0.5;
  transition: transform 0.2s;
}
.gallery-preview .exhibit-item:hover {
  transform: scale(1.05);
}
.gallery-preview .exhibit-item img {
  opacity: 1;
  transition: opacity 1s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-preview .exhibit-item.loading img {
  opacity: 0;
}
.exhibit-detail {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, background-color 0.5s ease-in-out;
  pointer-events: none;
}
.exhibit-detail.dark {
  background-color: black;
}
.exhibit-detail.visible {
  opacity: 1;
  pointer-events: all;
}
.exhibit-detail .img-viewport {
  width: 100%;
  height: 100%;
}
.exhibit-detail .img-viewport .viewport-transform {
  width: 100%;
  height: 100%;
}
.exhibit-detail .img-view {
  flex: 1 0;
  position: relative;
  user-select: none;
}
.exhibit-detail .img-view .img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.2s ease-in-out;
}
.exhibit-detail .img-view.loading .img {
  opacity: 0;
}
.exhibit-detail .img-view .page-left,
.exhibit-detail .img-view .page-right {
  position: absolute;
  top: 0;
  width: 4em;
  height: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  color: white;
  fill: white;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 100;
}
.exhibit-detail .img-view .page-left:hover,
.exhibit-detail .img-view .page-right:hover {
  opacity: 1;
}
.exhibit-detail .img-view .page-left .icon-button,
.exhibit-detail .img-view .page-right .icon-button {
  width: 2em;
  height: 2em;
}
.exhibit-detail .img-view .page-left {
  left: 0;
}
.exhibit-detail .img-view .page-right {
  right: 0;
}
.exhibit-detail .side-pane {
  width: 0;
  position: relative;
  background-color: #e5e5e5;
  padding: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  position: relative;
  transition: width 0.3s ease-in-out;
}
.exhibit-detail .side-pane ::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.exhibit-detail .side-pane ::-webkit-scrollbar-thumb {
  background: #888;
}
.exhibit-detail .side-pane ::-webkit-scrollbar-thumb:hover {
  background: #444;
}
.exhibit-detail .side-pane.visible {
  width: 400px;
}
.exhibit-detail .side-pane.visible .button-hide-props-padding {
  right: calc(400px - 2em);
}
.exhibit-detail .side-pane .button-hide-props-padding {
  position: fixed;
  right: -2em;
  top: 50%;
  padding: 0.5em;
  z-index: 100000;
  transition: right 0.3s ease-in-out;
}
.exhibit-detail .side-pane .button-hide-props-padding:hover .button-hide-props {
  opacity: 1;
  transform: translate(-0.5em, 0);
  width: 2em;
}
.exhibit-detail .side-pane .button-hide-props {
  width: 2em;
  height: 4em;
  background-color: #e5e5e5;
  border-radius: 0.5em;
  opacity: 0.1;
  transition: all 0.2s ease-in-out;
  transform: translate(1em, 0);
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: start;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 10000;
}
.exhibit-detail .side-pane .button-hide-props .icon {
  width: 2em;
}
.exhibit-detail .exhibit-props {
  width: 400px;
}
.exhibit-detail .exhibit-props .exhibit-data {
  background-color: #eee;
  padding: 2em;
  padding-top: 5em;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.exhibit-detail .exhibit-props .title {
  font-size: 1.4em;
}
.exhibit-detail .exhibit-props .title .album-pics {
  margin-left: 1em;
  font-size: 0.8em;
  color: #aaa;
  visibility: collapse;
}
.exhibit-detail .exhibit-props .title .album-pics::after {
  content: "P";
}
.exhibit-detail .exhibit-props .title .album-pics.visible {
  visibility: visible;
}
.exhibit-detail .exhibit-props .description {
  margin-top: 1em;
  margin-bottom: 2em;
}
.exhibit-detail .exhibit-props .form .form-field {
  display: flex;
  flex-flow: row nowrap;
  margin: 0.5em 0;
  color: #444;
  align-items: baseline;
}
.exhibit-detail .exhibit-props .form .field-name {
  width: 8em;
  color: #aaa;
  text-align: right;
  margin-right: 1em;
}
.exhibit-detail .exhibit-props .form .field-value {
  flex: 1 0;
}
.exhibit-detail .exhibit-props .form .field-editor-loc {
  flex: 1 0;
}
.exhibit-detail .exhibit-props .form input {
  flex: 1 0;
  border: none;
  background-color: transparent;
}
.exhibit-detail .exhibit-props .form .form-field-time {
  border-top: solid 1px #bbb;
  padding-top: 2em;
}
.exhibit-detail .exhibit-props .form .form-field-focusLength .field-value::after {
  font-size: 1em;
  content: "mm";
}
.exhibit-detail .exhibit-props .form .form-field-aperture .field-value::before {
  font-size: 1em;
  content: "f/";
}
.exhibit-detail .exhibit-props .form .form-field-shutter .field-value::after {
  font-size: 1em;
  content: "s";
}
.exhibit-detail .buttons {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.2s;
  display: flex;
  flex-flow: row nowrap;
  padding-left: 2em;
}
.exhibit-detail .buttons:hover {
  opacity: 1;
}
.exhibit-detail .buttons .icon-button {
  width: 3em;
  height: 3em;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  fill: white;
  color: white;
}
.exhibit-detail .buttons .icon {
  width: 1.5em;
  height: 1.5em;
}
.exhibit-detail .comment-system .post-area > .decoration .circle-wrapper {
  margin-top: calc(5em + 20px);
}
.exhibit-detail .comment-system .post-area > .decoration .circle-wrapper .circle:hover {
  background-color: #444;
}
.exhibit-detail .comment-system .post-area > .decoration .circle-wrapper:hover {
  margin-top: calc(5em + 10px);
}
.exhibit-detail .comment-system .post-area .comment-poster {
  margin-top: 5em;
}
.exhibit-detail .comment-system .post-area .button-send {
  color: #888;
  margin-left: 0;
}
.exhibit-detail .comment-system .post-area .button-send:hover {
  color: #444;
}
.exhibit-detail .comment-system .post-area .text-input:focus {
  border-color: #444;
}
.exhibit-detail .comment-system .post-area .input-comment:hover {
  border-color: #444;
}
.exhibit-detail .comment-system .comment > .ver-wrapper > .hor-wrapper {
  position: relative;
  align-items: flex-start;
}
.exhibit-detail .comment-system .comment .avatar-wrapper {
  margin-top: 20px;
}
.exhibit-detail .comment-system .comment .sender-info {
  display: flex;
  flex-flow: column nowrap;
  padding-top: 25px;
  align-items: flex-start;
}
.exhibit-detail .comment-system .comment .sender-info .time {
  margin-left: 0;
}
.exhibit-detail .comment-system .comment .sender-info .name:hover {
  color: black;
  border-color: black;
}
.exhibit-detail .comment-system .comment .decoration .circle:hover {
  background-color: #aaa;
}
.exhibit-detail .comment-system .comment:hover .decoration .circle {
  background-color: #aaa;
}
.exhibit-detail .comment-system .comment .comment > .ver-wrapper > .hor-wrapper {
  position: relative;
  align-items: flex-start;
}
.exhibit-detail .comment-system .comment .comment .avatar-wrapper {
  position: absolute;
  left: -60px;
  top: 0;
}
.exhibit-detail .comment-system .comment .comment .sender-info {
  padding-top: 25px;
}
.exhibit-detail .comment-system .comment .comment .decoration .circle-wrapper {
  margin-top: 20px;
}
.exhibit-detail .comment-system .comment .comment .decoration .circle {
  width: 60px;
  height: 60px;
  opacity: 0;
}
.exhibit-detail .comment-system .comment .comment .decoration .circle .icon {
  width: 2em;
  height: 2em;
}
.exhibit-detail .comment-system .comment .comment .decoration .circle:hover {
  opacity: 1;
}
@media (max-width: 700px) {
  .exhibit-detail {
    flex-flow: column nowrap;
  }
  .exhibit-detail .img-view {
    width: 100%;
    max-height: 100%;
  }
  .exhibit-detail .side-pane {
    display: none;
  }
  .gallery-preview .exhibit-item {
    min-width: unset !important;
    max-width: unset !important;
    height: unset !important;
    width: 100%;
  }
  .gallery-preview .exhibit-item.loading {
    height: 60vw !important;
  }
}
