.social-card {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    margin: 10px;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 999;
    /* 确保弹窗显示在最上层 */
}

.popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.wechatOA {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: var(--vh);
}

.wechat {
  margin: auto;
}

.wechat-card {
  background: var(--card-bg);
  max-width: 428px;
  max-height: 569px;
  border-radius: 16px;
  padding: 24px 36px 20px 36px;
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  align-items: center;
}

.qrcode {
  width: 256px;
  height: 256px;
  display: flex;
  border-radius: 12px;
}

.tips {
  font-size: 14px;
  color: var(--font-color);
  opacity: 0.5;
  margin-top: 8px;
}

.wechatOA-card {
  width: 100%;
  display: flex;
  margin-top: 16px;
  background: #F7F7F7;
  padding: 18px;
  border-radius: 16px;
  align-items: center;
}

.wechatOA-head {
  width: 48px;
  height: 48px;
  background-image: url(https://api.minio.waistu.com/bucket-alpha-bravo-charlie-12345/upload/2025/05/24/68317769750fc.webp);
  border-radius: 68px;
  background-size: contain;
  margin-right: 16px;
}

.wechatOA-name {
  font-weight: bold;
}

.wechatOA-description {
  font-size: 12px;
  color: var(--font-color);
  opacity: 0.5;
}

a.footer-item {
  font-size: 14px;
  color: var(--font-color);
  opacity: 0.5;
  text-decoration: none;
  margin: 20px 0;
  transition: 0.3s;
  position: relative;
  margin-right: 20px;
}

.footer-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #ccc;
}

.footer-item:last-child {
  margin-right: 0;
}

a.footer-item:visited {
  color: var(--font-color);
}

a.footer-item:hover {
  color: var(--green);
  text-shadow: 0px 0px 8px #1ba05914;
}

.wechat-need-reply {
  background: var(--card-bg);
  max-width: 328px;
  max-height: 569px;
  border-radius: 16px;
  padding: 24px 36px 20px 36px;
  display: flex;
  flex-direction: column;
  margin: auto;
  align-items: center;
}

img.wechat-need-reply-copybtn-img {
  width: 20px;
  height: 20px;
  opacity: 0.6;
  margin-left: 5px;
}

.wechat-need-reply-copybtn {
  display: flex;
  padding: 12px 12px 12px 20px;
  background: var(--green);
  color: #fff;
  border-radius: 12px;
  margin: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.wechat-need-reply-copybtn:hover {
  opacity: 0.8;
}

span#wechat-need-reply-text {
  line-height: 1;
  margin: auto;
}

span.wechat-need-reply-front {
  font-size: 14px;
  color: var(--font-color);
  font-weight: bold;
}

span.wechat-need-reply-back {
  font-size: 14px;
  color: var(--font-color);
}

.footer {
  display: flex;
}

.wechatOA-info {
  color: var(--font-color);
}

 /* 浮动效果 */

@layer utilities {
    .float-animation {
        animation: float 6s ease-in-out infinite;
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-200px); }
    100% { transform: translateY(0px); }
}