/*全局设置*/
* {
  	margin: 0;
  	padding: 0;
}
[v-cloak] {
	display: none;
}
#m-app {
  	height: 100%;
	width: 1300px;
	margin: auto;
  	box-sizing: border-box;
	position: relative;
}
.tit{
	text-align: center;
	margin:20px auto;
	color: #333;
}
.m-p-input-container {
  	display: flex;
}
.m-p-input-container input {
	box-sizing: border-box;
  	flex: 1;
  	margin-bottom: 20px;
  	display: block;
  	width: 280px;
  	padding: 10px;
	height: 50px;
  	font-size: 16px;
  	border-radius: 4px;
  	box-shadow: none;
  	color: #444444;
  	border: 1px solid #cccccc;
	outline: none;
}
.m-p-input-container .range-input {
  	margin-left: 10px;
  	flex: 0 0 100px;
  	width: 100px;
}
.m-p-input-container div {
  	position: relative;
	text-align: center;
  	display: inline-block;
  	margin-left: 10px;
	width: 150px;
  	height: 50px;
  	line-height: 50px;
  	font-size: 18px;
  	color: white;
  	cursor: pointer;
  	border-radius: 4px;
  	border: 1px solid #eeeeee;
  	background-color: #3D8AC7;
  	opacity: 1;
  	transition: 0.3s all;
}
.m-p-input-container div:hover {
  	opacity: 0.8;
}
.m-p-input-container .disable {
  	cursor: not-allowed;
  	background-color: #a5a5a5;
}
/*下载状态*/
.m-p-line {
  	margin: 20px 0 30px;
  	vertical-align: top;
  	width: 100%;
	height: 1px;
  	border-bottom: 2px dotted #666;
}
.m-p-tips {
  	width: 100%;
  	color: #999;
  	text-align: left;
  	word-break: break-all;
}
.m-p-tips p {
  	width: 100px;
  	display: inline-block;
}
.m-p-tips.error-tips {
  	color: #DC5350;
}
.m-p-segment {
	position: relative;
	margin-left: -6px;
  	text-align: left;
}
.m-p-segment .item {
  	display: inline-block;
  	margin: 10px 6px;
  	width: 50px;
  	height: 40px;
  	color: white;
  	line-height: 40px;
  	text-align: center;
  	border-radius: 4px;
  	cursor: help;
  	background-color: #ddd;
  	transition: 0.3s all;
}
.m-p-segment .finish {
	background-color: #0ACD76;
}
.m-p-segment .error {
  	cursor: pointer;
  	background-color: #DC5350;
}
.m-p-segment .error:hover {
  	opacity: 0.9;
}
.m-p-stream,.m-p-report,.m-p-cross,.m-p-final {
  	margin-top: 10px;
  	display: inline-block;
  	width: 100%;
  	height: 50px;
  	line-height: 50px;
  	font-size: 20px;
  	color: white;
  	cursor: pointer;
  	border-radius: 4px;
  	border: 1px solid #eeeeee;
  	background-color: #3D8AC7;
  	opacity: 1;
  	transition: 0.3s all;
}
.m-p-stream {
  	background-color: #0ACD76 !important;
}
.m-p-report {
  	background-color: #e74c3c !important;
  	text-decoration: none;
}
.m-p-final {
  	text-decoration: none;
}
.m-p-force,.m-p-retry {
  	position: absolute;
  	right: 0px;
  	display: inline-block;
  	padding: 6px 12px;
  	font-size: 18px;
  	color: white;
  	cursor: pointer;
  	border-radius: 4px;
  	border: 1px solid #eeeeee;
  	background-color: #3D8AC7;
  	opacity: 1;
  	transition: 0.3s all;
}
.m-p-retry {
  	right: 250px;
}
.m-p-force:hover,.m-p-retry:hover {
  	opacity: 0.9;
}
.examp{
	margin: 15px 0;
}
.examp h3{
	margin-bottom: 10px;
	color: #333;
}
.examp p{
	margin-bottom: 10px;
	border-radius: 5px;-webkit-border-radius: 5px;
	background: #f1f2f3;padding: 15px;font-size: 13px;color: #666;color: #555;line-height: 24px;
}
@keyframes upAnimation {
  	0% {
  		transform: rotate(0deg);
  		transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
  	}

  	10% {
  		transform: rotate(-12deg);
  		transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
  	}

  	20% {
  		transform: rotate(12deg);
  		transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
  	}

  	28% {
  		transform: rotate(-10deg);
  		transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
  	}

  	36% {
  		transform: rotate(10deg);
  		transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
  	}

  	42% {
  		transform: rotate(-8deg);
  		transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
  	}

  	48% {
  		transform: rotate(8deg);
  		transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
  	}

  	52% {
  		transform: rotate(-4deg);
  		transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
  	}

  	56% {
  		transform: rotate(4deg);
  		transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
  	}

  	60% {
  		transform: rotate(0deg);
  		transition-timing-function: cubic-bezier(0.755, .5, .855, .06)
  	}

  	100% {
  		transform: rotate(0deg);
  		transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
  	}
}