/* ===== 全局重置 ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-image: url('./images/backgroud@2x.png'); /* 设置背景图片路径 */
  background-size: cover; /* 背景图片尺寸自适应覆盖 */
  background-repeat: no-repeat; /* 背景图片不重复 */
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

/* ===== 主容器 ===== */
.container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1920px;
  margin: auto;
  padding: 40px 20px;
  gap: 80px; 
} 

.function {
  width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute; /* 添加绝对定位 */
  bottom: 0px; /* 距离底部无间隔 */
  margin: 0 auto;
  left: 50%; /* 水平居中 */
  transform: translateX(-50%); /* 精确水平居中 */
}

.follow-us {
  position: absolute;
  right: 0px;
  top: -48px; /* 调整位置，使其位于二维码上方 */
  color: #ffffff;
  font-size: 20px;
  text-align: right;
  font-family: PingFangSC, PingFang SC;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  font-style: normal;
}

/* 二维码容器样式 */
.qr-group-left,
.qr-group-right {
  position: relative;
  display: flex; /* 使用弹性布局 */
  align-items: center; /* 垂直居中对齐 */
  gap: 24px; /* 图片间距 */
}

.qr-item-left {
  position: relative;
  width: 88px; /* 底图宽度 */
  height: 100px; /* 底图高度 */
  background-size: cover; /* 背景图片自适应覆盖 */
  background-position: center; /* 背景图片居中 */
}


.qr-item-right {
  display: flex;
  flex-direction: column;
  align-items: center; /* 内容居中对齐 */
  gap: 8px; /* 图片与文字之间的间距 */
}

/* 每个二维码项的容器 */
.qr-item-background {
  display: flex;
  align-items: center; /* 内容居中对齐 */
  width: 88px;
  height: 88px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
}

.qr-group-left {
  bottom: 120px;
}

.qr-group-right {
  bottom: 112px;
}

/* 二维码图片样式 */
.qr-item-right .qrcode {
  width: 64px; /* 调整图片宽度 */
  height: 64px; /* 高度自适应 */
  display: block;
  margin: auto;
}

.qr-item-left .qrcode {
  position: absolute;
  top: 50%; /* 垂直居中 */
  left: 50%; /* 水平居中 */
  transform: translate(-50%, -60%); 
  width: 64px; /* 二维码宽度 */
  height: 64px; /* 二维码高度 */
}

/* 说明文字样式 */
.qr-item-right p {
  font-size: 14px; /* 字体大小 */
  color: rgba(255,255,255,0.6);
  margin: 0; /* 清除默认外边距 */
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  font-style: normal;
}

.line {
  width: 1200px;
  height: 2px;
  background: #FFFFFF;
  position: absolute;
  opacity: 0.1;
  bottom: 94px;
  left: 50%; /* 水平居中 */
  transform: translateX(-50%); /* 精确水平居中 */
}

.email {
  bottom:58px ;
  left: 50%; /* 水平居中 */
  transform: translateX(-50%); /* 精确水平居中 */
  position: absolute;
  font-family: PingFangSC, PingFang SC;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 20px;
  text-align: left;
  font-style: normal;
}

.record {
  max-width: 1200px;
  height: 20px;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  position: absolute;
  gap: 16px;
  overflow: hidden;
}

.record p{
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 20px;
  text-align: left;
  font-style: normal;
  margin: 0;
  white-space: nowrap;
}

.record a {
  font-family: PingFangSC, PingFang SC;
  font-size: 14px;
  color: rgba(255,255,255,1);
  line-height: 20px;
  text-align: left;
  font-style: normal;
  margin: 0;
  white-space: nowrap;
  text-decoration: none; /* 移除下划线 */

}
