html,body,body *{
    margin:0;
    padding:0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Hiragino Sans GB W3","Microsoft Yahei","微软雅黑", sans-serif;
    outline: 1px solid rgba(0,0,0,0);
    -webkit-tap-highlight-color:rgba(255,0,0,0);
}
html,body{
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}
body{
    font-size: 13px;
    line-height: 1.5;
    color:#515151;
    background:#fff;
}
div{
    position:relative;
    overflow: hidden;
}
a,a:link,a:-webkit-any-link,a:active,a:visited,a:hover{
    color:inherit;
    text-decoration: none;
}
textarea{
    resize: none;
}
.left{
    float: left;
}
.right{
    float: right;
}
.text-center{
    text-align: center;
}
.text-left{
    text-align: left;
}
.text-right{
    text-align: right;
}
.text-justify{
    text-align: justify;
}
.text-underline{
    text-decoration: underline;
}
.red-color{
    color:rgb(245,46,46);
}
.green-color{
    color:#4ad425;
}
.white-bg{
    background:#fff;
}
.gray-color{
    color:rgb(153,153,153);
}
.red-bg{
    background: rgb(245,46,46);
    color:#fff;
}
.green-bg{
    background: rgb(0,213,35);
    color:#fff;
}
.gray-bg{
    background: rgb(153,153,153);
    color:#fff;
}
p{
    font-size: 14px;
    line-height: 1.5;
}
small{
    font-size: 80%;
    color:rgb(153,153,153);
}
.hide{
    display: none;
}
.loadingContainer{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    background: transparent;
    z-index: 9999;
}
.container-fluid{
    width: 100%;
    margin: 0px;
    padding: 10px;
}
.fullwidth{
    display: block;
    width: 100%;
    min-height: 1px;
}
h1,.h1{
    font-size: 20px;
    font-weight: bold;
}
.selected{
    background: #ccc !important;
}
.input-group{
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}
.input-group .input,.input-group .textarea{
    padding: 3px 15px;
    font-size: 110%;
    border: none;
}
.input.with-icon-right{
    padding-right: 30px;
}
.input-group .required{
    color:rgb(245,46,46);
}

.input-group .icon-right{
    position: absolute;
    display: block;
    right: 0;
    top: 10px;
    width: 30px;
    text-align: center;
}

.btn-group{
    padding: 10px;
}
.btn{
    padding: 10px;
    font-size: 16px;
    border:1px solid #ccc;
}
.btn-primary{
    color:#fff;
    background: rgb(245,46,46);
    border:1px solid rgb(245,46,46);
}
.btn-primary.clicked{
    background: rgb(222,39,39);
    border:1px solid rgb(222,39,39);
}
input[disabled],textarea[disabled]{
    background: transparent;
}

/*蓝色皮肤*/
.skin-blue .input-group .required{
    color:#3aaff5;
}
.skin-blue .btn-primary{
    color:#fff;
    background: #3aaff5;
    border: 1px solid #3aaff5;
}
.skin-blue .btn-primary.clicked{
    background: #2694d6;
    border: 1px solid #2694d6;
}