/*loading������*/
.loading_mask {
    position: fixed;
    _position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #000;
    filter: alpha(opacity=50);
    -moz-opacity: 0.1;
    -khtml-opacity: 0.1;
    opacity: 0.1;
    z-index: 9999990;
}

.loading {
    position: fixed;
    _position: absolute;
    top: 40%;
    left: 50%;
    margin-top: -20px;
    margin-left: -60px;
    z-index: 9999991;
    height: 40px;
    background-color: #FFF;
    padding-left: 10px;
    padding-top: 5px;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    box-shadow: 1px 2px 6px #b9b9ba;
}

.loading img {
    float: left;
}

.loading span {
    float: left;
    padding-top: 5px;
    line-height: 22px;
    padding-left: 10px;
    padding-right: 10px;
    font-size:16px;
}

.file_add {
    margin-top: 3px;
}

/**���������**/
.pg-system_prompt {
    font-size: 14px;
    position: absolute;
    z-index: 9999;
    top: -150px;
    left: 50%;
    /* width: 350px; */
    width: 360px;
    min-height: 44px;
    margin-left: -175px;
}

.pg-system_prompt .sucess {
    position: relative;
    padding: 14px 0px 14px 50px;
    color: #FFF;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background: #7CBC37 url("../images/prompt_sucess.png") no-repeat scroll 20px center;
}

.pg-system_prompt .error {
    position: relative;
    padding: 14px 50px;
    color: #FFF;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background: #DC352E url("../images/prompt_error.png") no-repeat scroll 20px center;
}

.pg-system_prompt .hide:hover {
    opacity: 1;
}

.pg-system_prompt .hide {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 20px;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    cursor: pointer;
    opacity: 0.5;
    background: transparent url("../images/prompt_hide.png") no-repeat scroll center center;
}
.errorMsg{
	font-size: 10px;
	color: red;
}

.selectCss { 
	width: 120px;
	text-align: center;
	border: 1px solid #d9d9d9;
	border-radius: 3px;
	height: 34px;
    margin-left: 20px;
    background: white;
}

/* 添加企业信息弹框*/
.selectCss1 { 
	width: 104px;
	height: 34px;
	text-align: center;
	line-height: 30px;
	font-size: 14px;
	border: 1px solid #d9d9d9;
	border-radius: 3px;    
	font-family: Arial,"圆体-简",Helvetica,sans-serif;
    color: #777;
}
 
/********************************服务参数设置弹框 ******************************************/ 
.pop-up2{
	width:420px;
	height:auto;
	background: #FFFFFF;
	position: absolute;
	left:50%;
	margin-top: 50px;
	margin-left: -210px;
	z-index: 999;
	border-radius:6px ;
}
.question-top2{
	width:370px;
	height: auto;
	margin-left:30px;
	margin-top:20px;
	border-bottom:1px solid #ccc ;
	padding-bottom: 10px;	
	margin-right:20px;
}
.question-top2 .tit{
	width:370px;
	font-size: 16px;
	color:#383838;
	font-weight: 600;
	letter-spacing: 4px;	
}
.question-top2 img{
	float: right;
}

/* CSS Tooltip */
[data-tooltip] {
	position: relative;
	cursor: pointer;
}

[data-tooltip]:hover::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	padding: 6px 10px;
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
	font-size: 12px;
	white-space: nowrap;
	border-radius: 4px;
	z-index: 1000;
	margin-bottom: 5px;
}

[data-tooltip]:hover::before {
	content: '';
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 5px solid transparent;
	border-top-color: rgba(0, 0, 0, 0.8);
	z-index: 1000;
}

