        .container-wx {
            width: 100%;
            max-width: 790px;
            background-color: white;
            border-radius: 12px;
            
            padding: 0px 0px 0px 0px;
            text-align: center;
            border: 1px dotted #c3c3c3;
            margin-bottom: 30px;

        }
        
        h1 {
            color: #333;
            margin-bottom: 15px;
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        .subtitle {
            color: #666;
            margin-bottom: 30px;
            font-size: 1rem;
            line-height: 1.5;
        }
        
        .buttons-container-wx {
            display: flex;
            justify-content: center;
            gap: 20px;
                        margin-bottom: 10px;
            margin-top: 10px;
            flex-wrap: wrap;
            
        }
        
        .button {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 108px;
            height: 44px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
            border: none;
            color: white;
            padding: 8px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .button:active {
            transform: translateY(2px);
        }
        
        .button::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(-100%);
            transition: transform 0.4s ease;
        }
        
        .button:hover::after {
            transform: translateX(0);
        }
        
        .call-button {
            background: linear-gradient(to right, #36d1dc, #5b86e5);
        }
        
        .copy-button {
            background: linear-gradient(to right, #00b09b, #96c93d);
        }
        
        .button-icon {
            font-size: 1rem;
            margin-bottom: 3px;
        }
        
        .button-text {
            font-size: 0.75rem;
            line-height: 1.1;
            word-break: break-all;
        }
        
        .info-box {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
            margin-top: 30px;
            text-align: left;
            border-left: 4px solid #5b86e5;
        }
        
        .info-box h3 {
            color: #333;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .info-box p {
            color: #555;
            line-height: 1.5;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
        
        .info-box ul {
            padding-left: 18px;
            color: #555;
            line-height: 1.5;
        }
        
        .info-box li {
            margin-bottom: 6px;
            font-size: 0.9rem;
        }
        
        .info-box strong {
            color: #333;
        }
        
        .status-message {
            margin-top: 20px;
            padding: 12px;
            border-radius: 6px;
            font-weight: 500;
            font-size: 0.9rem;
            opacity: 0;
            transition: opacity 0.4s ease;
            min-height: 46px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .status-success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            opacity: 1;
        }
        
        .status-error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
            opacity: 1;
        }
        
        .footer {
            margin-top: 30px;
            color: #777;
            font-size: 0.8rem;
            text-align: center;
        }
        
        /* 手机端适配 */
        @media (max-width: 768px) {
            .container-wx {
                padding: 25px 20px;
                margin: 10px;
            }
            
            h1 {
                font-size: 1.6rem;
            }
            
            .buttons-container-wx {
                gap: 15px;
            }
            
            .button {
                width: 108px;
                height: 44px;
            }
            
            .info-box {
                padding: 15px;
            }
        }
        
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
            }
            
            .buttons-container-wx {
                flex-direction: row;
                gap: 15px;
            }
            
            .button {
                width: 108px;
                height: 44px;
            }
            
            .button-text {
                font-size: 0.7rem;
            }
        }
        
        /* 电脑端鼠标悬停效果 */
        @media (hover: hover) {
            .button:hover {
                transform: translateY(-3px);
                box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            }
            
            .button:active {
                transform: translateY(0);
            }
        }
        
        /* 在小屏幕上调整布局 */
        @media (max-width: 350px) {
            .buttons-container-wx {
                flex-direction: column;
                align-items: center;
            }
            
            .button {
                width: 120px;
                height: 48px;
            }
        }