﻿@charset "utf-8";

body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
form,
fieldset,
legend,
input,
textarea,
button,
select {
	margin: 0;
	padding: 0;
}

body,
input,
textarea,
select,
button,
table {
	font-size: 16px;
	line-height: 1.25em;
	font-family: Arial, 'microsoft yahei', Verdana, Helvetica, sans-serif;
}

/*取消按钮点击的时候有阴影*/
a,
img,
button,
input,
textarea {
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-ms-tap-highlight-color: rgba(255, 255, 255, 0);
	-moz-tap-highlight-color: rgba(255, 255, 255, 0);
	-o-tap-highlight-color: rgba(255, 255, 255, 0);
}

button,
input,
textarea,
select {
	border: medium none;
	outline: medium none;
	/*取消chrome下input和textarea的聚焦边框*/
	-webkit-appearance: none;
	-ms-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
}

body {
	min-width: 320px;
	height: 100vh;
	font-size: 1em;
	-webkit-text-size-adjust: none;
	color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: normal;
}

header,
footer,
section,
nav,
menu,
details,
hgroup,
figure,
figcaption,
article,
aside {
	margin: 0;
	padding: 0;
	display: block;
}

img,
fieldset {
	border: 0;
}

img {
	vertical-align: middle;
}

ul,
ol {
	list-style: none;
}

table {
	border-collapse: collapse;
	width: 100%;
}

a {
	text-decoration: none;
}

.cl::after,
.cl::before {
	clear: both;
	content: " ";
	display: block;
	font-size: 0;
	height: 0;
	visibility: hidden;
}

.cl {
	zoom: 1
}

* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}

body {
	background-color: #ffffff;
}

.flex {
	display: flex;
}

.flex-row {
	display: flex;
	flex-direction: row;
}

.flex-col {
	display: flex;
	flex-direction: column;
}

.flex-x-center {
	display: flex;
	justify-content: center;
}

.flex-y-center {
	display: flex;
	align-items: center;
}

.flex-y-start {
	display: flex;
	align-items: flex-start;
}

.flex-y-end {
	display: flex;
	align-items: flex-end;
}

.flex-x-between {
	display: flex;
	justify-content: space-between;
}

.flex-x-start {
	display: flex;
	justify-content: flex-start;
}

.flex-x-end {
	display: flex;
	justify-content: flex-end;
}

.flex-wrap {
	display: flex;
	flex-wrap: wrap;
}

.rel {
	position: relative;
}

.abs {
	position: absolute;
}

.dis {
	display: block;
}

.hide {
	display: none;
}

/* 登录页 */
@font-face {
    font-family: 'Alimama ShuHeiTi';
    src: url('AlimamaShuHeiTi.woff2') format('woff2'),
        url('AlimamaShuHeiTi.woff') format('woff'),
        url('AlimamaShuHeiTi.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

.inner {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	position: relative;
}

.inner .bg01{
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.inner .bg02 {
	/* width: 100%; */
	height: 100%;
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
}

.loginBox{
	width: 415px;
	position: absolute;
	right: 10%;
	top: 50%;
	z-index: 10;
	transform: translateY(-50%);
	background-color: #ffffff;
	border-radius: 20px;
	box-shadow: 0 0 15px rgba(117, 168, 195, .3);
	padding: 0 0 35px;
	margin-top: -30px;
}

.loginBox .tit,.loginBox .tit img{
	width: 100%;
}
.loginBox .codeBox{
	width: 100%;
}
.loginBox .codeBox img{
	display: block;
	width: 54%;
	margin: 20px auto 50px;
}
.loginBox .p1{
	font-size: 16px;
	color: #7d7d7d;
	text-align: center;
}
.loginBox .p1 span{
	font-size: 20px;
	color: #de290f;
	margin-right: 5px;
}
.loginBox .p2{
	font-size: 16px;
	color: #bd7147;
	text-align: center;
	margin-top: 20px;
}