/* 方案三：平衡优雅版 */

/* 微信复制卡片容器 */
.wechat-copy-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fdf6f7; /* 使用非常淡的粉色调背景 */
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid #fbebeb;
    margin: 2.5em 0;
    box-shadow: 0 4px 12px rgba(100, 50, 50, 0.05); /* 阴影也带一点暖色调 */
    transition: all 0.3s ease;
}

.wechat-copy-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(100, 50, 50, 0.08);
}

/* 左侧信息区域 */
.wechat-copy-info {
    flex-grow: 1;
    margin-right: 20px;
}

/* 说明文字 */
.wechat-copy-text {
    margin: 0 0 5px 0;
    font-size: 15px;
    color: #a38c8e; /* 柔和的棕粉色文字 */
}

/* 微信号 */
.wechat-copy-id {
    font-size: 18px;
    font-weight: 600;
    color: #4f4243; /* 深棕色，比纯黑更柔和 */
    letter-spacing: 0.5px;
}

/* 复制按钮 - 核心修改 */
.wechat-copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #D96570; /* 按钮文字使用柔和的粉红色 */
    background-color: rgba(253, 235, 237, 0.8); /* 半透明的淡粉色背景 */
    border: 1px solid #FADADD; /* 柔和的粉色边框 */
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
}

.wechat-copy-btn:hover {
    background-color: #FDEBED; /* 悬停时背景变实，颜色稍微加深 */
    border-color: #F8C5CA;
    color: #C95560;
    transform: scale(1.03); /* 增加轻微放大效果 */
}

/* 按钮内的图标 */
.wechat-copy-btn svg {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    stroke: #D96570; /* 图标颜色与文字一致 */
    transition: stroke 0.2s ease-in-out;
}
.wechat-copy-btn:hover svg {
    stroke: #C95560;
}

/* 复制成功后的状态 */
.wechat-copy-btn.copied {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
    transform: scale(1);
}

.wechat-copy-btn.copied svg {
    stroke: #fff;
}

.wechat-copy-btn.copied:hover {
    background-color: #218838;
    border-color: #218838;
}

