* {
	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;
}

.qr-tooltip {
	width: 190px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99;
	display: none;
	background: #FFFFFF;
	border-radius: 20px;
	box-shadow: 0px 5px 5px 0px rgba(153,153,153,0.08);
	border: 1px solid #F1F1F1;
	box-sizing: border-box;
	padding: 20px 0;
	margin-top: 10px;
}

/* 替代 ::after 的箭头部分 */
.qr-tooltip::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-bottom-color: white;
}
 
/* 新增灰色边框箭头 */
.qr-tooltip::before {
    content: "";
    position: absolute;
    top: -24px; /* 比白色箭头大2px */
    left: 50%;
    transform: translateX(-50%);
    border: 12px solid transparent;
    border-bottom-color: #F1F1F1;
    z-index: -1; /* 放在白色箭头下面 */
}

.qr-tooltip .qrcode {
	width: 130px;
	height: 130px;
	margin-left: 30px;
}

.qr-tooltip .text {
	font-family: PingFang SC, PingFang SC;
	font-weight: 400;
	font-size: 12px;
	color: #000000;
	text-align: center;
	margin-top: 6px;
}

@media (max-width: 768px) { 
	.content {
		width: 100%;
		margin-top: 104px;
		flex: 1;
	}
	
	.qr-tooltip {
		display: none !important;
	}
}