/**************
* @made by kami;
**************/
@charset "utf-8";
*{
	padding:0;
	margin:0;
}
/* html{ 
	-webkit-filter: grayscale(100%); 
	-moz-filter: grayscale(100%); 
	-ms-filter: grayscale(100%); 
	-o-filter: grayscale(100%);
	filter: grascale(100%);
	filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);  
	_filter:none; 
} */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, em {
	padding: 0;
	margin: 0;
	outline: none
}
table {
	border-collapse: collapse;
	border-spacing: 0
}
table tbody .nodata,p.nodata{
	padding: 50px 0;
	text-align: center;
	font-size: 14px;
	height: 30px;
	line-height: 30px;
}
fieldset,img {
	border: 0;
	font-size:12px;
}
address, caption, cite, code, dfn, em, th, var, i {
	font-weight: normal;
	font-style: normal
}
ol, ul, li {
	list-style: none
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	font-size: 100%
}
input, img {
	border: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section ,dialog{ 
    display: block;
}
/* :root{
	--bg: #f0f1f3;
	--black: #000;
	--top: #292d3a;
	--white: #fff;
	--text: #333;
	--label: #666;
	--red: #ff1010;
	--gray: #ccc;
	--audit: #bbb;
	--more: #999;
	--showdown: #eee;
	--yellow: #fec714;
	--reg: #ffeeb5;
	--table: #f4f4f4;
	--hovertable: #e1e1e1;
	--btnstart: #ffde43;
	--blue: #107bff;
	--orange: #fd8713;
	--green: #2bbb17;
} */
/*Global*/
/*禁止苹果系统所有默认样式*/
html,body{-webkit-text-size-adjust:none;}/*去除苹果设备下浏览器默认按钮样式与背景*/
*:focus {outline: none}/*禁止所有聚焦边框*/
input,input[type=button],textarea {-webkit-appearance:none;outline: none;}/* 屏蔽文本框高亮 */
/*禁止苹果系统所有默认样式*/
body {
	font-size: 0;
	line-height: 0;
	color: #333;
	text-align: center;
	background: #fff;
}
a,a:visited{
	text-decoration: none;
	color: #333;
	outline: none;
	transition:all 0.25s ease 0.1s;
}
a:hover {
	text-decoration: none;
}
/*按下时的样式*/
a:active  {
	text-decoration: none;
}
/*清除浮动*/
.clear{
	clear: both;
}
input,textarea{
    border: 1px solid #ccc;
    padding: 0 10px;
    border-radius: 3px;
}
input:focus,textarea:focus{
	box-shadow: 0 0 5px #ccc;
}
::-webkit-input-placeholder { /* WebKit browsers */
	color: #999;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	color: #999;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
	color: #999;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
	color: #999;
} 
.error input,.error .selected{
	box-shadow: 0 0 5px #ff1010;
	border-color: #ff1010;
}
/*加载*/
.loading{
	text-align: center;
	padding: 20px 0;
}
/*数据提交等待*/
.waiting{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, .5);
	z-index: 99;
}
.waiting .wrap{
	position: relative;
	top: 45%;
	margin: -38px 0 0 0;
}
.waiting .wrap img{
	height: 26px;
}
.waiting .wrap h1{
	line-height: 50px;
	height: 50px;
	color: #fff;
	font-size: 18px;
}
.waiting .wrap h1 span{
	display: inline-block;
	margin: 0 2px;
	animation: waiting 1.2s linear infinite;
}
.waiting .wrap h1 span:nth-child(1){
	animation-delay: 0s;
}
.waiting .wrap h1 span:nth-child(2){
	animation-delay: 0.2s;
}
.waiting .wrap h1 span:nth-child(3){
	animation-delay: 0.4s;
}
.waiting .wrap h1 span:nth-child(4){
	animation-delay: 0.6s;
}
.waiting .wrap h1 span:nth-child(5){
	animation-delay: 0.8s;
}
@keyframes waiting{
	0%, 40%, 100%{
		color: #fff;
		transform: scale(1);
	}
	20%{
		color: #40d467;
		transform: scale(1.3);
	}
}
.waiting .wrap p span{
	width: 5px;
	height: 5px;
	display: inline-block;
	margin: 0 2px;
	background: #40d467;
	animation: waitingspan 1.2s ease-in-out infinite;
}
.waiting .wrap p span:nth-child(1){
	animation-delay: 0s;
}
.waiting .wrap p span:nth-child(2){
	animation-delay: 0.1s;
}
.waiting .wrap p span:nth-child(3){
	animation-delay: 0.2s;
}
.waiting .wrap p span:nth-child(4){
	animation-delay: 0.3s;
}
.waiting .wrap p span:nth-child(5){
	animation-delay: 0.4s;
}
@keyframes waitingspan{
	0%, 40%, 100% {
		opacity: 0;
		transform: scaleY(1);
	}
	20% {
		opacity: 1;
		transform: scaleY(3.5);
	}
}
/*系统提示*/
.systemMessage{
	position: fixed;
	max-width: 80%;
	background: rgba(0, 0, 0, .5);
	top: -100%;
	left: 0;
	color: #fff;
	padding: 30px 20px;
	border-radius: 5px;
	box-sizing: border-box;
	font-size: 16px;
	z-index: 99;
	line-height: 20px;
}
.systemTips{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .5);
	z-index: 98;
}
.systemTips .wrap{
	width: 86%;
	margin: 0 auto;
	top: 45%;
	position: relative;
	animation: systemTips 0.2s ease;
	max-width: 600px;
	border-radius: 10px;
	background: #fff;
}
@keyframes systemTips{
	0%{
		transform: scale(.1)
	}
	100%{
		transform: scale(1)
	}
}
.systemTips .wrap .close{
	position: absolute;
	right: 17px;
	top: 17px;
	width: 16px;
	height: 16px;
	line-height: 50px;
	font-size: 0;
	background: url(../images/icon.png) no-repeat -761px -104px;
}
.systemTips .wrap .close img{
	vertical-align: middle;
	height: 16px;
}
.systemTips .wrap .title{
	background: #40d467;
	color: #fff;
	font-size: 18px;
	height: 50px;
	line-height: 50px;
	border-radius: 10px 10px 0 0;
}
.systemTips .wrap .title img{
	height: 23px;
	vertical-align: middle;
}
.systemTips .wrap .content{
	font-size: 16px;
	line-height: 25px;
	padding: 0px 15px;
	overflow-y: auto;
	box-sizing: border-box;
	text-align: center;
	margin: 20px 0;
}
.systemTips .wrap .btns{
	padding-bottom: 20px;
	font-size: 16px;
}
.systemTips .wrap .btns a{
	background: #40d467;
	width: 120px;
	line-height: 40px;
	display: inline-block;
	border-radius: 5px;
	border: 1px solid #40d467;
	box-sizing: border-box;
	margin: 0 30px;
}
.systemTips .wrap .btns a.cancel{
	background: #fff;
}
.systemTips .wrap .btns a:hover{
	color: #fff;
	background: #40d467;
}