
/* Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575px) { .container{} }

/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) { .container{} }

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) { .container{max-width:750px;min-width:750px;} }

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) { .container{max-width:970px;min-width: 970px;} }

/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) { .container{max-width:1200px;min-width: 1200px;} }

html body{
    font-size: 14px;
    font-weight: normal;
}
.row {
    margin-left:0;
    margin-right:0;
}
.form-control{
    font-size: 14px;
}


.ui-autocomplete {
    max-height: 300px;
    max-width:500px;  /*下拉列表宽度*/
    overflow-y:auto;
    /* 防止水平滚动条 */
    overflow-x: hidden;
}
.form-control-feedback {
    text-align: left;
}