/* Common CSS - 公共样式 */
/* 引入设计系统token */
@import './design-system.css';

/* =================================
   项目特定CSS变量
   ================================= */

:root {
  /* ---- 项目特定颜色 ---- */
  --color-white: vexternal-iconr(--base-white);
  --color-orange-500: var(--base-orange-500);
  --color-yellow: var(--base-yellow-500);
  --color-muted: #818898;
  --color-border: #36394A;
  --color-border-alt: #666D80;
  
  /* ---- 项目特定间距 ---- */
  --spacing-7: 28px;
  --spacing-13: 52px;
  --spacing-15: 60px;
  --spacing-25: 100px;
  
  /* ---- 项目特定圆角 ---- */
  --radius-3xl: 30px;
  
  /* ---- 项目特定阴影 ---- */
  --shadow-xsmall: 0px 1px 2px 0px rgba(13, 13, 18, 0.06);
  
  /* ---- 项目特定效果 ---- */
  --filter-blur-sm: blur(200px);
  --filter-blur-lg: blur(500px);
  
  /* ---- 项目特定布局 ---- */
  --container-width: 1440px;
  --content-width: 1240px;
  --max-content-width: 1000px;
  --text-width: 678px;
  --card-width: 750px;
  --timeline-width: 900px;
}

/* 重置样式和基础设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    font-family: var(--font-family-primary);
    background-color: var(--greyscale-900);
    overflow-x: hidden;
}

/* 主容器 - 精确尺寸 1440px */
.main-container {
    width: var(--container-width);
    max-width: 100%;
    margin: 0 auto;
    background-color: var(--greyscale-900);
    display: flex;
    flex-direction: column;
    align-items: center;
}



/* 导航栏 - 精确尺寸和样式 - 基于Figma设计稿 */
.navbar {
    position: fixed;
    top: var(--spacing-7);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: var(--content-width);
    height: var(--spacing-16);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 85px;
    padding: var(--spacing-2) var(--spacing-2) var(--spacing-2) var(--spacing-6);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border-radius: var(--radius-xl);
    border: none;
}

/* Logo 区域 - 匹配Figma设计稿 */
.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    width: 200px;
    transition: opacity var(--transition-normal);
}

.logo-link:hover {
    opacity: 0.8;
}

.logo {
    display: flex;
    align-items: center;
    gap: 7px;
    transition: transform var(--transition-normal);
}

.logo-icon {
    position: relative;
    width: 45.43px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo:hover {
    transform: scale(0.98);
}

#logo-animation {
    width: 179.8px;
    height: 28px;
}

/* 导航链接 - 匹配Figma设计稿 */
.nav-links {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    transition: color var(--transition-normal);
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.nav-link.active {
    color: var(--base-white) !important;
    opacity: 1 !important;
}

.nav-link-knowledge {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.nav-link-knowledge:hover .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.nav-link-knowledge:hover .external-icon {
    opacity: 0.9;
    transform: translateX(4px);
}

.external-icon {
    width: 20px;
    height: 20px;
    opacity: 0.6;
    color: rgba(255, 255, 255, 0.6);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

/* 联系按钮 - 匹配Figma设计稿 */
.contact-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-2) var(--spacing-6);
    height: var(--spacing-12);
    background: var(--greyscale-50);
    border: none;
    border-radius: 10px;
    color: var(--greyscale-900);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-regular);
    line-height: 1.55;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-bounce);
}

.contact-button:hover {
    background: var(--base-white);
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px 0px rgba(80, 36, 255, 0.4), 0px 8px 20px 0px rgba(255, 255, 255, 0.2);
}

/* Hero 内容 - 精确布局 */
.hero-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: var(--spacing-25);
    padding: 0px 0px var(--spacing-12);
    width: 100%;
}

.hero-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: var(--spacing-10);
    width: 100%;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: var(--spacing-5);
    width: 100%;
}

/* 页脚 */
.footer {
    position: relative;
    width: var(--content-width);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-25);
                /* padding: 100px 0 50px 0; */
    background: none !important;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
}

.footer-gradient {
    position: absolute;
    left: 420px;
    /* top: 300px; */
    bottom: -196.496px;
    width: 600px;
    height: 230px;
    border-radius: 600px;
    background: var(--primary-500, #5024FF);
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
}

.footer-content {
                    padding: 100px 0 50px 0;
    position: relative;
    z-index: 5;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-10);
}

.footer-line {
    width: 100%;
    height: 1px;
opacity: 0.5;
background: linear-gradient(0deg, var(--base-primary-20, rgba(80, 36, 255, 0.20)) 0%, var(--base-primary-20, rgba(80, 36, 255, 0.20)) 100%), var(--greyscale-default-100, #36394A);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    gap: var(--spacing-10);
    width: 100%;
}

.copyright {
    color: var(--color-muted);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-s);
    line-height: var(--line-height-loose);
    text-align: left;
}

.social-links {
    display: flex;
    gap: var(--spacing-10);
}

.social-link {
    color: var(--color-muted);
    text-decoration: none;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-loose);
    text-align: left;
    transition: color var(--transition-normal);
}

.social-link:hover {
    color: var(--base-white);
}


/* 汉堡菜单按钮 - 移动端 */
.hamburger-button {
    display: none;
background: var(--greyscale-default-900, #F8FAFB);
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color var(--transition-normal);
}

.hamburger-icon {
    width: 16px;
    height: 16px;
    /* filter: brightness(0) invert(1); */

}

/* 移动端导航弹窗 - 精确还原Figma设计稿 Navbar-mb-toast */
.mobile-nav-toast {
    position: fixed;
    top: 26%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(-10px);
    width: 335px;
    height: auto;
    max-height: 90vh;
    background: rgba(26, 27, 37, 0.8);
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 40px;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 移动端导航弹窗背景遮罩 */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) translateY(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    gap: 16px;
}

.mobile-nav-header .logo-link {
    width: 140px;
    display: flex;
    align-items: center;
    gap: 4.9px;
}

.close-button {
    background: none;
    border: 1px solid #36394A;
    border-radius: 10px;
    padding: 8px 16px;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.close-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.close-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    gap: 20px;
}

.mobile-nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'PingFang SC', var(--font-family-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    transition: color var(--transition-normal);
    height: 26px;
}

.mobile-nav-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.mobile-nav-link-knowledge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    height: 26px;
    padding-left: 21px;
}

.mobile-nav-cta {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    align-self: stretch;
    gap: 12px;
}

.mobile-nav-cta .contact-button {
    width: 100%;
    height: 40px;
    background: #F8FAFB;
    color: #0D0D12;
    font-family: 'PingFang SC', var(--font-family-primary);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
}

/* 桌面端隐藏 */
.desktop-only {
    display: flex;
}

    .card-toast {
            top: calc(100px);
     right: calc(140px);
        }    
    .main-container {
        width: 100%;
    }
    
    .sky-background {
        width: 100%;
    }
    
    .navbar {
        width: calc(100% - 104px);
        max-width: var(--content-width);
        transform: translateX(-50%);
    }
    
    .hero {
        /* padding: 124px var(--spacing-12) var(--spacing-12); */
    }
    
    .footer {
        width: calc(100% - 100px);
        max-width: var(--content-width);
        transform: translateX(-50%);
                        padding: 100px 0 50px 0;
    }
    
    .footer-gradient {
        left: calc(50% - 300px);
        top: 279.5px;
    }


    
@media (max-width: 768px) {
    /* 防止移动端横向滚动 */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

/* 修复 .gradient-ellipse 的模糊值为 0 */
.gradient-ellipse {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -88px;
    width: 375px;
    height: 170px; 

    /* height: 700px; */
    filter: blur(150px);
}


.sky-background {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height:800px;
    overflow: visible;
    /* 确保在768px分辨率下正确左右居中 */
    background-image: url('../images/topLightBg.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 60% auto;
    pointer-events: none;
}

    
    /* 移动端导航栏样式 */
    .hamburger-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 32px;
        height: 32px;
        padding: 8px;
        margin-left: auto;
    }
    
.logo {
    width: 140px;
    height: auto;
}


    .nav-links {
        display: none;
    }
    
    .desktop-only {
        display: none;
    }
    
    .navbar {
            display: flex;
        position:fixed;
        width: calc(100% - 40px);
        height: auto;
        /* gap: var(--spacing-4); */
        /* top: 20px; */
        /* transform: translateX(-50%); */
padding: 8px 8px 8px 12px;
    }
    
.navbar-container{
    /* display: flex;
        position:fixed;
        margin-top: 20px; */
        /* transform: translateX(-50%); */
    }


    .card-toast {
            border-radius: 12px;
        position: absolute;
            top: calc(var(--spacing-7) + var(--spacing-16) + 8px);
        /* top: 80px !important; */
        left:5%;
        right: auto !important;
                /* position: fixed; */
        /* top: calc(var(--spacing-7) + var(--spacing-16) + 8px); */
        transform: translateX(-50%) scale(0.95);
        /* width: calc(100% - 40px); */
        max-width: calc(100% - 40px);
        box-sizing: border-box;
        /* max-height: 90vh; */
        overflow-y: auto;
    }
    
    .card-toast.show {
    border-radius: 12px;
                left:5%;
                        right: auto !important;
                max-width: calc(100% - 40px);
        transform: translateX(-50%) scale(1);
        padding: 8px;
    }
/* 
    .contact-card {
    display: flex;
    gap: 16px;
    padding: 16px 16px 16px 20px;
    background: transparent;
    border-radius: 16px;
    position: relative;
    transition: background 0.2s ease;
} */
    
.contact-card {
align-items: center;
}

/* 二维码 */
.contact-card .qr-code {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    opacity: 0.3;
    transition: opacity 0.2s cubic-bezier(0.4, 0, 1, 1);
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* 768px下：联系我弹窗二维码尺寸覆盖为80x80 */
@media (max-width: 768px) {
  .qr-code {
    width: 80px;
    height: 80px;
  }
}
    .hero {
        padding: 0px;
    }
    
    .footer {
        width: 100%;
                /* padding: 100px 0 50px 0; */
        gap: var(--spacing-10);
        transform: translateX(-50%);
    }
    
.footer-line {
   width: calc(100% - 40px);
   position: relative;
   left: 50%;
   transform: translateX(-50%);
}

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-5);
        text-align: center;
        padding-bottom: 20px;
    }

.footer-content{
padding: 0px;
}

.copyright {
    font-size: 14px;
}

.social-link{
    font-size: 14px;
}

}

/* CardToast 弹窗 - 精确还原 Figma 设计稿 */
/* CardToast 弹窗样式 - 外层容器 */
.card-toast {
    position: fixed;
    top: calc(var(--spacing-7) + var(--spacing-16) + 8px);
    right: max(calc((100% - var(--content-width)) / 2 + 8px), 16px);
    /* top: 104px; */
    /* right: 108px; */
    z-index: 1002;
    /* 布局 */
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    border-radius: calc(24px + 1px);
    /* 半透明的背景色 */
background: rgba(255, 255, 255, 0.05);
    overflow: hidden;

    box-sizing: border-box;
    width: 450px;
    
    /* 可见性 */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) ;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* 防止鼠标事件穿透 */
    pointer-events: none;
    /* 边框和背景 */
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
}

.card-toast.show {
    /* 可见性 */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    
    /* 防止鼠标事件穿透 */
    pointer-events: auto;

        /* 边框和背景 */
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
}

/* Author Card Toast 样式 - 内部绝对定位 */
.author-card-toast {
    width: 447px;
    height: 422px;
    position: absolute;
    top: -285px;
    right: 15px;
    left: auto;
    margin-top: 8px;
    transform: translateY(10px);
    z-index: 1000;
background: linear-gradient(147deg, #3B345D 10.6%, #221757 89.4%);
        backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border: 1px solid var(--base-primary-200-20);
}

.author-card-toast.show {
    transform: translateY(0);
}


/* 背景模糊圆形 */
.card-toast-gradient {
    position: absolute;
    left: -159px;
    top: -46px;
    width: 318px;
    height: 92px;
    opacity: 1;
    background: #967CFF;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    z-index: 2000;
}


  .card-toast-gradient {
    display: none;
  }

    
    .contact-card {
    display: flex;
    gap: 16px;
    padding: 16px 16px 16px 20px;
    
    /* 背景渐变 */
    background: radial-gradient(circle at 39% 100%, rgba(115, 80, 255, 0.3) 0%, rgba(80, 36, 255, 0) 100%),
                rgba(80, 36, 255, 0.2);
    border-radius: 12px;
}

.contact-card.simple {
    justify-content: stretch;
    align-items: stretch;
    align-self: stretch;
}

/* 联系信息区域 */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 0;
    flex: 1;
}

/* 联系信息行 */
.contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
}

.contact-card.simple .contact-row {
    align-self: stretch;
    flex: 1;
}

/* 标签和值组合 */
.contact-label-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex: 1;
    width: auto;
}

/* 值和复制按钮容器 */
.contact-value-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

/* .contact-value-wrapper:hover {
    background-color: rgba(255, 255, 255, 0.05);
} */

/* 联系标签 */
.contact-label {
    width: 75px;
    color: #FFFFFF;
    font-family: var(--font-family-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.55;
    text-align: left;
    white-space: nowrap;
}

/* 联系值 */
.contact-value {
    color: #FFFFFF;
    background: radial-gradient(circle at -72% 127%, rgba(139, 110, 255, 1) 0%, rgba(139, 110, 255, 0) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-color: #FFFFFF;
    font-family: var(--font-family-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
    text-align: left;
}

/* 复制按钮 */
.copy-btn {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    /* padding: 4px; */
    background: transparent;
    border: none;
    cursor: pointer;
    /* border-radius: 4px; */
    transition: all 0.2s ease;
}

.copy-btn:hover {
    color: rgb(255, 255, 255);
}

.copy-btn svg {
    width: 16px;
    height: 16px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.copy-btn:hover svg {
    opacity: 1;
}

/* 二维码 */
.qr-code {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    opacity: 0.3;
    transition: opacity 0.2s cubic-bezier(0.4, 0, 1, 1);
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* 分割线 */
.contact-divider {
    align-self: stretch;
    padding: 0 20px;
}

.contact-divider::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(80, 36, 255, 0.2) 14%, rgba(255, 255, 255, 0.2) 31%, rgba(80, 36, 255, 0.2) 49%);
    opacity: 0.5;

}

/* 联系卡片容器 */
.contact-card {
    display: flex;
    gap: 16px;
    padding: 16px 16px 16px 20px;
    background: transparent;
    border-radius: 12px;
    position: relative;
    transition: background 0.2s ease;
}

/* 联系卡片悬停效果 */
.contact-card:hover {
    background: radial-gradient(78.31% 40.35% at 38.72% 100%, rgba(115, 80, 255, 0.30) 0%, rgba(80, 36, 255, 0.00) 100%), var(--base-primary-20, rgba(80, 36, 255, 0.20));
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
}

/* 当 contact-card 悬停时，contact-value 也进入悬停状态 */
.contact-card:hover .contact-value {
    background: radial-gradient(circle at -72% 127%, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%), #FFFFFF;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #FFFFFF;
    color: #FFFFFF;
}

/* 当 contact-card 悬停时，copy-btn 也进入悬停状态并显示 */
.contact-card:hover .copy-btn {
    opacity: 1;
    transform: translateX(0px);
    transition-delay: 0.1s;
}

.contact-card:hover .qr-code {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.contact-card:hover .contact-note {
    opacity: 1;
    transition-delay: 0.2s;
}

.contact-card.simple {
    padding: 16px 16px 16px 20px;
}

/* 联系方式标签 */
.contact-label {
    color: #FFFFFF;
    font-family: var(--font-family-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.55;
    min-width: 75px;
    text-align: left;
}

/* 联系方式值 */
.contact-value {
    color: #FFFFFF;
    font-family: var(--font-family-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
    background: radial-gradient(circle at -72% 127%, rgba(139, 110, 255, 1) 0%, rgba(139, 110, 255, 0) 100%), #FFFFFF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.2s ease;
}

/* 联系方式值 - 鼠标悬停时文字变为纯白色 */
.contact-value:hover {
    /* background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%); */
     background: radial-gradient(circle at -72% 127%, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%), #FFFFFF;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: #FFFFFF;
    color: #FFFFFF;
}

/* 联系方式包装器 */
.contact-value-wrapper {
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* 联系值内容容器 */
.contact-value-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* 调整微信标签的空格 */
.contact-label {
    white-space: nowrap;
}

/* 备注文字 */
.contact-note {
    color: #818898;
    font-family: var(--font-family-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    /* text-align: center; */
    opacity: 0.3;
    transform: translateY(0);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 1, 1);
    /* padding-left: 83px; */
}

/* 复制按钮 - 默认隐藏 */
.copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
    opacity: 0; /* 默认隐藏 */
    transform: translateX(-4px);
}