body {
    background: #f0f2f5;
}

#pmsApp {
    background: #f0f2f5;
}

/**
* 仅仅用于占位，避免界面触底
 */
#footerLayout {
    height: 16px;
}

/**
* 内容盒子
 */
.block-container {
    position: relative;
    margin: 16px 16px 0px 16px;
    border-radius: 2px;
    background-color: #fff;
}

/**
* 补充定义icon的大小样式
 */
.ax-icon-xs {
    line-height: 22px;
    font-size: 12px;
}

.ax-icon-sm {
    line-height: 28px;
    font-size: 14px;
}

.ax-icon-lg {
    line-height: 48px;
    font-size: 20px;
}

/**
* 定义无边框样式
 */
.my-no-border {
    border: 0px;
    box-shadow: none;
}

.my-no-border input[type="text"],
.my-no-border input[type="search"],
.my-no-border input[type="url"],
.my-no-border input[type="email"],
.my-no-border input[type="number"],
.my-no-border input[type="password"],
.my-no-border select,
.my-no-border textarea {
    border: 0px;
    box-shadow: none;
}

.my-no-border input[type="text"]:focus,
.my-no-border input[type="search"]:focus,
.my-no-border input[type="url"]:focus,
.my-no-border input[type="email"]:focus,
.my-no-border input[type="number"]:focus,
.my-no-border input[type="password"]:focus,
.my-no-border select:focus,
.my-no-border textarea:focus {
    border: 0px;
    box-shadow: none;
}


/**
* 重新定义表头样式
 */
table > thead > tr > th {
    vertical-align: bottom;
    background: #fafafa;
    /*border-bottom: 1px solid #fafafa;*/
}

/**
* 为长表格添加滚动条
 */
.table-responsive {
    min-height: .01%;
    overflow-x: auto;
}
@media screen and (max-width: 767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }
    .table-responsive > .table {
        margin-bottom: 0;
    }
    .table-responsive > .table > thead > tr > th,
    .table-responsive > .table > tbody > tr > th,
    .table-responsive > .table > tfoot > tr > th,
    .table-responsive > .table > thead > tr > td,
    .table-responsive > .table > tbody > tr > td,
    .table-responsive > .table > tfoot > tr > td {
        white-space: nowrap;
    }
    .table-responsive > .table-bordered {
        border: 0;
    }
    .table-responsive > .table-bordered > thead > tr > th:first-child,
    .table-responsive > .table-bordered > tbody > tr > th:first-child,
    .table-responsive > .table-bordered > tfoot > tr > th:first-child,
    .table-responsive > .table-bordered > thead > tr > td:first-child,
    .table-responsive > .table-bordered > tbody > tr > td:first-child,
    .table-responsive > .table-bordered > tfoot > tr > td:first-child {
        border-left: 0;
    }
    .table-responsive > .table-bordered > thead > tr > th:last-child,
    .table-responsive > .table-bordered > tbody > tr > th:last-child,
    .table-responsive > .table-bordered > tfoot > tr > th:last-child,
    .table-responsive > .table-bordered > thead > tr > td:last-child,
    .table-responsive > .table-bordered > tbody > tr > td:last-child,
    .table-responsive > .table-bordered > tfoot > tr > td:last-child {
        border-right: 0;
    }
    .table-responsive > .table-bordered > tbody > tr:last-child > th,
    .table-responsive > .table-bordered > tfoot > tr:last-child > th,
    .table-responsive > .table-bordered > tbody > tr:last-child > td,
    .table-responsive > .table-bordered > tfoot > tr:last-child > td {
        border-bottom: 0;
    }
}
.labelsx{
    color:red;
    width:180px;
}

.mar-1{
    margin:10px;
}
.mar-2{
    margin:20px;
}
.mar-3{
    margin:30px;
}
.mar-4{
    margin:40px;
}
.mar-5{
    margin:50px;
}
.mar-sm-1{
    margin:2px;
}
.mar-left-sm-1{
    margin-left:5px;
}
.mar-left-1{
    margin-left:10px;
}
.mar-left-2{
    margin-left:20px;
}
.mar-left-3{
    margin-left:30px;
}
.mar-left-4{
    margin-left:40px;
}
.mar-left-5{
    margin-left:50px;
}



.pad-1{
    padding:10px;
}
.pad-2{
    padding:20px;
}
.pad-3{
    padding:30px;
}
.pad-4{
    padding:40px;
}
.pad-5{
    padding:50px;
}
.pad-sm-1{
    padding:2px;
}
.border-1-666666{
    border:1px solid #666666;
}
.border-1-cccccc{
    border:1px solid #cccccc;
}


.width-48{
    width:45%;
    float:left;

}
.hidden{
    display:none;
}
/**
* 补充ax.css对只读输入框设定偶尔不生效的问题
 */
input[readonly="readonly"],
textarea[readonly="readonly"]{
    color: #b3b3b3;
    cursor: not-allowed;
    background-color: #f0f0f0;
    box-shadow: none;
}
