/*導航條*/
.navbar {
position: relative;
min-height: 50px;
margin-bottom: 0px;
border: 1px solid transparent;
}
/*左側菜單欄*/
.left-menu{
/*padding: 20px;*/
text-align: center;
/*background-color: bisque;*/
position: fixed;
top: 50px;
bottom: 0px;
left: 0px;
width: 300px;
}
/*右側表單*/
.right-content {
position: fixed; /*固定用*/
overflow: auto; /*當內容在可顯示內容之外,生產自用的滾動條,與position: fixed一起用*/
top: 50px;
bottom: 0;
right: 0;
left: 300px;
padding: 30px;
padding-top: 0px;
}