			* {
				margin: 0;
				padding: 0;
				box-sizing: border-box;
			}

			html,
			body {
				height: 100%;
				width: 100%;
			}

			body {
				display: flex;
				align-items: center;
				justify-content: center;
			}

			.container {
				text-align: center;
				padding: 80px 50px 100px 50px;
				/* background-color: #f5f5f5; */
				border-radius: 10px;
			}

			.content {
				margin: 20px 0;
				display: flex;
				justify-content: center;
				align-items: center;
			}

			.content input {
				height: 40px;
				line-height: 40px;
				width: 420px;
				padding: 0 8px;
				outline: none;
				border: #DCDFE6 1px solid;
				color: #666;
				font-size: 14px;
				border-top-left-radius: 4px;
				border-bottom-left-radius: 4px;
			}

			.content input:focus {
				border: #20a43a 1px solid;
			}

			.content button {
				background-color: #20a43a;
				border: none;
				height: 40px;
				line-height: 40px;
				width: 100px;
				color: #fff;
				cursor: pointer;
							border-top-right-radius: 4px;
				border-bottom-right-radius: 4px;
			}

			.content button:hover {
				background-color: #18842d;
			}

			.desc,
			.footer {
				font-size: 12px;
				color: #666;
			}
			.desc{
				margin-bottom:10px;
				text-align: left;
				margin-left: 12px;
			}
			.btlink {
				color: #20a53a;
			}
			.jump-input{
				border-color: #DCDFE6;
				color:#999;
			}
			.help li{
				color: #999;
				margin-top: 5px;
			}
			code{
				background-color: #DCDFE699;
				font-weight: 600;
				padding: 4px 6px;
				border-radius: 2px;
				color: #666;
			}