* {
	border: 0;
	margin: 0;
	padding: 0;
}

html, body {
	margin: auto;
	max-width: 750px;
	position: relative;
}

.k-header {
	height: 45vh;
	padding: 0 15px;
	padding-top: 15px;
	position: relative;
	background: url("../img/5.png");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	box-sizing: border-box;
	margin-bottom: 30px;
}

.k-header::after {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	position: absolute;
	background-color: rgba(255, 255, 255, 0.1);
}

.k-logo {
	gap: 8px;
	display: flex;
	align-items: center;
}

.k-logo-thumb {
	width: 38px;
	height: 38px;
	padding: 5px;
	display: flex;
	overflow: hidden;
	align-items: center;
	border-radius: 38px;
	background-color: rgba(255, 255, 255, 0.8);
	justify-content: center;
	box-sizing: border-box;
}

.k-logo-thumb img {
	width: 100%;
	height: 22px;
}

.k-logo span {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.8);
}

.k-qy {
	gap: 2px;
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-top: 20px;
}

.k-en {
	width: 100%;
	display: flex;
	padding: 0 10%;
	position: relative;
	margin-bottom: 4px;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.k-en .k-left,
.k-en .k-right {
	flex: 1;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.8);;
}

.k-en span {
	font-size: 14px;
	padding: 0 15px;
	display: inline-block;
	color: rgba(255, 255, 255, 0.8);
}

.k-qy h1 {
	font-size: 22px;
	color: rgba(255, 255, 255, 0.8);
}

.k-qy h2 {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.8);
}

.k-model {
	gap: 15px;
	display: flex;
	padding: 0 15px;
	align-items: center;
	margin-bottom: 30px;
}

.k-content .k-tit {
	gap: 10px;
	display: flex;
	align-items: end;
	margin-bottom: 5px;
	padding-bottom: 5px;
	border-bottom: 1px solid  #478ceb;
}

.k-content .k-tit h2 {
	color: #262626;
	font-size: 18px;
}

.k-content .k-tit span {
	color: #478ceb;
	font-size: 14px;
}

.k-content .k-btn {
	
}

.k-content .k-btn h3 {
	color: #478ceb;
	font-size: 16px;
}

.k-content .k-btn p {
	font-size: 14px;
	color: #666;
}

.k-pt {
	width: 90px;
	min-width: 90px;
}

.k-pt img {
	width: 100%;
}

.k-footer {
	display: flex;
	padding: 15px;
	align-items: center;
	background-color: #197cda;
	justify-content: space-between;
}

.k-footer .k-txt {
	padding-left: 12px;
	position: relative;
}

.k-footer .k-txt::after {
	top: 0;
	left: 0;
	bottom: 0;
	width: 3px;
	content: "";
	position: absolute;
	background-color: #212622;
}

.k-footer .k-txt p {
	color: #FFF;
	font-size: 14px;
	letter-spacing: 0.5px;
}

.k-code {
	width: 90px;
	height: 90px;
	overflow: hidden;
	border-radius: 2px;
}

.k-code img {
	width: 100%;
	height: 100%;
}

.k-tip {
	top: 0;
	left: 0;
	z-index: 9;
	width: 100%;
	height: 100vh;
	display: flex;
	position: fixed;
	overflow: hidden;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.4);
	animation: tipFadeIn 0.3s ease-out;
}

@keyframes tipFadeIn {
	from {
		opacity: 0;
	}
	
	to {
		opacity: 1;
	}
}

.k-open {
	gap: 10px;
	width: 280px;
	display: flex;
	overflow: hidden;
	border-radius: 5px;
	padding: 15px 30px;
	background-color: #FFF;
	box-sizing: border-box;
	flex-direction: column;
	padding-top: 20px;
}

.k-open p {
	color: #666;
	font-size: 14px;
	text-align: center;
}

.k-open a {
	color: #FFF;
	width: 100%;
	height: 32px;
	font-size: 14px;
	margin-top: 10px;
	line-height: 32px;
	text-align: center;
	border-radius: 2px;
	letter-spacing: 0.5px;
	text-decoration: none;
	display: inline-block;
	background-color: #2E74FF;
}