﻿@charset "UTF-8";
/*公共样式*/
body {
  position: relative;
  font-size: 12px;
  overflow-y: auto;
  width: 100%;
  background: url("../images/bg.jpg") center no-repeat;
  min-height: calc(100vh);
}

* {
  margin: 0;
  padding: 0;
}
.wrapper_box {
    position:relative;
    width:100%;
    height:calc(100vh - 100px);
}

.wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color:#fff;
}

.wrapper .logo {
  width: 116px;
  height: 110px;
  background: url("../images/bg_logo.png") center no-repeat;
  margin: 0 auto 10px;
}

.wrapper .title {
  text-align: center;
  font-size: 72px;
  color:#fff;
  border-bottom: 1px solid #fff;
}

.wrapper p {
  font-size: 24px;
  text-align: center;
  color:#fff;
  margin-bottom: 50px;
}

.wrapper .go_login {
  display: block;
  width: 160px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  margin: 0 auto;
  text-decoration: none;
  font-size: 18px;
  text-align: center;
  background: url("../images/go_login.png") center no-repeat;
}

.footer{
  position: fixed;
  bottom: 30px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 14px;
  background:transparent;
}
