		#bg{
			width: 100vw;
			height: 100vh;
			position: absolute;
			left: 50%;
			top: 50%;
			transform: translate(-50%,-50%);
			z-index: -2;
			object-fit: cover;
		}
		body{
			display: flex;
			justify-content: center;
			align-items: center;
			overflow: hidden;
			flex-direction: column;
			}
		*{
			margin: 0;
			padding: 0;
			letter-spacing: .4em;
		}
		.logo{
			margin: 40px 0;
		}
		
		.black{
			width: 100vw;
			height: 100vh;
			position: absolute;
			left: 50%;
			top: 50%;
			transform: translate(-50%,-50%);
			z-index: -1;
			background-color: rgba(0,0,0,.68);
		}
		form{
			display: flex;
			width: 30vw;
			max-width: 500px;
			min-width: 300px;
			flex-wrap: wrap;
			justify-content: space-between;
			background: rgba(0,0,0,.59);
			padding:90px 20px 40px 20px;
			position: relative;
			/* left: 50%;
			top: 50%;
			transform: translate(-50%,-50%); */
			border-radius: 10px;
		}
		.verifybox{
			width: 100%;
			position: relative;
			display: flex;
			justify-content: center;
			color: white;
			font-size: 10px;
			flex-wrap: wrap;
		}
		.verifybox p{
			width: 100%;
			text-align: center;
		}
		.box{
			width: 100%;
			position: relative;
			display: flex;
			justify-content: center;
			color: white;
			font-size: 10px;
		}
		.box img{
			position: absolute;
			left: calc(20% + 10px);
			top: 20px;
			transform: scale(.7);
		}
		.box img+input{
			padding: 1% 1% 1% 9%;
		}
		input{
			width: 50%;
			height: 35px;
			background: #212121;
			outline: none;
			border: none;
			border-radius: 5px;
			color: white;
			padding: 1% 5%;
			margin: 10px 5%;
		}
		h5{
			color: white;
			font-weight: 500;
			font-size: 10px;
			padding-left: 10%;
		}
		.top{
			position: absolute;
			top: 20px;
			left: 50%;
			transform: translateX(-50%);
			width: 100%;
		}
		.top *{
			color: white;
			text-align: center;
		}
		
		.top p{
			font-size: 8px;
			margin-top: 5px;
			transform: scale(.6);
		}
		h3{
			font-weight: 400;
		}
		
		
		#submit{
			position: relative;
			left: 50%;
			transform: translateX(-50%);
			width: 120px;
			height: 40px;
			color: white;
			width: 120px;
			height: 40px;
			display: block;
			background: url(http://pic.56uxi.com/img/register_button.png);
			display: flex;
			justify-content: center;
			align-items: center;
			cursor: pointer;
			margin: 20px 0;
		}
		label{
			padding-left: 25px;
		}
		label,label~a{
			color: white;
			display: flex;
			font-size: 8px;
			margin: 5px 14px;
			position: relative;
			text-decoration: none;
		}
		
		input[type=checkbox]{
			position: absolute;
			width: 15px;
			height: 15px;
			left: 0;
			top: -7px;
		}
		
		.milepost img{
			position: absolute;
			top: 50%;
			transform: translate(-50%,-50%);
			left: 50%;
			width: 65%;
			height: 2px;
		}
		
		.milepost_icon img{
			position: relative;
			left: 0;
			top: 0;
			width: 50px;
		}
		
		footer{
			color: white;
			position: absolute;
			left: 50%;
			bottom: 15px;
			transform: translate(-50%,-50%);
			font-size: 10px;
		}
		.account{
			width: 30vw;
			max-width: 500px;
			min-width: 300px;
			max-height: 500px;
			flex-wrap: wrap;
			justify-content: space-between;
			background: rgba(0,0,0,.59);
			position: relative;
			border-radius: 10px;
			color: white;
			overflow:auto;
		}
		.account div{
			margin-top: 10px;
			margin-bottom: 10px;
			height: 40px;
			display: flex;
		}
		.account div:not(:first-child):hover{
			background-color: #979595;
			cursor: pointer;
		}
		.account div span{
			flex:0 0 50%;
			text-align: center;
			line-height:40px;
		}
		.account::-webkit-scrollbar {/*滚动条整体样式*/
			width: 10px;     /*高宽分别对应横竖滚动条的尺寸*/
			height: 1px;
		}
		.account::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
			border-radius: 10px;
			-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
			background: #b7b7b7;
		}
		.account::-webkit-scrollbar-track {/*滚动条里面轨道*/
			-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
			border-radius: 10px;
			background-color: black;
			opacity: 0.75;
		}