* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

input ,textarea {
  outline: none;
  box-shadow: none;
  border: 0px solid transparent;
  background: transparent;
}

button {
  border: none;
}

img {
  width: 100%;
  height: auto; 
  display: block;
}

a {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

/* 在线链接服务仅供平台体验和调试使用，平台不承诺服务的稳定性，企业客户需下载字体包自行发布使用并做好备份。 */
@font-face {
  font-family: "Alimama ShuHeiTi-Bold";
  font-weight: 700;
  src: url("../font/AlimamaShuHeiTi-Bold.woff2") format("woff2"),
  url("../font/AlimamaShuHeiTi-Bold.woff") format("woff");
  font-variation-settings: normal;
  font-display: swap;
}

.webfont {
  font-family: "Alimama ShuHeiTi-Bold";
  font-variation-settings: normal; /* Chrome 140 以下版本需要 */
}


.page {
	width: 100%;
    min-height: 100vh;
    overflow-y: auto;
    font-family: PingFangSC, PingFang SC;	
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.content {
	max-width: 100%;
	margin-top: 190px;
	flex: 1;
}

@media (max-width: 768px) { 
	.content {
		width: 100%;
		margin-top: 104px;
		flex: 1;
	}
}