@charset "utf-8";

/*子页面双头部主体布局*/
#outer {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	box-shadow: 0 0 8px gray inset;
}
/*头部样式*/
#outer>.outer_top {
	width: 100%;
	height: 50px;
	line-height: 50px;
	color: #999999;
	font-size: 12px;
	background-color: #FFFFFF;
	box-shadow: 0 -2px 2px gray inset;
}

#outer>.outer_top>.identiIcon {
	width: 40px;
	height: 40px;
	float: left;
	background: url(../img/right.png) border-box no-repeat center center;
	margin: 5px 10px 0 15px;
	background-size: 70%;
}

#outer>.outer_top>font {
	font-size: 18px;
	font-family: "隶书";
}

/*主体样式*/
#outer>.outer_con {
	width: 100%;
	position: absolute;
	top: 50px;
	bottom: 0;
	background-color: #FAFCFF;
}

/*主体头部*/
#outer>.outer_con>.outer_con_head {
	width: 100%;
	height: 60px;
	line-height: 50px;
	background-color: #F3F3F3;
	font-size: 18px;
	padding-left:20px;
	padding-right: 20px;
	overflow-y: hidden;
	overflow-x: auto;
    white-space: nowrap;
}
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
#outer>.outer_con>.outer_con_head::-webkit-scrollbar{
    height: 10px !important;
    width: 100%;
    /*width: 9px !important;*/
}
/*定义滚动条轨道 内阴影+圆角*/  
#outer>.outer_con>.outer_con_head::-webkit-scrollbar-track  {  
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.3);  
    border-radius: 0;  /*滚动条的背景区域的圆角*/
    background-color: #F1F1F1;/*滚动条的背景颜色*/  
}
/*定义滑块 内阴影+圆角*/
#outer>.outer_con>.outer_con_head::-webkit-scrollbar-thumb {
    border-radius: 0;
    border-style: dashed;
    background-color: rgba(157, 165, 183, 0.4);
    border-color: transparent;
    border-width: 1.5px;
    background-clip: padding-box;
}
/*定义鼠标滑上去的效果*/
#outer>.outer_con>.outer_con_head::-webkit-scrollbar-thumb:hover {
    /*height: 16px !important;*/
    /*width: 9px !important;*/
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer !important;
}


.outer_con_head_type{
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 0;
}
.outer_con>.outer_con_head>.unit{
    color: gray;
    font-size: 12px;
}
/*内容显示区*/
#outer>.outer_con>.outer_con_main {
	width: 100%;
	position: absolute;
	top: 60px;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: auto;
	padding: 15px;
}

/*媒体 查询，子页面标题过长就换行显示*/
/*@media only screen and (max-width: 1300px) {
	#outer>.outer_con>.outer_con_main {
		width: 100%;
		position: absolute;
		top: 100px;
		left: 0;
		right: 0;
		bottom: 0;
		overflow: auto;
		padding: 15px;
	}
	
	#outer>.outer_con>.outer_con_head {
		width: 100%;
		height: 100px;
		line-height: 50px;
		overflow: hidden;
		background-color: #F3F3F3;
		font-size: 18px;
		padding-left:20px;
	}
}*/


/*子页面单头部主体布局*/
#single {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	box-shadow: 0 0 8px gray inset;
}

#single>.single_top {
	width: 100%;
	height: 50px;
	line-height: 50px;
	box-shadow: 0 -2px 2px gray inset;
}

#single>.single_top>.identiIcon {
	width: 16px;
	height: 16px;
	float: left;
	background: url(../img/bar_ico.png) border-box;
	margin: 17px 15px 0 15px;
}

#single>.single_top>font {
	font-size: 18px;
}

#single>.single_con {
	width: 100%;
	position: absolute;
	top: 50px;
	bottom: 0;
	background-color: #FAFCFF;
}
#ta{
    margin-bottom: 0px;
}
/*表格隔行变色*/    
#demoContent>tr:nth-child(even) {
	background-color: #D1F2F5;
}
#ta>tfoot>tr>td{
    padding: 0;
}
table thead{
    background: #F5E9E9;
}
table>thead>th,table>thead>tr>th,table>tbody>tr>td{
    text-align: center;
}
table>thead>tr>th,table>tbody>tr>td{
    vertical-align:middle !important;
}
table th,table td {
    border: 1px solid #ddd !important;
}
.table thead>tr>th, .table tbody>tr>th, .table tfoot>tr>th, .table thead>tr>td, .table tbody>tr>td, .table tfoot>tr>td{
    padding: 4px;
}

ul.ztree {
    border: 1px solid #617775;
    background: #f0f6e4;
    margin-top:0; 
    width:350px; 
    height: 300px;
    overflow-y:scroll;
    overflow-x:auto;
}
.menuContent{
    display:none;
    position: absolute;
    z-index: 999;
    top: 45px;
}
#outer>.outer_con>.outer_con_head>input[type="text"]{
    width: 135px;
    height: 30px;
    padding-left: 5px;
    line-height: 30px;
    vertical-align: middle;
}

/*公共样式*/
.button{
	display: inline-block;
    padding: 0 5px;
    height: 32px;
    line-height: 32px;
    background-color: #f1f1f1;
    border: 1px solid #c2c2c2;
    border-radius: 3px;
    color: #000;
    font-size: 14px;
    cursor: pointer;
    margin-right: 6px;
}
.button>.iconfont{
	width: 20px;
	height: 20px;
	border: 1px solid gray;
	border-radius: 50%;
	text-align: center;
}
/*表格模板样式---站点管理，用户管理*/
.comta{
	margin-top: 15px;
	width: 100%;
	background-color: #FFFFFF;
}
.comta tr:first-child{
	border-top: 3px solid gray;
}
.comta tr>td:first-child{
	background-color: #F3F3F3;
}
.comta input[type="text"],
.comta input[type="password"]{
	width: 180px;
	height: 35px;
	line-height: 35px;
	padding-left: 15px;
	float: left;
}
.tableWarn{
	line-height: 35px;
	float: left;
	margin-left: 10px;
}

.btn{
    margin-right: 10px;
		outline: none !important;
		border: none;
}

/*chart容器提示样式*/
.chartBoxWran{
	width: 100%;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	background-color: #F5E9E9;
	border: 1px solid #ddd;
}
/*chart容器为查询到数据时增加提示样式*/
.chartBoxWranColor{
	color: red;
}

/*表格模板样式---站点管理，用户管理*/
#hideTable{
    text-align: left;
    margin: 0;
    border-color: #DADADA;
}
.hideTable font{
    line-height: 35px;
    float: left;
    margin-left: 10px;
}
#addNew:hover,#addNew:active {
    background-color: #A0DACC;
    color: #fff;
}
/*body .addNewHead-class*/
body .addNewHead-class .layui-layer-title{
    background:#61C0CA; 
    color:#fff; 
    border: none;
}
body .addNewHead-class .layui-layer-btn{
    border-top: 1px solid #CFCFCF;
}

#chartBox{
    width: 100%;
    min-height: 500px;
    height: 100%;
}

/* 设置网格化菜单导航的站点input框的边框样式 */
#citySel {
	border: 1px solid rgb(153, 153, 153);
	outline: none;
}