* {
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
}

html {
	min-height: 100%;
}

body {
	color: #000;
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	line-height: 20px;
	font-weight: 400;
}

#wrapper {
	max-width: 865px;
	margin: 12px auto;
	border: 1px solid #000;
	padding: 8px 16px;
	background: #e6f0f8;
	overflow: hidden;
}

article {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-start;
}

p {
	margin: 0 0 14px;
}

strong {
	font-weight: 700;
}

h1 {
	padding: 19px 22px;
	font-weight: 700;
	font-size: 23px;
	line-height: 28px;
	position: absolute;
	z-index: 4;
	left: 19px;
	bottom: 21px;
	color: #fff;
	background: #5494c2;
}

h2 {
	margin: 0 0 15px;
	font-size: 18px;
	font-weight: 700;
	line-height: 22px;
}

h3 {
	font-weight: 700;
	font-size: 12px;
	line-height: 14px;
}

a {
	color: #00e;
	text-decoration: none;
}

ul {
	padding: 0 0 10px 20px;
	list-style: none;
}

ul li {
	padding-left: 16px;
	position: relative;
}

li:before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #000;
	position: absolute;
	z-index: 3;
	left: 0;
	top: 9px;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

.box {
	background: #fff;
	padding: 20px 16px 4px;
	margin-bottom: 10px;
}

.left {
	width: calc(100% - 195px);
}

.right {
	padding: 16px 16px 10px;
	background: #fff;
	width: 180px;
}

.logo {
	padding-bottom: 10px;
}

.title {
	position: relative;
}

.qrcode {
	margin-top: 70px;
}

.fontweit {
	font-weight: 400;
}

@media all and (max-width:864px) {
	#wrapper {
		margin: 0;
		border: none;
	}
}

@media all and (max-width:610px) {
	:is(.left, .right) {
		width: 100%;
	}

	h1 {
		position: static;
		width: auto;
		padding: 16px;
	}

	ul {
		padding-left: 0;
	}

	.qrcode {
		margin-top: 16px;
	}

	h3 br {
		display: none;
	}
}