﻿
/*註冊頁面、取款、存款、公司入款、交易紀錄、修改取款密碼、修改密碼*/
.panel {
    margin: 0 auto;
    border-color: #ddd;
    background: #e5e5e5;
    border-radius: 3px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
    box-sizing: border-box;
}

.panel-body {
    position: relative;
    padding: 15px 15px 20px 15px;
}

form.form-horizontal {
    clear: both;
    display: inline-block;
    width: 100%;
}

    form.form-horizontal:before, form.form-horizontal:after {
        content: ' ',;
    }

.form-group {
    margin: 5px 0;
    display: inline-block;
    width: 100%;
    position: relative;
}

    .form-group .control-label {
        width: 20%;
        float: left;
        padding: 0 15px;
        margin: 0 auto;
        font-weight: bold;
        display: inline-block;
        text-align: right;
        height: 20px;
    }

    .form-group .control-div {
        float: left;
        padding: 0 15px;
        display: block;
        width: 45%;
        text-align: left;
    }

    .form-group .form-control-static {
        text-align: left;
    }

    .form-group .control-btn {
        text-align: center;
    }

    .form-group .control-div .form-control-static {
        margin: 0;
        text-align: left;
    }

.panel-shadow {
    width: 100%;
    height: 18px;
    position: absolute;
    left: 0;
    bottom: -19px;
    background: url('http://cdn.gpk77.com/Web.Portal/_Common/Content/Views/WithdrawApplication/images/panel_shadow.jpg') no-repeat;
}

.btn {
    display: inline-block;
    padding: 5px 4px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.428571429;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 2px;
}

.btn-link {
    font-weight: normal;
    color: #428bca;
    cursor: pointer;
    border-radius: 0;
}

    .btn-link:hover {
        text-decoration: underline;
    }

.btn-submit {
    border: 0;
    /*color: #454545;*/
    font-size: 15px;
    font-family: 新細明體;
    font-weight: bold;
    height: 45px;
    width: 119px;
    background: url('sent_bn.png') 0 0 no-repeat;
    position: relative;
}

    .btn-submit:active {
        background-position: 0px -46px;
    }

button[disabled], html input[disabled] {
    cursor: default;
    color: #999;
}

button {
    color: #454545;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 3px;
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

    .alert-warning hr {
        border-top-color: #f7e1b5;
    }

    .alert-warning .alert-link {
        color: #66512c;
    }

.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
/*彈跳出來的視窗*/
.modal-open {
    overflow: hidden;
}

.modal {
    color: #000;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    display: none;
    overflow: auto;
    overflow-y: scroll;
    background: rgba(0,0,0,0.5);
    transition: margin-top ease-in 300ms;
    -webkit-transition: margin-top ease-in 300ms;
}

    .modal.fade .modal-dialog {
        -webkit-transform: translate(0,-25%);
        -ms-transform: translate(0,-25%);
        transform: translate(0,-25%);
        -webkit-transition: -webkit-transform .3s ease-out;
        -moz-transition: -moz-transform .3s ease-out;
        -o-transition: -o-transform .3s ease-out;
    }

    .modal.in .modal-dialog {
        -webkit-transform: translate(0,0);
        -ms-transform: translate(0,0);
        transform: translate(0,0);
    }

.modal-dialog {
    position: relative;
    z-index: 1050;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 5px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,0.5);
    box-shadow: 0 3px 9px rgba(0,0,0,0.5);
    background-clip: padding-box;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
    background-color: #000;
}

    .modal-backdrop.fade {
        opacity: 0;
        filter: alpha(opacity=0);
    }

    .modal-backdrop.in {
        opacity: .5;
        filter: alpha(opacity=50);
    }

.modal-header {
    min-height: 16.428571429px;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

    .modal-header .close {
        margin-top: -2px;
    }

.modal-title {
    margin: 0;
    line-height: 1.428571429;
}

.modal-body {
    position: relative;
    padding: 20px;
}

.modal-footer {
    padding: 19px 20px 20px;
    margin-top: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

    .modal-footer:before, .modal-footer:after {
        display: table;
        content: " ";
    }

    .modal-footer:after {
        clear: both;
    }

    .modal-footer:before, .modal-footer:after {
        display: table;
        content: " ";
    }

    .modal-footer:after {
        clear: both;
    }

    .modal-footer .btn + .btn {
        margin-bottom: 0;
        margin-left: 5px;
    }

    .modal-footer .btn-group .btn + .btn {
        margin-left: -1px;
    }

    .modal-footer .btn-block + .btn-block {
        margin-left: 0;
    }

table {
    max-width: 100%;
    background-color: transparent;
}

th {
    text-align: left;
}

.table {
    width: 100%;
    margin-bottom: 20px;
}

    .table > thead > tr > th,
    .table > tbody > tr > th,
    .table > tfoot > tr > th,
    .table > thead > tr > td,
    .table > tbody > tr > td,
    .table > tfoot > tr > td {
        padding: 8px;
        line-height: 1.428571429;
        vertical-align: top;
        border-top: 1px solid #cccccc;
    }

    .table > thead > tr > th {
        vertical-align: bottom;
        border-bottom: 1px solid #cccccc;
    }

.table-bordered {
    border: 1px solid #cccccc;
}

    .table-bordered > thead > tr > th,
    .table-bordered > tbody > tr > th,
    .table-bordered > tfoot > tr > th,
    .table-bordered > thead > tr > td,
    .table-bordered > tbody > tr > td,
    .table-bordered > tfoot > tr > td {
        border: 1px solid #cccccc;
    }

    .table-bordered > thead > tr > th,
    .table-bordered > thead > tr > td {
        border-bottom-width: 2px;
    }

.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
    background-color: #f5f5f5;
}

.text-danger {
    color: #a94442;
}

.text-muted {
    color: #999;
}

.text-success {
    color: #3c763d;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
    color: #a94442;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
    margin: 0 15px;
}

/*彈跳出來的視窗 客製化*/
.modal {
    color: #000;
}

.modal-dialog {
    width: 850px;
    margin: 20px auto;
}

.modal-content {
    background: url('table_background.jpg');
}

.modal-header {
    background-color: #e9e9e9;
    border-bottom: 1px solid #CCC;
}

    .modal-header > .modal-title {
        color: #0080e3;
        font-family: Microsoft JhengHei;
        font-size: 21px;
        font-weight: bolder;
    }

    .modal-header .close {
        float: right;
        font-size: 21px;
        font-weight: bold;
        line-height: 1;
        color: #000;
        text-shadow: 0 1px 0 #fff;
        opacity: .2;
        padding: 0;
        cursor: pointer;
        background: transparent;
        border: none;
        -webkit-appearance: none;
    }

.modal-footer {
    background-color: #e9e9e9;
    border-top: 0 solid #e5e5e5;
    text-align: center;
    padding: 30px 20px 20px;
}

    .modal-footer > button {
        font-size: 15px;
        font-weight: bolder;
        background: url('sent_bn.png') no-repeat;
        width: 119px;
        height: 45px;
    }
