body {
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	-moz-user-select:none; /* Firefox私有属性 */
	-webkit-user-select:none; /* WebKit内核私有属性 */
	-ms-user-select:none; /* IE私有属性(IE10及以后) */
	-khtml-user-select:none; /* KHTML内核私有属性 */
	-o-user-select:none; /* Opera私有属性 */
	user-select:none; /* CSS3属性 */
}
	
.bg-blue {
	background-color: #0081ff;
	color: #ffffff;
}

.pingluan {
	position: fixed;
	width: 100%;
	bottom: 0;
	z-index: 1024;
	box-shadow: 0 -1rpx 3px rgba(0, 0, 0, 0.1);
}

.contenerBg{
	background-image: linear-gradient(to right, #feb446, #ed8e01);
}
			
.flex {
	display: flex;
}

.flex-sub {
	flex: 1;
}

.flex-twice {
	flex: 2;
}

.flex-treble {
	flex: 3;
}

.justify-start {
	justify-content: flex-start;
}

.justify-end {
	justify-content: flex-end;
}

.justify-center {
	justify-content: center;
}

.justify-between {
	justify-content: space-between;
}

.justify-around {
	justify-content: space-around;
}

.align-start {
	align-items: flex-start;
}

.align-end {
	align-items: flex-end;
}

.align-center {
	align-items: center;
}

.cu-tag {
	font-size: 12px;
	vertical-align: middle;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 0px 8px;
	height: 24px;
	font-family: Helvetica Neue, Helvetica, sans-serif;
	white-space: nowrap;
}

.radius {
	border-radius: 4px;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.mdui-textfield {
	position: relative;
	padding-top: 16px;
	padding-bottom: 8px;
	overflow: hidden;
}

.mdui-textfield-has-bottom {
	padding-bottom: 28px;
}

.mdui-textfield-input {
	display: block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: 36px;
	margin: 0;
	padding: 8px 0;
	overflow: hidden;
	color: rgba(0, 0, 0, 0.87);
	font-size: 16px;
	font-family: inherit;
	line-height: 20px;
	background: none;
	border: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.42);
	border-radius: 0;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
	-webkit-transition-property: border-bottom-color, padding-right, -webkit-box-shadow;
	transition-property: border-bottom-color, padding-right, -webkit-box-shadow;
	transition-property: border-bottom-color, padding-right, box-shadow;
	transition-property: border-bottom-color, padding-right, box-shadow, -webkit-box-shadow;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	resize: none;
}

.mdui-textfield-input::-webkit-input-placeholder {
	color: inherit;
	opacity: 0.42;
}

.border-bottom {
	border-bottom: #f2f2f1 solid 1px;
}

.border-top {
	border-top: #f2f2f1 solid 1px;
}
.border-right {
	border-right: #ffcc80 solid 1px;
}

.padding-xs {
	padding: 3px;
}

.padding-top-xs {
	padding-top: 5px;
}

.padding-bottom-xs {
	padding-bottom: 3px;
}

.padding-y-xs {
	padding: 3px 0px;
}

.alink {
	text-decoration: none;
	color: #9999ff;
}
