html {
  height: 100%;
}

body {
  background: linear-gradient(270deg, #c334f2 0%, #62a2f3 100%);
  margin: 0;
  padding: 0;
  height: 100%;
}

div {
  margin: 0 auto;
  max-width: 790px; /* 790px is suitable for Sansung Tab S6 Lite. usually should be 960px = 60em;*/
}

main {
  margin: 50% auto;
}

p {
  color: coral;
}

span {
  /* color: whitesmoke; */
  font-weight: normal;
  font-style: italic;
  font-size: 0.6em;
}

.loading {
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.loading-text {
  font-size: 1.2em;
  color: #ffffff;
  margin-top: 30px;
  padding:0 30px;
}

.loading img {
  width: 60%;
  max-width: 350px;
  height: auto;
  border-radius: 12px;
}

.loading video {
  width: 60%;
  max-width: 350px;
  height: auto;
  border-radius: 12px;
}

.logo-con {
  width: 80%;
  max-width: 500px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-direction: column;
}

.logo-top {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 60px;
  font-weight: bold;
  margin: 0 0;
}

.logo-bottom {
  width: 100%;
  text-align: center;
  font-size: 34px;
}

.logo-img {
  width: 50%;
  height: auto;
}


.link-btn {
	margin:30px auto;
	font-size:36px;
	color: #ffffff;
	width: 200px;
	background: black;
	height:60px;
	display: flex;
	justify-content:center;
	align-items:center;
	border-radius: 12px;
	cursor:pointer;
	font-weight:blod;
}

@keyframes enlargeText {
  0% {
    font-size: 37rpx; /* 动画开始的字体大小 */
  }
  50% {
    font-size: 40rpx; /* 动画开始的字体大小 */
  }
  100% {
    font-size: 37rpx; /* 动画结束的字体大小 */
  }
}
 
/* 应用动画到目标元素 */
.text-animation {
  animation: enlargeText 2s infinite; /* 动画名称，每次动画的持续时间，以及动画的循环次数 */
}