html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

@keyframes backgroundScroll {
  0% {
    background-position: center 0;
  }
  100% {
    background-position: center -1000px;
  }
}
button, .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  border: 0;
  outline: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
button i.icon, .btn i.icon {
  display: inline-flex;
  width: 1em;
  height: 1em;
  margin-left: 5px;
}
button:hover, .btn:hover {
  opacity: 0.8;
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}
button:active, .btn:active {
  opacity: 1;
  transform: translateY(2px);
  -webkit-transform: translateY(2px);
  -moz-transform: translateY(2px);
  -ms-transform: translateY(2px);
  -o-transform: translateY(2px);
}
button:visited, .btn:visited {
  color: inherit;
}

.btnXl {
  padding: 1rem 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.btnXl em {
  font-size: 1.5rem;
  font-weight: bold;
}
.btnXl span {
  font-size: 1rem;
}

.btnReg {
  background-color: #342B29;
  color: #FFF;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
}

.btnOutline {
  border: 1px solid #342B29;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
}
.btnOutline:hover {
  background-color: rgba(52, 43, 41, 0.05);
}
.btnOutline:active {
  background-color: inherit;
}

body {
  font-family: "Helvetica Neue", "Microsoft YaHei", "STHeiti";
  font-size: 16px;
  background-color: #F5F5F5;
  background-image: url(../img/bg.jpg);
  background-size: auto 100%;
  background-repeat: repeat;
  animation: backgroundScroll 60s linear infinite;
  background-attachment: fixed;
  background-position: center;
}
body * {
  box-sizing: border-box;
}
@media screen and (min-width: 1024px) {
  body {
    background-position: left top;
  }
}

.container {
  width: 100%;
  position: relative;
  padding: 0 1rem;
}

.mainContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  height: 100vh;
  padding-bottom: 110px;
}
.mainContent .container {
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (min-width: 1024px) {
  .mainContent .container {
    flex-direction: row;
    font-size: 1.25rem;
  }
  .mainContent .container small {
    font-size: 16px;
  }
}
.mainContent .box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mainContent .box button {
  display: flex;
}

.intro {
  width: 100%;
  height: 100%;
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  margin-bottom: 1rem;
  flex: 0;
}
.intro .text {
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .intro {
    padding-top: 0;
    align-items: end;
    justify-content: center;
    flex: 1;
  }
  .intro .logo, .intro .text {
    width: 500px;
  }
}

.logo {
  width: auto;
  height: 6rem;
  margin-bottom: 1rem;
}
.logo img {
  width: auto;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .logo {
    width: 100%;
    height: auto;
  }
  .logo img {
    width: 100%;
    height: auto;
  }
}

.btnBox {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.btnBox .btn {
  width: 245px;
  background-color: #87C123;
  color: #FFF;
}
.btnBox p {
  line-height: 2;
}
@media screen and (min-width: 1024px) {
  .btnBox {
    flex: 1;
    justify-content: center;
    align-items: start;
    padding-left: 1em;
  }
  .btnBox .btn {
    width: 350px;
  }
  .btnBox p {
    font-size: 16px;
    padding-top: 1em;
  }
}

footer {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  margin-top: 1rem;
  padding-bottom: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
footer .btn {
  display: flex;
  align-self: flex-end;
  margin-bottom: 1rem;
}/*# sourceMappingURL=basic.css.map */