.yk_WeChatFans_hide_box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0;
}

.yk_WeChatFans_hide_box .info-item {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 6px;
    padding: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.yk_WeChatFans_hide_box .info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-color: #e0e0e0;
}

.yk_WeChatFans_hide_box .info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    background-color: #4a90e2;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.yk_WeChatFans_hide_box .info-item:nth-child(2)::before {
    background-color: #50e3c2;
}

.yk_WeChatFans_hide_box .info-item:hover::before {
    width: 8px;
}

.yk_WeChatFans_hide_box .bottom_font {
    color: #333;
    font-weight: 600;
    margin-right: 12px;
    flex-shrink: 0;
    min-width: 60px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.yk_WeChatFans_hide_box .info-item:hover .bottom_font {
    color: #4a90e2;
}

.yk_WeChatFans_hide_box .keyword {
    color: #4a90e2;
    font-weight: 500;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.yk_WeChatFans_hide_box .info-item:hover .keyword {
    color: #3a80d2;
}

.yk_WeChatFans_hide_box .copy-btn {
    padding: 6px 16px;
    background-color: #2a70c2;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 10px;
    position: relative;
    z-index: 1;
}

.yk_WeChatFans_hide_box .copy-btn:hover {
    background-color: #1a5092;
}

.yk_WeChatFans_hide_box .copy-btn:active {
    transform: scale(0.95);
    background-color: #0a3062;
}

.yk_WeChatFans_hide_box .copy-success {
    background-color: #008060;
    color: white;
}

/* 娣诲姞娉㈢汗鏁堟灉 */
.yk_WeChatFans_hide_box .copy-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
}

.yk_WeChatFans_hide_box .copy-btn:active::after {
    width: 200%;
    height: 200%;
    opacity: 1;
}

/* 鍝嶅簲寮忚璁� */
@media (max-width: 768px) {
    .yk_WeChatFans_hide_box .info-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px;
    }
    
    .yk_WeChatFans_hide_box .bottom_font {
        margin-bottom: 8px;
        margin-right: 0;
    }
    
    .yk_WeChatFans_hide_box .keyword {
        margin-bottom: 10px;
        width: 100%;
    }
    
    .yk_WeChatFans_hide_box .copy-btn {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
}