<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
* jQuery wizard
* jquery wizard is a lightweight jquery plugin for creating step-by-step wizards.
* Compiled: Fri Sep 02 2016 11:59:56 GMT+0800 (CST)
* @version v0.3.1
* @link https://github.com/amazingSurge/jquery-wizard
* @copyright LGPL-3.0
*/
.hide {
  display: none;
}

.wizard-pane {
  position: absolute;
  top: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
}
.wizard-pane.active {
  position: relative;
  visibility: visible;
  opacity: 1;
}
.wizard-pane.activing {
  visibility: visible;
}

.wizard-content {
  position: relative;
  padding: 0;
  -webkit-transition: height .2s ease;
  transition: height .2s ease;
}

.current {
  color: #00f !important;
}

.done {
  color: #008000 !important;
}

.error {
  color: #f00 !important;
}

.disabled {
  cursor: not-allowed !important;
}

.wizard-pane {
  padding: 10px;
}

.wizard-content {
  border: 1px solid #aaa;
}

.wizard-steps {
  padding: 0;
  margin: 0;
  list-style: none;
}
.wizard-steps &gt; li {
  display: inline-block;
  padding: 5px 10px;
  color: #666;
  cursor: pointer;
}
.wizard-steps &gt; li:hover {
  color: #333;
}

.wizard-buttons {
  margin-top: 10px;
}
.wizard-buttons &gt; a {
  padding: 5px 10px;
  margin-right: 5px;
  border: 1px solid #aaa;
  border-radius: 20px;
}
.wizard-buttons &gt; a.disabled {
  color: #aaa;
  border-color: #aaa;
}
</pre></body></html>