 * {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
		font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
	background-image: url('../img/bg-index.png');
	color: #333;
	cursor: default;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-position: top center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	-webkit-background-size: cover;
}

.box {
	color: #333;
	height: 100vh;
	width: 100vw;
	display: flex;
	justify-content: center;
	overflow: auto;
}

.container {
	margin: 20px;
	max-width: 1200px;
	min-width: 500px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.header {
	padding: 20px 0;
	height: 40px;
	display: flex;
	justify-content: space-between;
}

.header-l {
	display: flex;
	align-items: center;
	gap: 20px;
	cursor: pointer;
}

.header-l img {
	width: 60px;
	height: 60px;
	border-radius: 10px;
}

.header-r {
	display: flex;
	align-items: center;
	gap: 10px;
}

.header-r img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.main {
	min-height:180px;
	height: calc(100vh - 160px);
	width: 100%;
	padding: 0 40px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: center;
	justify-content: center;
}

.main img {
	width: 100%;
	height: 100%;
	max-height: 200px;
	max-width: 200px;
	height: auto;
	/* width: auto; */
	object-fit: contain;
}

.main-c {
	display: flex;
	justify-content: center;
	gap: 40px;
}

.main-c p {
	font-size: clamp(16px,28px, 28px);
}

.main-c-box img {
	height: 80px;
	width: 80px;
	border-radius: 10px;
}

.footer {
	height: 80px;
	padding: 40px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	text-align: center;
}
.footer-t{
	font-size: 14px;
}
.footer-t a,
.footer-b a,
.footer-b-b a {
	cursor: pointer;
	text-decoration: none;
	color: #000;
}

.footer-b {
	display: flex;
	flex-wrap: wrap;
	column-gap: 10px;
	justify-content: center;
}

.footer-b-b {
	display: flex;
	align-items: center;
	gap: 3px;
}

a:hover {
	color: #47bfda;
}

.mask {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
}

.mask-box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	padding: 30px;
	border-radius: 10px;
	min-width: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.mask-box img {
	height: 300px;
	width: 300px;
	border-radius: 20px;
}

.mask-box-main {
	width: 100%;
	text-align: center;
}

.mask-box-main p {
	font-size: 18px;
	color: #000;
	margin-top: 10px;
}

.openMaskBox {
	position: fixed;
	bottom: 15%;
	right: 30px;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 1px 4px 8px 2px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	display: none;
}

.openMaskImg {
	height: 50px;
	width: 50px;
}



@media (max-width:560px) {

	.container {
			min-width: 200px;
	}

	.header-r {
			display: none;
	}

	.openMaskBox {
			display: block;
	}
}

@media (max-width:844px) {
	.main {
			height: calc(100vh - 160px);
			width: 100%;
	}
}

@media (max-height:360px){
	.main-c{
		gap: 20px;
	}
}

@media (max-height:500px), (max-width: 500px){
	.mask-box {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		background: white;
		padding: 30px;
		border-radius: 10px;
		min-width:300px;
	}
	
	.mask-box img {
		height:200px;
		width:200px;
		border-radius: 20px;
	}
}
