	
        .modal-mask {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 999;
        }
        .confirm-modal {
            min-width: 300px;
            max-width: 580px;
            width: 85%;
            background-color: #fff;
            border-radius: 16px;
            overflow: hidden;
        }
        .modal-content {
            padding: 30px 20px;
            text-align: center;
            border-bottom: 1px solid #eee;
        }
        .modal-title {
            font-size: 20px;
            color: #333;
            margin-bottom: 12px;
            font-weight: 600;
        }
        .modal-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }
        .phone-number {
            /*color: #FF0004;*/
            font-weight: 500;
            font-size: 14px;
        }
        .modal-buttons {
            display: flex;
            height: 55px;
        }

        /* 按钮统一样式 */
        .modal-btn {
            flex: 1;
            border: none;
            background: none;
            font-size: 17px;
            cursor: pointer;
            transition: background 0.2s;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .cancel-btn {
            color: #666;
            border-right: 1px solid #eee;
        }
        .sure-btn {
            color: #fe560b;
            font-weight: 600;
			font-size: 18px;
        }
        .modal-btn:active {
            background-color: #f2f2f2;
        }
        .modal-mask.show {
            display: flex;
        }