        .box-but {
            width: 100%;
            height: 100%;
            color: #fff;
            font-size: 18px;
        }

        a {
            text-decoration: none;
        }

        /*正常的未被访问过的链接*/
        a:link {
            text-decoration: none;
        }

        /*已经访问过的链接*/
        a:visited {
            text-decoration: none;
        }

        /*鼠标划过(停留)的链接*/
        a:hover {
            text-decoration: none;
        }

        /* 正在点击的链接，鼠标在元素上按下还没有松开*/
        a:active {
            text-decoration: none;
        }

        /* 获得焦点的时候 鼠标松开时显示的颜色*/
        a:focus {
            text-decoration: none;
        }

        .jBox-Confirm-button-cancel:hover,
        .jBox-Confirm-button-cancel:active {
            background: #05c19e;
        }
        .jBox-Confirm-button-cancel {
        border-bottom-left-radius: 4px;
        background: #71c410;
        }
        
         /* 修改右边按钮的颜色 */
        .jBox-Confirm-button-submit {
        border-bottom-right-radius: 4px;
        background: #2483ff;
        color: #fff; }

        .jBox-Confirm-button-submit:hover,
        .jBox-Confirm-button-submit:active {
        background: #2483ff; }