
@font-face {
  font-family: 'MyWebFont';
  src: url('../fonts/fzdb.ttf') format('woff2');
  
}
 

html {
  font-size: 16px; /* 基本字体大小 */
}
 
/* 将所有元素的字体大小设置为相对于html元素的大小 */
body {
  font-size: 1rem;
  height: 100vh;
  min-height: 41.6875rem;
  min-height: -webkit-fill-available;
}

a:focus {
    outline: none;
}
button:focus {
    outline: none;
}
.container {
	padding: 0px;
	/* width: 100%;
	max-width: 800px; */
	height: 100%;
	background-size: cover;
	background-position: center bottom;
	background-repeat:no-repeat;
	aspect-ratio: 10/16;
	width: 100%;/* 宽度为视口宽度的50% */
	margin: 0 auto; /* 水平居中 */
	max-width: 600px;
}
.row{
	margin: 0px;
}

.con{
	padding-top:5vh;
	width: 80vw;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	max-width: 500px;
}

.logo {
	margin-bottom: 6vh;
	
}
.logo img{
	/* width: 6.25rem; */
	/* width: 15%; */
	width: 15vw;
	max-width: 150px;
}

.title {
	font-size: min(75px, 14vw);
	color: #ffe1ae;
	font-family:'MyWebFont', serif;
	font-weight: normal;
	letter-spacing: 1vw;
	text-indent:1vw;
	margin-bottom: 2vh;
}

.description{
	color: #ffe1ae;
	font-size:min(20px,3vw);
	letter-spacing: 0.3125rem;
	text-indent: 0.3125rem ;
	margin-bottom:  0.3vh;
}

.tip{
	color: #ffe1ae;
	letter-spacing: 0.1875rem;
	text-indent: 0.1875rem ;
	font-size: min(20px,3vw);
	margin-bottom: 9vh;
}
.tip-img {
	width: 10vw;
	max-width: 70px;
}

.btn {
	background-color: #fdcf30;
	border-color: #e4d28a;
	width: 50vw;
	/* width: 50%; */
	max-width: 350px;
	/* width: 50%; */
	height: 5vw;
	max-height: 40px;
	min-height: 40px;
	min-height: 40px;
	font-size:min(40px, 6vw );;
	color: #ba000b;
	letter-spacing: 1vw;
	text-indent: 1vw ;
	font-family:'MyWebFont', serif;
	font-weight: normal;
	border-radius: 0.625rem;
	/* line-height: 10vw; */
	 align-items: center;
	 justify-content: center;
	line-height: 7.5vw;
}

.btn:hover{
	background-color: #fdcf30;
	border-color: #e4d28a;
	color: #ba000b;
}

@media screen and (max-width:768px) {
	/* .title {
		letter-spacing: 0.3125rem;
		text-indent:0.3125rem;
	} */
	
	.container {
		background-size: cover;
		background-position: center bottom;
		background-repeat:no-repeat;
	}
}

@media screen and (max-height:600px) {
	body {
		height: 100%;
	}
	.container {
		height: 100%;
		min-height: 100vh;
	}
}

/* @media screen and (max-height:700px) {
	.con{
		margin-top: 1.1875rem;
	}
	.logo img{
		width: 4.25rem;
	}
	.title {
		letter-spacing: 0.3125rem;
		text-indent:0.3125rem;
		font-size: 1.875rem;
		margin-bottom: 1.25rem;
	}
	.description{
		font-size: 1rem;
	}
	.container {
		background-size: cover;
		background-position: center bottom;
		background-repeat:no-repeat;
	}
} */