.navbar {
    margin-bottom: 0;
}

/*.container, .container-fixed, .container-fixed-md, .container-fixed-sm, .container-fixed-xs, .container-fluid {*/
/*padding-right: 0;*/
/*padding-left: 0;*/
/*margin-right: auto;*/
/*margin-left: auto;*/
/*}*/

/**********************导航栏重写*****************************/
/* 响应式 小于分辨率725px*/
@media only screen and (max-width: 770px) {
    .navbar-inverse {
        background: radial-gradient(right top, circle cover, rgb(60, 149, 255), rgb(20, 92, 205) 50%);
        background: -o-radial-gradient(right top, circle cover, rgb(60, 149, 255), rgb(20, 92, 205) 50%);
        background: -ms-radial-gradient(right top, circle cover, rgb(60, 149, 255), rgb(20, 92, 205) 50%);
        background: -moz-radial-gradient(right top, circle cover, rgb(60, 149, 255), rgb(20, 92, 205) 50%);
        background: -webkit-radial-gradient(right top, circle cover, rgb(60, 149, 255), rgb(20, 92, 205) 50%);
        border-radius: 0;
        padding-right: 10px;
    }

    .navbar-header {
        height: 60px;
    }

    .navbar-toggle {
        margin-top: 11px;
    }

    .navbar {
        position: relative;
        min-height: 40px;
        /*margin-bottom: 20px;*/
        border: none;
    }
}

/* 响应式 大于分辨率1024px*/
@media only screen and (min-width: 770px) {
    .navbar-inverse {
        width: 100%;
        border-radius: 0;
        white-space: nowrap;
    }

    /*重写宽度*/
    .container {
        max-width: 1350px;
    }
}