/**
**静态页面的流程图共有样式
*/
*{
    font-family: "Arial","Microsoft YaHei","Pingfang SC","Helvetica Neue","Helvetica", "sans-serif";
}
a,a:link,a:hover{text-decoration: none;cursor: pointer;}
.t-dia{
	position: relative;
	height: 390px;
	width: 930px;
	margin: 0 auto;
}
.t-dia .tooltip-inner{
    background-color: #fff;
    border: solid 1px #3788ff;
    color: #666;
    padding: 10px;
}

.t-dia .tooltip.bottom .tooltip-arrow{
    border-bottom-color: #3788ff;
}
.t-pro-ele{
	position: absolute;
	width: 80px;
	height: 80px;
	font-size: 12px;
	text-align: center;
	z-index: 1;
}
.t-dia-dhsc .t-pro-ele{
    height: 64px;
}
.t-pro-ele.t-disabled{
    background:none;
}
.t-pro-ele:not(.t-disabled):hover{
    -webkit-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -o-transform:scale(1.1);
}
.t-pro-ele.t-mobile:hover{
    -webkit-transform:scale(1);
    -moz-transform:scale(1);
    -o-transform:scale(1);
}
.t-pro-ele >*{
	color: #333;
}
.t-pro-ele:not(.t-disabled):hover >*{
	color: #3788ff;
}

.t-pro-ele .ticonfont,
.t-pro-ele .ticon{
	font-size: 40px;
	/*color: #3788ff;*/
    color: #289be5;
}
.t-dia-dhsc .t-pro-ele .ticonfont,
.t-dia-dhsc .t-pro-ele .ticon{
    font-size: 30px;
}
.t-pro-ele.t-disabled .ticonfont,
.t-pro-ele.t-disabled .ticon,
.t-pro-ele.t-disabled .t-pro-text{
    color: #999;
}

.t-pro-ele .t-pro-text{
    padding: 8px 0;
}
.t-dia-dhsc .t-pro-ele .t-pro-text{
    line-height: 1;
    padding: 4px 0;
}
/*上箭头*/
.t-arrows-up:before{
    position: absolute;
    display: inline-block;
    border-left: 6px solid transparent;
    border-bottom: 6px solid #b1b1b1;
    border-right: 6px solid transparent;
    right: -5px;
    top: 0px;
    content: '';
}
/*下箭头*/
.t-arrows-down:after{
    position: absolute;
    display: inline-block;
    border-left: 6px solid transparent;
    border-top: 6px solid #b1b1b1;
    border-right: 6px solid transparent;
    right: -5px;
    bottom: 0px;
    content: '';
}
/*左边箭头*/
.t-arrows-left:before {
    position: absolute;
    display: inline-block;
    border-top: 6px solid transparent;
    border-right: 6px solid #b1b1b1;
    border-bottom: 6px solid transparent;
    left: -7px;
    top: -7px;
    content: '';
}
/*右边箭头*/
.t-arrows-right:after {
    position: absolute;
    display: inline-block;
    border-top: 6px solid transparent;
    border-left: 6px solid #b1b1b1;
    border-bottom: 6px solid transparent;
    right: -7px;
    top: -7px;
    content: '';
}
.t-line-h{/*通用横线，自己设置宽度*/
    position: absolute;
    height: 2px;
    border-top: dotted 2px #b1b1b1;
    background: none;
}
.t-line-v{/*通用竖线线，自己设置高度*/
    position: absolute;
    width: 0px;
    border-left: dotted 2px #b1b1b1;
    background: none;
}
