html,
body {
  margin: 0;
  padding: 0;
  font-family: "Microsoft YaHei", "Arial", sans-serif;
  height: 100vh;
  overflow: hidden; }

.canvas-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.25; }

.landing {
  background: url("../img/city.png") center/cover no-repeat;
  color: #707070;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1); }
  .landing.hide {
    opacity: 0;
    -webkit-transform: translateY(-20px) scale(0.95);
    -ms-transform: translateY(-20px) scale(0.95);
    transform: translateY(-20px) scale(0.95); }
  .landing .content {
    position: relative;
    text-align: center;
    z-index: 1; }
    .landing .content h1 {
      font-weight: 300; }
    .landing .content .line {
      border-right: 1px solid #707070;
      margin: 0 35px; }
    .landing .content .submit-btn {
      font-size: 1.125rem;
      line-height: 1.83333;
      font-weight: 400;
      text-align: center;
      border-radius: 3px;
      width: 165px;
      height: 45px;
      color: #fff;
      border: 0;
      outline: none;
      background-color: #4089e3; }
      .landing .content .submit-btn:hover, .landing .content .submit-btn:active {
        background-color: #6daeff; }
  .landing .footer {
    background-color: #4089e3;
    bottom: 0;
    color: #fff;
    font-size: 0.7rem;
    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;
    padding: 12px 0;
    position: absolute;
    width: 100%; }
    .landing .footer div {
      margin-right: 20px; }

.modal {
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 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;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100; }
  .modal.hide {
    opacity: 0;
    visibility: hidden; }
    .modal.hide .modal-content {
      opacity: 0;
      visibility: hidden;
      -webkit-transform: translateY(40px);
      -ms-transform: translateY(40px);
      transform: translateY(40px); }
  .modal.expand .modal-content {
    opacity: 0;
    -webkit-transform: scale(3);
    -ms-transform: scale(3);
    transform: scale(3); }
  .modal[data-type="capture"] .modal-content {
    padding: 20px; }
    .modal[data-type="capture"] .modal-content .capture-result {
      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; }
    .modal[data-type="capture"] .modal-content .caution-text {
      color: red;
      font-size: 12px;
      text-align: center; }
  .modal .modal-content {
    width: 450px;
    padding: 50px 56px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 8px;
    -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative; }
    .modal .modal-content .close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: transparent;
      border: 0;
      outline: none;
      cursor: pointer; }
      .modal .modal-content .close svg {
        width: 20px;
        height: 20px; }
    .modal .modal-content h3 {
      font-size: 2.25rem;
      line-height: 1.27778;
      margin-bottom: 23px;
      color: #455c83;
      font-weight: 500;
      margin-top: 0; }

.field-set {
  position: relative;
  margin: 0 0 15px;
  padding: 25px 0 0;
  z-index: 0; }
  .field-set.select {
    z-index: 10; }
  .field-set .remove-icon-btn {
    background-color: transparent;
    border: 0;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 56%;
    outline: 0;
    z-index: 10; }
  .field-set .label {
    font-size: 0.875rem;
    line-height: 1.57143;
    font-weight: 400;
    margin: 0 !important;
    color: #586c8f;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    white-space: nowrap;
    z-index: 10;
    pointer-events: none; }
  .field-set input:not([type="file"]) {
    display: block;
    -webkit-transition: color 0.15s, border-color 0.15s;
    -o-transition: color 0.15s, border-color 0.15s;
    transition: color 0.15s, border-color 0.15s;
    border-radius: 4px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.46667;
    padding: 11px 15px 9px;
    border: 1px solid #dadee6;
    color: #586c8f;
    font-weight: 400;
    background-color: #fff;
    width: 100%;
    min-height: 50px;
    outline: 0;
    position: relative;
    z-index: 10;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .field-set input:focus {
    border: 1px solid #58b8f5; }
  .field-set input.error:placeholder-shown {
    border-color: #fe9494;
    background-color: snow; }
  .field-set input.disabled {
    background-color: #eaeaea !important;
    cursor: not-allowed;
    font-style: italic;
    pointer-events: none; }
  .field-set input.icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 17px 26px 10px 14px; }
  .field-set .color-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .field-set .color-wrapper > a.color-item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 20px;
      height: 20px;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      overflow: hidden;
      margin-right: 8px;
      border-radius: 50%;
      border: 1px solid #ececec;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
      .field-set .color-wrapper > a.color-item.custom {
        background-color: #ccc;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
        -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
        transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1); }
        .field-set .color-wrapper > a.color-item.custom.selected {
          opacity: 1;
          visibility: visible; }
      .field-set .color-wrapper > a.color-item.selected {
        -webkit-animation: showShadow 200ms linear forwards;
        animation: showShadow 200ms linear forwards; }

@-webkit-keyframes showShadow {
  from {
    -webkit-box-shadow: 0 0 0 0 #ccc;
    box-shadow: 0 0 0 0 #ccc; }
  to {
    -webkit-box-shadow: 0 0 0 4px #ccc;
    box-shadow: 0 0 0 4px #ccc; } }

@keyframes showShadow {
  from {
    -webkit-box-shadow: 0 0 0 0 #ccc;
    box-shadow: 0 0 0 0 #ccc; }
  to {
    -webkit-box-shadow: 0 0 0 4px #ccc;
    box-shadow: 0 0 0 4px #ccc; } }
      .field-set .color-wrapper > a.color-item > .color-item-wrapper {
        height: 200%;
        width: 200%;
        -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        transform: rotate(135deg);
        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;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse; }
        .field-set .color-wrapper > a.color-item > .color-item-wrapper > span {
          -webkit-box-flex: 1;
          -ms-flex-positive: 1;
          flex-grow: 1;
          height: 50%;
          width: 200%;
          display: block; }
  .field-set .selected-color {
    font-size: 0.875rem;
    line-height: 1.57143;
    font-weight: 400;
    margin: 0 !important;
    color: #586c8f;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    top: 0;
    display: block;
    white-space: nowrap;
    z-index: 10;
    right: 0;
    height: 20px; }
  .field-set .select {
    position: relative;
    z-index: 10; }
    .field-set .select .current-selected {
      cursor: pointer;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-transition: color 0.15s, border-color 0.15s;
      -o-transition: color 0.15s, border-color 0.15s;
      transition: color 0.15s, border-color 0.15s;
      border-radius: 4px;
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.46667;
      padding: 11px 15px 9px;
      border: 1px solid #dadee6;
      color: #586c8f;
      font-weight: 400;
      background-color: #fff;
      width: 100%;
      min-height: 50px;
      outline: 0;
      position: relative;
      z-index: 10;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
    .field-set .select .selection-wrapper {
      position: absolute;
      top: 50px;
      left: 0;
      right: 0;
      width: 100%;
      height: auto;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 0 0 8px 8px;
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      z-index: 10;
      -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
      box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: all 200ms ease-in-out;
      -o-transition: all 200ms ease-in-out;
      transition: all 200ms ease-in-out; }
      .field-set .select .selection-wrapper.active {
        opacity: 1;
        visibility: visible; }
      .field-set .select .selection-wrapper > span {
        cursor: pointer;
        height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0 15px;
        font-size: 13px;
        -webkit-transition: all 200ms ease-in-out;
        -o-transition: all 200ms ease-in-out;
        transition: all 200ms ease-in-out; }
        .field-set .select .selection-wrapper > span.active, .field-set .select .selection-wrapper > span:hover {
          background-color: rgba(88, 184, 245, 0.3); }
        .field-set .select .selection-wrapper > span:not(:last-child) {
          border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
        .field-set .select .selection-wrapper > span[disabled] {
          opacity: 0.5;
          pointer-events: none; }

.field-button {
  -webkit-transition: all 0.15s;
  -o-transition: all 0.15s;
  transition: all 0.15s;
  border-radius: 4px;
  font-size: 1.075rem;
  line-height: 2.88235;
  font-weight: 400;
  width: 100%;
  overflow: hidden;
  height: 48px;
  text-align: center;
  margin: 10px 0 0;
  padding: 0 18px;
  display: inline-block;
  outline: 0;
  color: #fff;
  background-color: #58b8f5;
  border: none; }
  .field-button.loading {
    pointer-events: none;
    opacity: 0.5; }
  .field-button:hover, .field-button:active {
    background-color: #8acdf8; }

.site-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  width: 100%;
  -webkit-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1); }
  .site-wrapper.hide {
    opacity: 0;
    -webkit-transform: translateY(-20px) scale(0.95);
    -ms-transform: translateY(-20px) scale(0.95);
    transform: translateY(-20px) scale(0.95); }
  .site-wrapper .site-components {
    width: 300px;
    height: 100%;
    overflow: auto;
    border-right: 1px solid #ececec;
    -webkit-transition: opacity 100ms ease-in-out, width 300ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: opacity 100ms ease-in-out, width 300ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity 100ms ease-in-out, width 300ms cubic-bezier(0.4, 0, 0.2, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    .site-wrapper .site-components.hide {
      opacity: 0;
      width: 0; }
    .site-wrapper .site-components .site-components-header {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      padding: 20px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      background-color: #e5f3fd;
      position: relative; }
      .site-wrapper .site-components .site-components-header h3 {
        font-size: 1.75rem;
        line-height: 1.27778;
        color: #455c83;
        font-weight: 500;
        margin: 0; }
    .site-wrapper .site-components .site-components-content {
      padding: 20px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
    .site-wrapper .site-components .site-components-footer {
      margin-top: auto;
      padding: 0 20px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
      .site-wrapper .site-components .site-components-footer p {
        color: #ff6058;
        font-size: 12px;
        padding: 12px 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box; }
  .site-wrapper .site-preview {
    width: calc(100% - 300px);
    height: 100%;
    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: #fafafa;
    -webkit-box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.1);
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative; }
    .site-wrapper .site-preview .sidebar-toggle {
      cursor: pointer;
      position: absolute;
      top: 50%;
      left: 0;
      -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
      transform: translateY(-50%) translateX(-50%);
      width: 12px;
      height: 40px;
      background: #58b8f5;
      border: 0;
      padding: 0;
      outline: none;
      border-radius: 2px;
      -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
      -o-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
      transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1); }
      .site-wrapper .site-preview .sidebar-toggle.active {
        -webkit-transform: translateY(-50%) translateX(0) scaleX(-1);
        -ms-transform: translateY(-50%) translateX(0) scaleX(-1);
        transform: translateY(-50%) translateX(0) scaleX(-1); }

.browser-frame {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border-radius: 8px;
  background-color: #f5f5f5;
  margin: auto;
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1); }
  .browser-frame .browser-action {
    background: -webkit-gradient(linear, left top, left bottom, from(#e0e0e0), to(#cfcfcf));
    background: -webkit-linear-gradient(top, #e0e0e0, #cfcfcf);
    background: -o-linear-gradient(top, #e0e0e0, #cfcfcf);
    background: linear-gradient(to bottom, #e0e0e0, #cfcfcf);
    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;
    border-radius: 8px 8px 0 0;
    position: relative; }
    .browser-frame .browser-action .browser-action-button {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      left: 10px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .browser-frame .browser-action .browser-action-button > span {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        display: block; }
        .browser-frame .browser-action .browser-action-button > span:not(:last-child) {
          margin-right: 6px; }
        .browser-frame .browser-action .browser-action-button > span.close {
          background-color: #ff4c45; }
        .browser-frame .browser-action .browser-action-button > span.minimize {
          background-color: #ffb929; }
        .browser-frame .browser-action .browser-action-button > span.expand {
          background-color: #72be46; }
    .browser-frame .browser-action .browser-address {
      background-color: rgba(255, 255, 255, 0.6);
      width: 50%;
      height: 20px;
      border-radius: 4px;
      overflow: hidden;
      padding: 0 20px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      position: relative; }
      .browser-frame .browser-action .browser-address .progress {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        height: 2px;
        background-color: #58b8f5;
        -webkit-transition: all 200ms ease-in-out;
        -o-transition: all 200ms ease-in-out;
        transition: all 200ms ease-in-out; }
      .browser-frame .browser-action .browser-address input {
        border: 0;
        background: transparent;
        outline: none;
        width: 100%;
        height: 100%;
        text-align: center;
        -webkit-transition: all 200ms ease-in-out;
        -o-transition: all 200ms ease-in-out;
        transition: all 200ms ease-in-out; }
  .browser-frame .browser-content {
    width: 100%;
    height: calc(100% - 40px);
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out; }
    .browser-frame .browser-content.ready {
      opacity: 1; }
    .browser-frame .browser-content iframe {
      border: 0;
      outline: none;
      width: 100%;
      height: 100%; }
