/**
*弹出的window窗口的样式
*/
.zui-window {
	position: absolute;
	border-radius:5px;
	z-index:9000;
	display: none;
	
}

.zui-window .zui-window-title{
	background: #99CCFF;
	border-top-left-radius:5px;
	border-top-right-radius:5px;
	height: 36px;
	line-height: 36px;
	color:#FFF;
}

.zui-window .zui-window-title .icon{
	margin-left: 5px;
	margin-right: 10px;
	
}

/*
*遮罩层的样式
*/
.zui-mask{
	position: absolute;
	height: 100%;
	width: 100%;
	background: #000000;
	left:0px;
	top:0px;
	filter:alpha(opacity=50); /*IE滤镜，透明度50%*/
	-moz-opacity:0.5; /*Firefox私有，透明度50%*/
	opacity:0.5;/*其他，透明度50%*/
}

/**
*输入框的样式
*/
.zui-input{
	border: #E6E6E6 solid 1px;
	border-radius:10px;
	padding: 3px 8px;
	outline:none;
	cursor:pointer;
}

.zui-input:hover, .zui-input-focus{
	border: #D3D3D3 solid 1px;
}

/**
*页面按钮的样式
*/
.zui-button{
	display: inline-block;
    height: 28px;
    line-height: 28px;
    padding: 0 18px;
    background-color: #009688;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    font-size: 14px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    opacity: .9;
    filter: alpha(opacity=90);
    text-decoration: none;
    font-weight: normal;
}

/**
*主题样式
*/
.zui-them-green{
	color:#fff;
	background: #13DE6E !important;
}

.zui-them-blue{
	color:white;
	background: #1993E8 !important;
}

.zui-them-yellow{
	color:white;
	background: #F7BF3A !important;
}

.zui-them-orange{
	color:white;
	background: #FF6838 !important;
}

.zui-them-purple{
	color:white;
	background: #8453F8 !important;
}

.zui-them-red{
	color:white;
	background: #E82636 !important;
}

.zui-them-undertint{
	color:white;
	background: #06C1C1 !important;
}

.zui-them-blu{
	color:white;
	background: #2A3E6C !important;
}
