﻿@charset "UTF-8";
/* ======================================== *
 * Copyright (c) 2017, DarkMist Corporation *
 * All rights reserved.                     *
 * @author: Jian. @modification: 2017/01/01 *
 * ======================================== */
/* ================ */
/* = 图标字体数据 = */
/* ================ */
@font-face {
  font-weight: 400;
  font-style: normal;
  font-family: "FontAwesome";
  src: url(../fonts/FontAwesome-Regular.woff) format("woff");
}
@font-face {
  font-weight: 400;
  font-style: normal;
  font-family: "Material Icons";
  src: url(../fonts/MaterialIcons-Regular.woff) format("woff");
}
@font-face {
  font-weight: 400;
  font-style: normal;
  font-family: "Framework7 Icons";
  src: url("../fonts/Framework7Icons-Regular.woff") format("woff");
}
/* ================ */
/* = 图标字体样式 = */
/* ================ */
.f7-icons {
  line-height: 1;
  font-style: normal;
  font-weight: normal;
  word-wrap: normal;
  text-transform: none;
  letter-spacing: normal;
  direction: ltr;
  font-family: "Framework7 Icons";
  white-space: nowrap;
  display: inline-block;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  font-feature-settings: "liga";
  font-size: 28px; /* Preferred icon size */
  text-rendering: optimizeLegibility; /* Support for Safari and Chrome. */
  -webkit-font-smoothing: antialiased; /* Support for all WebKit browsers. */
  -moz-osx-font-smoothing: grayscale; /* Support for all Mozilla browsers. */
}

.awesome-icons {
  line-height: 1;
  font-style: normal;
  font-weight: normal;
  word-wrap: normal;
  text-transform: none;
  letter-spacing: normal;
  direction: ltr;
  font-family: "FontAwesome";
  white-space: nowrap;
  display: inline-block;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  font-feature-settings: "liga";
  font-size: 24px; /* Preferred icon size */
  text-rendering: optimizeLegibility; /* Support for Safari and Chrome. */
  -webkit-font-smoothing: antialiased; /* Support for all WebKit browsers. */
  -moz-osx-font-smoothing: grayscale; /* Support for all Mozilla browsers. */
}

.material-icons {
  line-height: 1;
  font-style: normal;
  font-weight: normal;
  word-wrap: normal;
  text-transform: none;
  letter-spacing: normal;
  direction: ltr;
  font-family: "Material Icons";
  white-space: nowrap;
  display: inline-block;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  font-feature-settings: "liga";
  font-size: 24px; /* Preferred icon size */
  text-rendering: optimizeLegibility; /* Support for Safari and Chrome. */
  -webkit-font-smoothing: antialiased; /* Support for all WebKit browsers. */
  -moz-osx-font-smoothing: grayscale; /* Support for all Mozilla browsers. */
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* ======================================== *
 * Copyright (c) 2017, DarkMist Corporation *
 * All rights reserved.                     *
 * @author: Jian. @modification: 2017/01/01 *
 * ======================================== */
.abs {
  position: absolute;
}

.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cover-center {
  overflow: hidden;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.contain-center {
  overflow: hidden;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.panel-backdrop.panel-backdrop-in {
  background-color: var(--f7-searchbar-backdrop-bg-color);
}

.toast-container {
  pointer-events: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50000;
  position: absolute;
}
.toast-container > .toast-msg {
  float: left;
  padding: 8px 4%;
  max-width: 72%;
  line-height: 21px;
  border-radius: 4px;
  overflow-y: auto;
  pointer-events: auto;
  font-size: 14px;
  text-align: left;
  font-weight: normal;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
}
.toast-container.toast-fade-in {
  -webkit-animation: fade-in 400ms 1 ease-in;
  -moz-animation: fade-in 400ms 1 ease-in;
  -o-animation: fade-in 400ms 1 ease-in;
  animation: fade-in 400ms 1 ease-in;
}
.toast-container.toast-fade-out {
  -webkit-animation: fade-out 800ms 1 ease-out;
  -moz-animation: fade-out 800ms 1 ease-out;
  -o-animation: fade-out 800ms 1 ease-out;
  animation: fade-out 800ms 1 ease-out;
}

.dialog .dialog-inner {
  line-height: 150%;
}
.dialog .dialog-inner .dialog-title {
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 5px;
}

.popup {
  background-color: transparent;
}
.popup .wrap-layer {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  position: absolute;
  background-color: transparent;
}
.popup .wrap-layer .wrapper {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  position: absolute;
  overflow: hidden;
  display: table;
}
.popup .wrap-layer .wrapper > div > div {
  padding-bottom: calc(var(--f7-page-toolbar-bottom-offset, 0px) + var(--f7-safe-area-bottom) + var(--f7-page-content-extra-padding-bottom, 0px));
}

@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3), only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2), only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 3), only screen and (device-width: 360px) and (device-height: 780px) and (-webkit-device-pixel-ratio: 3), only screen and (device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3), only screen and (device-width: 428px) and (device-height: 926px) and (-webkit-device-pixel-ratio: 3) {
  :root {
    --f7-safe-area-top: 44px;
    --f7-safe-area-bottom: 34px;
  }
}
/* ======================================== *
 * Copyright (c) 2017, DarkMist Corporation *
 * All rights reserved.                     *
 * @author: Jian. @modification: 2017/01/01 *
 * ======================================== */
.component {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  padding: 0 8px;
  position: absolute;
  -webkit-transition-duration: 200ms;
  -moz-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -o-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.component.fade-in {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.component .pop-frame {
  background-color: #fff;
  border-radius: 6px 6px 0 0;
  padding-bottom: calc(var(--f7-page-toolbar-bottom-offset, 0px) + var(--f7-safe-area-bottom) + var(--f7-page-content-extra-padding-bottom, 0px));
}

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
}

.ios {
  --f7-navbar-height: 50px;
  --f7-list-index-width: 32px;
  --f7-list-index-font-size: 14px;
  --f7-list-index-item-height: 18px;
  --f7-contacts-list-title-height: 36px;
}
.ios .page {
  background-color: transparent;
}
.ios .icon-back {
  padding-left: 12px;
  padding-right: 20px;
}
