/***********************************关于页面上相关div、table、td的样式 开始位置*******************************************/
/*查詢條件div樣式*/
.hs-div-condition {
    margin-top: 0px;
    border-collapse: separate;
    border-spacing: 10px;
    background-color: #E1E4EC;
}

/*body样式*/
body {
    height: 100%;
    width: 100%;
    background: #F7F7F7;
}

/*超链接*/
a {
    color: #00a0e9;
    cursor: pointer;
}

a:hover {
    color: #ff6565;
}

/*查詢條件table樣式*/
.hs-table-condition {
    margin-top: 0px;
    border-collapse: separate;
    border-spacing: 10px;
    background-color: #E1E4EC;
}

/*table 左边的td 默认靠右*/
.hs-td-left {
    text-align: right;
    width: 90px;
}

/*这个css让页面button div添加背景*/
.hs-div-button {
    border: 1px solid #cbcbcb;
    clear: both;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    height: 35px;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fafafa), to(#f4f4f4));
    display: flex;
    justify-content: left;
    align-items: center;
}

/*这个css 修饰 dataGrid div*/
.hs-div-dataGrid {
    clear: both;
    margin-left: 10px;
    margin-top: 10px;
    margin-right: 10px;
}

/*这个修饰 button div 和 dataGrid div 之间的显示金额数目的div*/
.hs-div-centerInButtonAndDataGrid {
    display: flex;
    justify-content: left;
    align-items: center;
    height: auto;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    font-weight: bold;
}

/*这个修饰 button div 和 dataGrid div 之间的显示金额数目的div里面ul的样式的*/
#ul1 li {
    float: left;
    display: block;
    margin-left: 50px;
    font-weight: bold;
}

/***********************************关于页面上相关div、table、td的样式 结束位置*******************************************/

.hs-button {
    width: auto;
    height: 24px;
    cursor: pointer;
    color: #2a2a2a;
    border-radius: 5px;
    background: #FFFDEF;
    position: relative;
    border-style: solid;
    border-width: 1px 1px;
    border-color: #999999;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*按钮点击下沉*/
.hs-button:active:enabled {
    -moz-box-shadow: 0 0 4px 2px rgba(0, 0, 0, .3) inset;
    -webkit-box-shadow: 0 0 4px 2px rgba(0, 0, 0, .3) inset;
    box-shadow: 0 0 4px 2px rgba(0, 0, 0, .3) inset;
    position: relative;
    top: 1px;
}

/*无效的时候*/
.hs-button:disabled {
    cursor: not-allowed;
    background-color: #CCCCCC;
    color: #999999;
}

/*按钮鼠标经过颜色和字体*/
.hs-button:hover:enabled {
    background-color: #ff6565;
    color: white;
}

/*蓝色*/
.hs-blue {
    background-color: #0099cc;
    color: white;
}

/*橙色*/
.hs-orange {
    background-color: #F8AC59;
    color: white;
}

/*紫色*/
.hs-violet {
    background-color: #9999FF;
    color: white;
}

/*棕色*/
.hs-brown {
    background-color: #cc9966;
    color: white;
}

/*绿色*/
.hs-green {
    background-color: #7CCD7C;
    color: white;
}

/*青色*/
.hs-cyan {
    background-color: #23C6C8;
    color: white;
}

/*红色*/
.hs-red {
    background-color: #ff6565;
    color: white;
}

/*这个css让div内容居中*/
.hs-div-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*这个css让div内容垂直居中*/
.hs-div-left {
    display: flex;
    justify-content: left;
    align-items: center;
}

/*输入框表单table样式*/
.hs-table-form {
    margin-top: 0px;
    border-collapse: separate;
    border-spacing: 20px;
}

/*问号提示样式*/
.hs-btn-message-hint {
    width: 13px;
    height: 15px;
    margin-left: 2px;
    vertical-align: middle;
}

