/* 遮罩层 */
        .xcConfirm .xc_layer {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9999;
        }

        /* 弹窗主体 */
        .xcConfirm .popBox {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            width: 400px;
            z-index: 99999;
            overflow: hidden;
        }

        /* 标题区域 */
        .xcConfirm .popBox .ttBox {
            padding: 20px 24px;
            background: #a50034;
            color: white;
            position: relative;
        }

        .xcConfirm .popBox .ttBox .tt {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
        }

        .xcConfirm .popBox .ttBox .clsBtn {
            position: absolute;
            top: 18px;
            right: 20px;
            width: 24px;
            height: 24px;
            cursor: pointer;
            opacity: 0.8;
        }

        .xcConfirm .popBox .ttBox .clsBtn:hover {
            opacity: 1;
        }

        .xcConfirm .popBox .ttBox .clsBtn::before,
        .xcConfirm .popBox .ttBox .clsBtn::after {
            content: '';
            position: absolute;
            top: 11px;
            left: 3px;
            width: 18px;
            height: 2px;
            background: white;
        }

        .xcConfirm .popBox .ttBox .clsBtn::before {
            transform: rotate(45deg);
        }

        .xcConfirm .popBox .ttBox .clsBtn::after {
            transform: rotate(-45deg);
        }

        /* 内容区域 */
        .xcConfirm .popBox .txtBox {
            padding: 24px;
			background: #fff;
        }

        .xcConfirm .popBox .txtBox p {
            font-size: 15px;
            line-height: 1.6;
            color: #333;
            margin: 0;
        }

        .xcConfirm .popBox .txtBox p a {
            color: #a50034;
            text-decoration: none;
        }

        .xcConfirm .popBox .txtBox p a:hover {
            text-decoration: underline;
        }

        /* 按钮区域 */
        .xcConfirm .popBox .btnArea {
            padding: 0 24px 24px;
            border-top: 1px solid #eee;
            background: #f9f9f9;
        }

        .xcConfirm .popBox .btnGroup {
            display: flex;
            gap: 10px;
            justify-content: flex-end;
            padding-top: 20px;
        }

        .xcConfirm .popBox .sgBtn {
            padding: 10px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 14px;
            cursor: pointer;
            min-width: 70px;
            text-align: center;
        }

        .xcConfirm .popBox .sgBtn.ok {
            background: #a50034;
            color: white;
        }

        .xcConfirm .popBox .sgBtn.ok:hover {
            background: #8a002a;
        }

        .xcConfirm .popBox .sgBtn.cancel {
            background: #ddd;
            color: #666;
        }

        .xcConfirm .popBox .sgBtn.cancel:hover {
            background: #ccc;
        }