/**
 * nth-tabs
 * author:nethuige
 * version:2.0
*/

.nth-tabs {
	color: #76838f;
	font-family: "Helvetica Neue",Helvetica,Tahoma,Arial,"Microsoft Yahei","Hiragino Sans GB","WenQuanYi Micro Hei",sans-serif;
	border: 1px solid #E4EAEC !important;
}

.nth-tabs .page-tabs {
	width: 100%;
	height: 42px;
	background: #fafafa;
	line-height: 40px;
	position: relative;
}

.nth-tabs .content-tabs {
	width: 100%;
	position: relative;
	height: 42px;
	background: #fafafa;
	line-height: 40px;
	overflow: hidden;
}

.nth-tabs .content-tabs-container {
	width: 100000px;
	margin-left: 40px;
	overflow: hidden;
	height: 42px;
	transition: margin-left 1s;
	-moz-transition: margin-left 1s;
	-webkit-transition: margin-left 1s;
	-o-transition: margin-left 1s;
}
.tab-content{
	overflow: auto;
}
.nth-tabs,.tab-content,.tab-pane{
	height: 100%;
	/*height: calc(100% - 42px);*/
}
.nth-tabs-content{
	width:100%;
	height: calc(100% - 42px);
	position: relative;
	overflow-x: hidden;
}
.nth-tabs-frame{
	width:100%;
	height: calc(100% - 42px);
	position: relative;
	overflow-x: hidden;
}


/*选项卡操作相关*/
.nth-tabs .roll-nav {
	position: absolute;
	width: 40px;
	height: 42px;
	text-align: center;
	color: #999;
	background-color: #FFFFFF;
	z-index: 2;
	top: 0;
}

.nth-tabs a.roll-nav:hover {
	color: #797979 !important;
}

.nth-tabs a.roll-nav:active,.nth-tabs a.roll-nav:visited {
	color: #95A0AA;
}

.nth-tabs .roll-nav-left {
	left: 0;
	border-bottom: 1px solid #E4EAEC;
}

.nth-tabs .roll-nav-right {
	right: 40px;
	border-bottom: 1px solid #E4EAEC;
}

.nth-tabs .tab-close {
	position: absolute;
	top: 13px;
	right: 10px;
	width: 16px;
	height: 16px;
	text-align: center;
	line-height: 16px;
	color: #95A0AA;
}

.nth-tabs .tab-close:hover {
	background-color: #f96868;
	border-radius: 16px;
	color: #fff;
	cursor: pointer;
}

.nth-tabs .tab-down{
	border-top: 4px solid;
	-webkit-transition: .25s;
	-o-transition: .25s;
	transition: .25s;
	-webkit-transform: scale(1.001);
	-ms-transform: scale(1.001);
	-o-transform: scale(1.001);
	transform: scale(1.001);
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 2px;
	vertical-align: middle;
	border-top: 4px dashed;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}

/*tab list*/
.nth-tabs .right-nav-list {
	right: 0;
	/*border-left: 1px solid #E4EAEC;*/
	border-bottom: 1px solid #E4EAEC;
}

.nth-tabs .right-nav-list a {
	color: #999;
}

.nth-tabs .right-nav-list a:hover {
	color: #797979;
	text-decoration: none;
}

.tab-list-scrollbar {
	max-height: 250px;
	max-width: 180px;
}
.nth-tabs .dropdown-menu{
	z-index: 99999999 !important;
	left: -141px !important;
}

.nth-tabs .dropdown-menu ul {
	list-style: none;
	margin: 0px;
	text-align: left;
	padding: 0px;
}

.nth-tabs .dropdown-menu ul li {
	line-height: 30px;
	padding: 0px 20px;
	white-space: nowrap;
}

.nth-tabs .dropdown-menu ul li:hover {
	background-color: #ececec;
	cursor: pointer;
}

.scrollbar-outer {
	overflow: hidden;
}


/*重写tab*/
.nth-tabs .nav-tabs {
	background-color: bisque;
	border-bottom: 1px solid #E4EAEC!important;
}

.nth-tabs .nav-tabs a {
	color: #76838f;
	border-radius: 0;
}

.nth-tabs .nav-tabs>li{
	/*width:8.1em; */
	margin-top: 0px;
}

.nth-tabs .nav-tabs>li>a {
	border-radius: 0;
	margin-right: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-right:25px;
	padding-left: 10px;
	text-align: center;
}

.nth-tabs .nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
	border-top:1px solid transparent;
	border-bottom: 1px solid #E4EAEC;
	border-left:1px solid #E4EAEC;
	border-right:1px solid #E4EAEC;
	background-color: #F1F4F5;
	color: #76838f;
	-webkit-transition-property: background-color,border-bottom;
	-webkit-transition-duration: 0.2s;
	-webkit-transition-timing-function: ease;
	-moz-transition-property: background-color,border-bottom;
	-moz-transition-duration: 0.2s;
	-moz-transition-timing-function: ease;
	-o-transition-property: background-color,border-bottom;
	-o-transition-duration: 0.2s;
	-o-transition-timing-function: ease;
}

.nth-tabs .nav>li>a:focus, .nav>li>a:hover {
	background-color: #F3F7F9;
}

/*animation*/

[class*=animation-] {
	-webkit-animation-duration: .5s;
	-o-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-timing-function: ease-out;
	-o-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}
.animation-fade {
	-webkit-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-duration: .8s;
	-o-animation-duration: .8s;
	animation-duration: .8s;
	-webkit-animation-timing-function: linear;
	-o-animation-timing-function: linear;
	animation-timing-function: linear;
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

