 /* 通用按钮基础样式 */
        .verify-btn {
            width: 106px;
            height: 44px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
            outline: none;
                display: inline-block;
    line-height: 44px;
        }

        /* 样式1：简约蓝色（主流常用） */
        .btn-style1 {
            background-color: #1e9fff;
            color: #ffffff !important;
        }