@charset "utf-8";

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
	scroll-behavior: smooth;
}

html, body {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	overflow-y: auto;
	
	-webkit-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		 -ms-backface-visibility: hidden;
			 backface-visibility: hidden;
					
	-webkit-transform-style: preserve-3d;
		-moz-transform-style: preserve-3d;
			 transform-style: preserve-3d;
}

html {
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}

img {
	display: inline-block;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	border: none;
}

/* abode免费中文字体 - 思源雅黑 css样式 */
/*Source Han Sans CN ExtraLight*/
.abode-font-hansans-extralight {
	font-family: source-han-sans-simplified-c, sans-serif;
	font-weight: 100;
	font-style: normal;
}

/*Source Han Sans CN Light*/
.abode-font-hansans-light {
	font-family: source-han-sans-simplified-c, sans-serif;
	font-weight: 200;
	font-style: normal;
}

/*Source Han Sans CN Normal*/
.abode-font-hansans-normal {
	font-family: source-han-sans-simplified-c, sans-serif;
	font-weight: 300;
	font-style: normal;
}

/*Source Han Sans CN Regular*/
.abode-font-hansans-regular {
	font-family: source-han-sans-simplified-c, sans-serif;
	font-weight: 400;
	font-style: normal;
}

/*Source Han Sans CN Medium*/
.abode-font-hansans-medium {	
	font-family: source-han-sans-simplified-c, sans-serif;
	font-weight: 500;
	font-style: normal;
}

/*Source Han Sans CN Bold*/
.abode-font-hansans-bold {
	font-family: source-han-sans-simplified-c, sans-serif;
	font-weight: 700;
	font-style: normal;
}

/*Source Han Sans CN Heavy*/
.abode-font-hansans-heavy {
	font-family: source-han-sans-simplified-c, sans-serif;
	font-weight: 900;
	font-style: normal;
}

/* 页面加载效果 */
/* Page Loader */
.loader {
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #fff;
	pointer-events: all;
	overflow: hidden;
}

.loader-out {
	transform: translateY(-100%);
}

.loader-inner {
	position: absolute;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
}

.loader-inner div {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.loader-inner svg {
	display: block;
	margin: 0 auto;
}

.loader-inner svg path,
.loader-inner svg rect{
  fill: #FF6700;
}

/* 分辨率兼容 */
/* iphone X */
@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
	/*增加头部适配层*/
	.has-topbar {
		height: 100%;
		box-sizing: border-box;
		padding-top: 44px;
	}
	.has-topbar:before {
		content: '';
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9998;
		width: 100%;
		height: 44px;
		background-color: #000000;
	}
	
	/*增加底部适配层*/
	.has-bottombar {
		height: 100%;
		box-sizing: border-box;
		padding-bottom: 34px;
	}
	.has-bottombar:after {
		content: '';
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 9998;
		width: 100%;
		height: 34px;
		background: #f7f7f8;
	}
}

/* 图像延迟加载 */
.lazy-img {
	display: inline-block;
	vertical-align: middle;
	position: relative;
}

.lazy-img img {
	max-width: 100%;
	opacity: 0;
	transform: scale(0.8);
	transition: transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 400ms ease-in-out;
	will-change: transform;
}

.lazy-img:before {
	content: "加载中...";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	display: block;
	height: 1rem;
	margin: auto;
	line-height: 6;
	text-align: center;
	letter-spacing: .125rem;
	font-size: .75rem;
	font-family: source-han-sans-simplified-c, sans-serif;
	font-weight: 500;
	font-style: normal;
	background-image: url(ajax-loader.gif);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: opacity 300ms ease-in-out;
}

.lazy-img:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	margin: auto;
	border: 1px solid #eee;
	transition: opacity 300ms ease-in-out;
}

.lazy-img--loaded img {
	opacity: 1;
	transform: scale(1);
}

.lazy-img--loaded:before {
	opacity: 0;
}

.lazy-img--loaded:after {
	opacity: 0;
}

/* 子页面顶部导航背景 */
.public-top-background img {
	opacity: .7;
	filter: blur(.5rem);
}

.public-top-title {
	color: #fff;
	letter-spacing: 3rem;
}

/* 底部页面 */
.public-footer-box div {
	width: 100%;
}

.public-footer-linklist, 
.public-footer-linkinfo{
	list-style: none;
}
.public-footer-linklist li, 
.public-footer-linkinfo li{
	float: left;
	cursor: default;
}

.public-footer-linklist li {
	margin-left: 4rem;
	font-size: 1.5rem;
}
.public-footer-linklist li a {
	-webkit-transition: all .3s ease-in-out;
	   -moz-transition: all .3s ease-in-out;
		-ms-transition: all .3s ease-in-out;
			transition: all .3s ease-in-out;
}
.public-footer-linklist li:hover a {
	text-decoration: none;
}

.public-go-top {
	height: 1.75rem;
	background-color: #fff;
	border: 1px solid #000;
	border-radius: 100%;
}