Bootstrap 导航栏 下拉 宽度撑开满屏
--------移动到下拉显示-------------------------------
nav .dropdown:hover .dropdown-menu {
display:block; width: 100%; text-align: center; left:0; right:0;
background-color: RGBA(0, 127, 216, 0.8);
}
nav .dropdown:hover { position: static; }
------------------------------点击下拉显示-----------------------------------------
.dropdown.open { position: static; }
.dropdown.open .dropdown-menu {display:block; width: 100%; text-align: center; left:0; right:0; }