﻿@charset "utf-8";
/* CSS Document */

 .btn-default {
            width: 90px;
        }

        .control-label {
            font-size: 18px;
        }

        .form-control {
            width: 248px;
            display: inline-block;
            height: 22px;
            line-height: 22px;
            border: none;
        }

        #mobile {
            background: #fff url("/Upload/Templates/kxwb/images/img_user.png") left top no-repeat;
            padding: 0px 0px 0px 65px;
            height: 22px;
        }

        #pincode {
            background: #fff url("/Upload/Templates/kxwb/images/img_pass.png") left top no-repeat;
            padding: 0px 0px 0px 65px;
            height: 22px;
        }

        #checkform {
            width: 90px;
            height: 22px;
            background: url("/Upload/Templates/kxwb/images/img_btnbg.png") left top no-repeat;
            border: none;
        }
    </style>
    <script>
        function checkform() {
            if (document.getElementById('realname').value == "") {
                alert("请填写K账号");
                return false;
            }
            if (document.getElementById('mobile').value != "0613") {
                alert("请填写正确的Pincode");
                return false;
            }
            else {
                return true;
            }
        }