/**
 * 进度条(伪)插件[类] 样式
 * @author deason
 */

/* 遮罩层 */
.dprogress-shade{ 
	background-color: rgba(0,0,0,0.1); 
	width: 100%; 
	height: 100%; 
	position: fixed; 
	top: 0; 
	left: 0; 
}
/* 主体容器 */
.dprogress-layer{ 
	/*width: 98%;*/
	font-family: "微软雅黑";
	margin: auto; 
	padding: 10px 10px 0; 
	/*border: 1px solid #aaa; */
	/*border-radius: 5px; */
	/*background: #fefefe; */
    /*box-shadow: 1px 1px 30px rgba(0,0,0,.2);*/
}
/* 浮动模式 */
.dprogress-layer-float{ 
	max-width: 600px; 
	position: fixed; top:30%; left: 50%; 
	transform: translateX(-50%); 
}
/* 插入模式 */
.dprogress-layer-insert{ 
	max-width: none; 
	position: static; 
}
/* 提示内容框 */
.dprogress-tips{ padding: 0 10px; }
/* 关闭按钮 */
.dprogress-close{ 
	position: absolute; right: -10px; top: -10px; 
	border: 1px solid #666; 
	color: #666; text-align: center;
	width: 28px; height: 28px; line-height: 27px;
	background: #efefef;
	border-radius: 50%;
	cursor: pointer;
}
.dprogress-close:hover{
	color: #000;
	border-color: #000;
	background-color: #ccc;
}
/* 进度槽 */
.dprogress-box{
	height: 20px;
	overflow: hidden;
	position: relative; 
	margin: 10px 0;
	border-radius: 4px;
	/*box-shadow: inset 0 -1px 2px rgba(0, 0, 0, .1);*/
	/*background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 50%, #ebebeb 100%); */
	box-shadow: inset 0 0 1px 1px #e6e6e6;
	background-color: #eceeef;
}
/* 进度条 */
.dprogress-bar{ 
	width: 0%; 
	height: 100%;
	float: left;
	background-color: #5cb85c;
	background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
	background-size: 20px 20px;
	box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
	transition: width .6s ease;
	animation: progress-bar-stripes 1s linear infinite;
}
/* 进度值 */
.dprogress-percent{ 
	position: absolute; 
	right: 5px; 
	color: #fff; 
	line-height: 20px;
	text-shadow: 0 0 10px #000; 
}