*, ::after, ::before {
    box-sizing: border-box;
}
*{
	margin: 0px;
	padding: 0px;
}
html,body{
	height: 100%;
	width: 100%;
	/* font-family: Microsoft YaHei; */
    font-family: Helvetica Neue,Helvetica,Arial,PingFang SC,Hiragino Sans GB,Heiti SC,Microsoft YaHei,WenQuanYi Micro Hei,sans-serif;
}

.hide{
	display: none;
}
 
.visual_container{
	width: 100%;
	height: 100%;
    display: flex;
    flex-direction: column;
}

.vis_container {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 10px;
}
.vis_container .vis_col { 
	margin-right: 10px;
} 
.vis_container .vis_col:last-child { 
	margin-right: 0px;
} 
.vis_container .vis_row{ 
	margin-bottom: 10px; 
}  
.vis_container .vis_row:last-child { 
	margin-bottom: 0px;
} 
 

.vis_col{
	display: flex;
	width: 100%;
	height: 100%;
	/* flex: 1; */
    flex-direction: column;
}

.vis_row {
	display: flex;
	width: 100%;
	height: 100%;
	/* flex: 1; */
    flex-direction: row;
} 


.vis_item{
	width: 100%;
	height: 100%;
	/* flex: 1; */
	display: flex;
	/* justify-content: center;
	align-items: center; */ 
	flex-direction: column;
} 
.vis_item_body{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	height: calc(100% - 40px);
} 
.vis_item_body_style_clear{
	height: 100%;
	border:none !important;
}
.vis_row .vis_item{
	margin-right: 10px;
}
.vis_row .vis_item:last-child{
	margin-right: 0;
}
.vis_col .vis_item{
	margin-bottom: 10px;
	/* overflow: auto; */
	/* overflow-x: hidden;
    overflow-y: hidden; */
}
.vis_item{
	overflow-y: hidden;
	overflow-x: hidden;
}
.vis_col .vis_item:last-child{
	margin-bottom: 0;
}
.vis_item .visual{
	/* height: calc(100% - 36px); */
} 


.visual{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
} 
.vis_line_1{
	width: 100%;
	height: 100%;
}

.temp_container{
    background: #050b28;
    width: 100%;
    height: 100%;
}


/*滚动条样式*/
::-webkit-scrollbar {/*滚动条整体样式*/
    width: 10px;     /*高宽分别对应横竖滚动条的尺寸*/
    height: 10px;
}
::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(80, 102, 214, 0.6);
    background: rgba(80, 102, 214, 0.6);
}
::-webkit-scrollbar-track {/*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 0;
    background: rgba(0,0,0,0.1);
} 

/*滚动条样式*/

.vis_chart {
    width: 100%;
    height: 100%;
}

.mt5{
	margin-top: 5px;
}
.mt10{
	margin-top: 10px;
}
.mt20{
	margin-top: 20px;
}

/*表单样式*/
.form_detail {
    padding: 25px;
}
.form_line {
    display: flex;
    justify-content: space-between;
   /*  width: 750px; */
    margin-bottom: 20px;
}
.form_line_left,.form_line_right {
    width: 100%;
    display: flex;
    align-items: center;
}
.form_input_val .lls-input-1,.form_input_val .lls-select-1,.form_input_val .lls-textarea-1{
	width: 100%;
}
#area select {
    width: auto;
}
.form_input_title {
    display: inline-block;
    min-width: 80px;
    text-align: right;
}
.form_input_val {
    display: inline-block;
    flex-grow: 8;
    position: relative;
} 
.required{
	color: red;
    vertical-align: middle;
    margin-right: 5px;
    font-size: 20px;
    margin-bottom: -6px; 
    display: inline-block;
}
.extra-data{
	margin-left: 10px;
	margin-top: 24px;
	color: red;
}
.form_btns {
    display: flex;
    justify-content: center;
    width: 100%;
}
/*表单样式*/ 

/*lls*/
.lls-btn-2{
	background: #ea3e23;
}
.lls-btn-1{
	background: #008af0;
}
.lls-btn-1:hover{
	background: #008af0;
} 
.lls-btn-1:focus{
	background: #008af0;
}
/*lls*/

.lgbtn{
	background: #e93f21 ;
	color: #fff;
	opacity: 0.9;
	cursor: pointer;
	height: 32px;
    border-radius: 3px;
    padding: 2px 10px;
    font-size: 12px;
}

.lgbtn:HOVER{
	outline: 0 ;
	opacity: 1;
	box-shadow:none;
}
.lgbtn:FOCUS{
	box-shadow:none;
	outline: 0 ;
} 
.lgbtn:active {
	box-shadow:none;
	outline: 0 ;
}

.menu_option {
    width: 106px;
    height: 35px;
    line-height: 35px;
    background: #fff;
    text-align: center;
    font-size: 15px;
    cursor: pointer;
    color: #333;
}
/* 组件样式 */




/* 组件样式 */  
/*常用颜色集*/
.lsp_color_success{
	color:#3ac25f;
}
.lsp_color_warning{
	color:#ff783d;
}
.lsp_color_error{
	color:#ff2442;
}
/*常用颜色集*/