@charset "utf-8";
/* CSS Document */
html,body,*{
	margin:0;
	padding:0;
	box-sizing:border-box;
	/*font-family:"微软雅黑",Verdana, Geneva, sans-serif;*/
	font-family:arial, "Microsoft YaHei", "\5fae\8f6f\96c5\9ed1";
	font-size:14px;
	color:#333;
}
body,html{
	min-height: 100%;
	background-color:#fff;
}
ul,li{
	list-style: none;
}
a{
	text-decoration: none;
	color: inherit;
}

.form-control {
	height: 35px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s
}

.form-control:focus {
	border-color: #66afe9;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)
}

.form-control::-moz-placeholder {
	color: #999;
	opacity: 1
}

.form-control:-ms-input-placeholder {
	color: #999
}

.form-control::-webkit-input-placeholder {
	color: #999
}

.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control {
	background-color: #eee;
	opacity: 1
}

.form-control[disabled],fieldset[disabled] .form-control {
	cursor: not-allowed
}

textarea.form-control {
	height: auto
}

input,select{
	/*-webkit-appearance: none*/
	padding:0;
}

/*黑色的提示筐*/
.tip-wraper{
	top:50%;
	left:50%;
	z-index:5;
	position:absolute;
	display:none;
}
.tip-message{
	border:1px solid #ccc;
	background-color:#333;
	color:#fff;
	font-size:16px;
	text-align:center;
	position:relative;
	top:-30px;
	left:-50%;
	border-radius:10px;
	padding:8px 20px 8px 20px;
	line-height:25px;
}
/*黑色的提示筐end*/

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}
	66% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	66% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.error-tips {
	position: fixed;
	top: 50%!important;
	left: 50%;
	margin-top: -50px;
	margin-left: -120px;
	width: 240px;
	height: auto;
	padding: 10px 20px;
	line-height: 20px;
	font-size: 14px;
	color: #fff;
	text-align: center;
	border-radius: 3px;
	background-color: rgba(0, 0, 0, 0.8);
	word-wrap:break-word;
	z-index: 99999;
}

.error-tips.fade-out {
	-webkit-animation: fadeOut 2s ease-in-out;
	animation: fadeOut 2s ease-in-out;
}
.show{
	display: block;
}
.hide{
	display: none;
}

/**loading开始*/
.loading{
	position: fixed;
	z-index: 500;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:rgba(0,0,0,0.5) ;
}
.loader-inner{
	text-align: center;
	position: absolute;
	width: 100%;
	top: 50%;
	margin-top: -22px;
}
@-webkit-keyframes line-scale {
	0% {
		-webkit-transform: scaley(1);
		transform: scaley(1); }

	50% {
		-webkit-transform: scaley(0.4);
		transform: scaley(0.4); }

	100% {
		-webkit-transform: scaley(1);
		transform: scaley(1); } }
@keyframes line-scale {
	0% {
		-webkit-transform: scaley(1);
		transform: scaley(1); }

	50% {
		-webkit-transform: scaley(0.4);
		transform: scaley(0.4); }

	100% {
		-webkit-transform: scaley(1);
		transform: scaley(1); } }
.line-scale > div:nth-child(1) {
	-webkit-animation: line-scale 1s 0.1s infinite cubic-bezier(.2, .68, .18, 1.08);
	animation: line-scale 1s 0.1s infinite cubic-bezier(.2, .68, .18, 1.08); }
.line-scale > div:nth-child(2) {
	-webkit-animation: line-scale 1s 0.2s infinite cubic-bezier(.2, .68, .18, 1.08);
	animation: line-scale 1s 0.2s infinite cubic-bezier(.2, .68, .18, 1.08); }
.line-scale > div:nth-child(3) {
	-webkit-animation: line-scale 1s 0.3s infinite cubic-bezier(.2, .68, .18, 1.08);
	animation: line-scale 1s 0.3s infinite cubic-bezier(.2, .68, .18, 1.08); }
.line-scale > div:nth-child(4) {
	-webkit-animation: line-scale 1s 0.4s infinite cubic-bezier(.2, .68, .18, 1.08);
	animation: line-scale 1s 0.4s infinite cubic-bezier(.2, .68, .18, 1.08); }
.line-scale > div:nth-child(5) {
	-webkit-animation: line-scale 1s 0.5s infinite cubic-bezier(.2, .68, .18, 1.08);
	animation: line-scale 1s 0.5s infinite cubic-bezier(.2, .68, .18, 1.08); }
.line-scale > div {
	background-color: #fff;
	width: 4px;
	height: 35px;
	border-radius: 2px;
	margin: 2px;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	display: inline-block;
}
/*loading结束*/

.main-w{
	width:1280px;
	margin:0 auto 0 auto;
}
@media (min-width: 1360px) {
	.main-w{
		width:1366px;
		margin:0 auto 0 auto;
	}
}
.page-title{
	height: 55px;
	line-height: 53px;
	padding-left:40px;
	border-bottom:2px solid #3988fb;
	position: relative;
	font-size: 16px;
}
.page-title:before{
	content: '';
	width:16px;
	height:16px;
	position: absolute;
	top:19px;
	left:10px;
	background-image: url(../images/date.png);
}
.op-link{
	color: #3988fb;
	cursor: pointer;
	text-decoration: none;
}
.op-unlink{
	cursor: pointer;
	text-decoration: none;
}
.op-link.track {
	color: #3988FB;
	padding-left: 20px;
	position: relative;
}
.op-link.track:before {
	content: '';
	width: 16px;
	height: 14px;
	position: absolute;
	top: 2.5px;
	left: 0;
	background-image: url(../images/track.png);
}
.logo-n{
	width:155px;
	text-indent:-999999px;
/*	font-size: 26px;
	color: #656565;*/
	height: 53px;
	line-height: 53px;
	padding-left: 50px;
	position: absolute;
	top: 14px;
}
.logo-i{
	background-image: url(../images/logo_nnn.png);
  	background-repeat:no-repeat;
  	background-position:center left;
}
.nav-menu-n{
	height:80px;
	background-color:#fff;
	border-bottom:1px solid #ddd;
}
.pr h80{
	position: relative;height:79px;
}

#menuBox a.selected:before{
	content:'';
	display: block;
	position: absolute;
	width: 100%;
	left:0;
	top:0;
	height: 4px;
	background-color: #3385ff;
}

.right-area{
	float:right;
	width:880px;
}

.sub-menu{
	display: none;
}
.sub-menu-item{
	height: 50px;
	line-height: 50px;
}
.sub-menu-item a{
	font-size:16px;
	height: 50px;
	padding-left:50px;
	cursor: pointer;
}
.sub-menu-item.selected,.sub-menu-item:hover{
	background-color:#f2f2f2;
}
.user-info-head{
  background-image:url(../images/head.png);
  background-repeat:no-repeat;
  background-position:center;
}

.user-info-arrow{
  background-image:url(../images/down-arrow.png);
  background-repeat:no-repeat;
  background-position:center;
}
.region-title{
}
.region-title .region-collect{
	display: inline-block;
	width: 740px;
	margin-top:10px;
	/*height: 20px;*/
	line-height: 20px;
}
.region-title .region-collect .inline{
	float: left;
	height: 40px;
	text-align: center;
}
.region-title .region-collect .title{
	color: #3385FF;
	cursor: pointer;
	float: left;
	padding-bottom: 5px;
}
.region-title .region-detail{
	position: relative;
	padding-left: 40px;
	padding-right: 20px;
}
.region-title .region-detail ul li{
	float: left;
	height: 40px;
	/*width: 120px;*/
	padding: 0 10px;
	line-height: 40px;
	text-align: center;
	color: #3385FF;
	cursor: pointer;
}
.region-title .region-detail .single{
	height: 40px;
	overflow: hidden;
}
.region-title .region-detail .multi{
	height: auto;
}
.region-title .region-detail .open{
	position: absolute;
	top: 0;
	right: 0;
	width: 20px;
	height: 40px;
	background: url("../images/right-arrow.png") no-repeat center;
	cursor: pointer;
}
.region-title .clr{
	visibility: hidden;
	display: block;
	overflow: hidden;
	clear: both;
	height: 0;
	line-height: 0;
	font-size: 0;
}
.region-title .title-menu{
	float: right;
	height: 40px;
	line-height: 40px;
}
.region-title .title-menu div{
	display: inline-block;
	cursor: pointer;
}
.region-title .title-menu .all{
	margin: 0 5px;
	color: #3385FF;
}
.region-title .title-menu .keynote{
	margin: 0 5px;
	color: #dedede;
}

.full-screen{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 100;
}

.full-btn{
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top:-10px;
	cursor: pointer;
	width: 20px;
	height: 20px;
	background-image:url('/safe/images/max.png');
	background-position: center center;
	background-size: 16px 16px;
	background-repeat: no-repeat;
}
.full-btn.reset{
	background-image:url('/safe/images/min.png');
}

/* 展开/收起 */
.search-form span.moreQuery{
    margin-left: 20px;
}
.search-form span.moreQuery i{
    margin-left: 5px;
}
.search-form span.moreQuery,
.search-form span.moreQuery i{
    color: #007aff;
    cursor: pointer;
}