/* 去除组件边框 */
.form-control {
	box-shadow: none;
}
/* 去掉bootstrap表单空间获得焦点时四周的闪光阴影 */
.form-control:focus,
.has-success .form-control:focus,
.has-warning .form-control:focus,
.has-error .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form-control {
	border-radius: 0;
    height: 45px;
}
.form-horizontal .control-label {
    padding-top: 13px;
}
.btn {
	height: 45px;
	border-radius: 0;
}
.btn.active, .btn:active {
    -webkit-box-shadow: none;
    box-shadow: none;
}
label {
	font-weight: 350;
	margin-bottom: 0;
}

.nav-tabs {
    border-bottom: none;
}

.nav>li>a {
    display: inline-block;
    padding-left: 0;
    padding-right: 0;
}

.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
    background-color: transparent;
    border: none;
    color: #239aff;
    border-bottom: 2px solid #239aff;
}