@charset "UTF-8";
/**
Positioning Mixin
Sass:
.element {
  @include absolute(top 0 left 1em);
}

.other-element {
  @include fixed(top 1em left "WAT? A STRING?!" right 10% bottom)
}
CSS output:
.element {
  position: absolute;
  top: 0;
  left: 1em;
}

.other-element {
  position: fixed;
  top: 1em;
  right: 10%;
}
**/
/**
Sass:
.element {
  @include prefix((transform: translate(-50%, -50%)), webkit ms);
}

.other-element {
  @include prefix((
    column-count: 3,
    column-gap: 1em,
    column-rule: 1px solid silver,
    column-width: 20em
  )), webkit moz);
}
CSS output:
.element {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.other-element {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
  -webkit-column-rule: 1px solid silver;
  -moz-column-rule: 1px solid silver;
  column-rule: 1px solid silver;
  -webkit-column-width: 20em;
  -moz-column-width: 20em;
  column-width: 20em;
}
**/
/* Make clicks pass-through */
/* Remove these to get rid of the spinner */
/* Fancy blur effect */
@-webkit-keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  font-size: 0.625rem; }

body {
  margin: 0;
  font-family: Microsoft YaHei, 微软雅黑, Arial, Lantinghei SC, Open Sans, Hiragino Sans GB, STHeiti, WenQuanYi Micro Hei, SimSun, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #333;
  background-color: #fff; }

:focus {
  outline: none; }

q:before, q:after, blockquote:before, blockquote:after {
  content: ""; }

::-ms-clear, ::-ms-reveal {
  display: none; }

em, i {
  font-style: normal; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden], template {
  display: none; }

ins {
  text-decoration: none;
  font-weight: normal;
  font-style: normal; }

a {
  background-color: transparent;
  outline: 0;
  text-decoration: none; }

a:focus, a:active, a:hover {
  outline: none;
  text-decoration: none;
  -moz-outline: none; }

abbr[title] {
  border-bottom: 1px dotted; }

b, strong {
  font-weight: 500; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

img {
  border: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
  max-height: 100%;
  max-width: 100%; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 0 0 1rem; }

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto;
  margin-top: 0;
  margin-bottom: 1rem; }

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  border: 1px solid #ddd;
  margin: 0; }

button, input, optgroup, textarea {
  padding: 0 9px; }

input[type="hidden"] {
  display: none; }

button {
  overflow: visible; }

button, select {
  text-transform: none; }

button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled], html input[disabled] {
  cursor: default; }

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"], input[type="radio"] {
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0; }

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit; }

textarea {
  overflow: auto;
  resize: vertical; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td, th {
  padding: 0; }

@-moz-viewport {
  width: device-width; }

@-ms-viewport {
  width: device-width; }

@-webkit-viewport {
  width: device-width; }

@-o-viewport {
  width: device-width; }

@viewport {
  width: device-width; }

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: inherit; }

p {
  margin-top: 0;
  margin-bottom: 1rem; }

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, textarea, p, th, td {
  margin: 0;
  padding: 0; }

blockquote {
  margin: 0 0 1rem; }

ol, ul {
  list-style: none; }

a {
  text-decoration: none; }

[role="button"] {
  cursor: pointer; }

output {
  display: inline-block; }

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none; }

.fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
  transition: opacity .15s linear; }

.fade.in {
  opacity: 1; }

.collapse {
  display: none; }

.collapse.in {
  display: block; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: .35s;
  transition-duration: .35s;
  -webkit-transition-property: height;
  transition-property: height; }

.ib {
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle; }

.cf {
  *zoom: 1; }

.cf:before, .cf:after {
  display: table;
  content: "";
  line-height: 0; }

.cf:after {
  clear: both; }

.l {
  float: left; }

.r {
  float: right; }

.imgc {
  text-align: center;
  font-size: 0;
  line-height: 0;
  overflow: hidden; }

.imgc:after, .imgc .iecp {
  content: '';
  width: 0;
  height: 100%;
  font-size: 0;
  line-height: 0;
  vertical-align: middle;
  display: inline-block;
  *display: inline;
  zoom: 1; }

.imgc .imge {
  vertical-align: middle;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  line-height: normal; }

.imgc img {
  max-width: 100%;
  max-height: 100%; }

.wp {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 1000px; }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }
