.win {
	position: fixed;
	z-index: 9999999999;
	top: 0;
	left: 0;
	display: flex;
	box-sizing: border-box;
	overflow: scroll;
	width: 100%;
	height: 100%;

	background: #fff;

	padding: 0 16px;
}

	.win .header {
		position: fixed;
		z-index: 1;
		top: 0;
		left: 0;
		display: flex;
		width: 100%;
		height: 56px;
		align-items: center;
		justify-content: center;
		background: #fff;
	}
		.win .header h3 {
			font-size: 18px;
			font-weight: 900;
		}

	.win .body {
		position: relative;
		display: block;
		box-sizing: border-box;
		width: 100%;
		height: 100%;
		margin: 0 auto;
		padding: 0 0px;
		padding-top: 56px;
		margin-bottom: 64px;
	}





	.win .close_win {
		position: fixed;
		bottom: 18px;
		left: 0;
		display: flex;
		width: 100%;
		align-items: center;
		justify-content: center;
		margin-bottom: ;
	}
		.win .close_win img {
			position: relative;
			display: block;
			width: 36px;

			background: rgba(0,0,0,.75);
			border-radius: 9em;

			padding: 8px;
		}
	.win_hide
	{
		display: none !important;
	}



.win .logo img {
	width: 50%;
}