* {
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
}

html {
	min-height: 100%;
}

body {
	color: #434c59;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
}

#wrapper {
	max-width: 1000px;
	margin: 12px auto;
	border: 1px solid #434c59;
	background: #fff;
	overflow: hidden;
}

header {
	padding: 25px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

article {
	padding: 25px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

p {
	margin: 0 0 16px;
}

strong {
	font-weight: 700;
}

h1 {
	margin: 0 0 15px;
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
}

h2 {
	margin: 0 0 20px;
	font-size: 36px;
	font-weight: 700;
	line-height: 42px;
	color: #000;
}

h3 {
	margin: 0 0 16px;
	font-weight: 700;
	font-size: 24px;
	line-height: 28px;
}

a {
	color: #434c59;
	text-decoration: none;
}

ul {
	padding: 0 0 25px;
	list-style: none;
}

ul li {
	padding-left: 23px;
	position: relative;
	margin-bottom: 6px;
	background: url('./iconli.jpg') no-repeat 0 5px;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

.box img {
	position: relative;
	top: -2px;
	margin-right: 4px;
}

.left {
	width: 41%;
	position: relative;
}

.right {
	width: 54%;
}

.box {
	position: absolute;
	z-index: 3;
	right: 5px;
	top: 226px;
	color: #fff;
	width: 259px;
	padding: 14px 18px 3px;
	font-size: 11px;
	line-height: 15px;
	background: #4c619d;
	background: -moz-linear-gradient(top, #5574bc 0%, #4c619d 50%, #384064 100%);
	background: -webkit-linear-gradient(top, #5574bc 0%, #4c619d 50%, #384064 100%);
	background: linear-gradient(to bottom, #5574bc 0%, #4c619d 50%, #384064 100%);
}

.box p {
	line-height: 17px;
}

.buttom {
	display: block;
	margin: 25px 0;
}

.buttom a {
	display: inline-flex;
	padding: 10px 15px;
	border-radius: 6px;
	background: #1f67cc;
	color: #fff;
	font-weight: 700;
	align-items: center;
	gap: 0 15px;
}

@media all and (max-width:999px) {
	#wrapper {
		margin: 0;
		border: none;
	}

	header {
		padding: 15px;
	}

	article {
		padding: 15px;
	}
}

@media all and (max-width:700px) {
	.left {
		width: auto;
		max-width: 389px;
	}

	.right {
		width: 100%;
		padding-top: 20px;
	}

	.box {
		top: auto;
		bottom: 10px;
	}

}