body{
	display: flex;
	flex-direction: column;
}

body > div{
	min-height: 0;
}

.msg{
	height: 50px;
	line-height: 50px;
}

.title{
	width: 100%;
	flex: 0 0 50px;
	display: flex;
	align-items: center;
	color: white;
	padding: 0 12px;
	background: rgba(255,255,255, .05);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.title > b{
	flex-grow: 1;
	font-size: 13px;
	letter-spacing: 2px;
}

.title > p{
	flex: 0 0 auto;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 6px;
}

.main{
	width: 100%;
	flex-grow: 1;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	position: relative;
}

.company-card{
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	display: none;
}

.company-card-body{
	width: 400px;
	height: 300px;
	background: var(--MsgBg);
	border-radius: 10px;
	overflow: hidden;
}

.company-card-name{
	float: left;
	width: 100%;
	height: 60px;
	line-height: 60px;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	color: white;
	background: var(--IngBgO);
}

.company-card-text{
	float: left;
	width: 100%;
	height: calc(100% - 60px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.company-card-text > div{
	width: auto;
	height: auto;
	white-space: pre;
	font-size: 14px;
	color: #1d1d1f;
}

form{
	width: 500px;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 60px;
}

.form-image{
	width: 100px;
	height: 100px;
	border-radius: 50px;
	background: #fff;
	overflow: hidden;
	margin-bottom: 12px;
}

.form-image > i{
	float: left;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
}

.form-image > img{
	float: left;
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin-left: -100%;
	border: none;
	background: none;
}

.form-image > input{
	float: left;
	width: 100%;
	height: 100%;
	margin-left: -100%;
	background: #07c;
	opacity: 0;
}

.form-name{
	float: left;
	width: 100%;
	text-align: center;
	font-size: 16px;
	margin-bottom: 60px;
	color: white;
}

.form-item{
	float: left;
	width: 100%;
	height: 50px;
	display: flex;
	align-items: center;
	color: white;
	border-bottom: 1px solid rgba(255,255,255, .6);
	backdrop-filter: blur(8px) contrast(.8) brightness(1.3);
	-webkit-backdrop-filter: blur(8px) contrast(0.8) brightness(1.3);
	margin-bottom: 6px;
	padding-right: 12px;
	border-radius: 12px;
}

.form-item > b{
	min-width: 0;
	flex: 0 0 90px;
	line-height: 36px;
	text-align: center;
}

.form-item > input{
	min-width: 0;
	flex-grow: 1;
	height: 100%;
	padding: 0 12px;
}

.form-item > a{
	min-width: 0;
	flex: 0 0 50px;
	line-height: 24px;
	text-align: center;
	border-radius: 12px;
}

.form-item > p{
	min-width: 0;
	flex: 0 0 auto;
	text-align: left;
}

form > button{
	width: 90px;
	line-height: 32px;
	border-radius: 16px;
	margin-top: 36px;
}

.company{
	float: left;
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.qrcode{
	width: 120px;
	height: 120px;
	border: 10px solid white;
	margin-top: 36px;
}

.qrcode > img{
	float: left;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.text{
	width: 100%;
	line-height: 36px;
	text-align: center;
	color: white;
	letter-spacing: 10px;
	padding-left: 8px;
}

.foot{
	width: 100%;
	flex: 0 0 auto;
	padding: 24px 0;
}

.foot > a{
	float: left;
	width: 100%;
	line-height: 150%;
	text-align: center;
	color: white;
	font-family: '微软雅黑';
}