@import "../../../style/utils";
.xm-layout {
	width: 100%;
	height: 100%;
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
	&-header, &-footer {
		box-sizing: border-box;
		position: fixed;
		left: 0;
		width: 100%;
		z-index: 1;
	}
	&-header {
		top: 0;
		&-line {
			border-bottom: $border-normal;
		}
	}
	&-footer {
		bottom: 0;
		&-line {
			border-top: $border-normal;
		}
	}
	&-body {
		width: 100%;
		position: relative;
		box-sizing: border-box;
		&-padding {
			padding-top: 44px;
		}
	}
}
body {

}