@charset "utf-8";

html {
	font-size: 16px;
	font-weight: normal;
	line-height: 1.5;
	overflow: hidden;
	overflow-y: auto;
	
	-webkit-text-size-adjust: 100%;
	   -moz-text-size-adjust: 100%;
	    -ms-text-size-adjust: 100%;
	
	-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;
	    -ms-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

/* 分辨率兼容 */
/* 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;
	}
}

/* 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;
}


/* 按钮样式 */
.pub-btn-group {
	margin-top: 5.625rem;
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.pub-btn-group {
		margin-top: 0;
	}
}

.btn {
	position: relative;
	display: inline-block;
	width: 20.625rem;
	height: 5rem;
	margin: 0 0 2rem;
	letter-spacing: .125rem;
	text-align: center;	
	text-decoration: none;
	color: #fff;
	background: #222;
	cursor: pointer;
}

.btn::after {
	content: '';
	display: inline-block;
	width: 0;
	height: 100%;
	vertical-align: middle;
}

.btn::before {
	content: '';
	position: absolute;
	bottom: 40%;
	left: 62%;
	width: 3rem;
	height: 1rem;
	background-image: url(../img/arrow-icon.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	-webkit-transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
	transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn:hover {
	text-decoration: none;
	color: #ffffff;
	background: #222222;
}

.btn:hover::before {
	left: 68%;
}

.btn-1::before {
	content: '';
	left: 68%;
}

.btn-1:hover::before {
	left: 74%;
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.btn:active {
		text-decoration: none;
		color: #ffffff;
		background: #222222;
	}
	
	.btn:active::before {
		left: 68%;
	}
	
	.btn-1:active::before {
		left: 74%;
	}
}

/* Page Loader */
.loader {
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	pointer-events: all;
}

.loader-out {
	-webkit-transition-duration: 1s;
	   -moz-transition-duration: 1s;
	    -ms-transition-duration: 1s;
	        transition-duration: 1s;
	        
	-webkit-transform: translateY(-100%);
	   -moz-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	        transform: translateY(-100%);
}

.loader-out span {
	display: none;
}

@-webkit-keyframes loaderAnim{
	to {
		opacity: 1;
	}
}

@-moz-keyframes loaderAnim {
	to {
		opacity: 1;
	}
}

@-ms-keyframes loaderAnim {
	to {
		opacity: 1;
	}
}

@keyframes loaderAnim {
	to {
		opacity: 1;
	}
}

.loader-inner {
	position: fixed;
	top: 50%;
	left: 50%;
	pointer-events: none;
	opacity: .2;
	-webkit-animation: loaderAnim .7s linear infinite alternate forwards;
	   -moz-animation: loaderAnim .7s linear infinite alternate forwards;
	    -ms-animation: loaderAnim .7s linear infinite alternate forwards;
	        animation: loaderAnim .7s linear infinite alternate forwards;
	-webkit-transform-origin: 0% 100%;
	   -moz-transform-origin: 0% 100%;
	    -ms-transform-origin: 0% 100%;
	        transform-origin: 0% 100%;
	-webkit-transform: translate(-50%, -50%);
	   -moz-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

/* view-box and view-content-box */
.view-box {
	position: absolute;
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0 auto;
}

/* line-playground */
.line-playground {	
	position: fixed;
	top: 0;
	left: 0;
	z-index: -100;
}

@-webkit-keyframes moveLine1 {
	0% {
		left: 90%;
	}
	10% {
		left: 110%;
	}
	55% {
		left: -10%;
	}
	100% {
		left: 90%;
	}
}

@keyframes moveLine1 {
	0% {
		left: 90%;
	}
	10% {
		left: 110%;
	}
	55% {
		left: -10%;
	}
	100% {
		left: 90%;
	}
}

@-webkit-keyframes moveLine2 {
	0% {
		left: 88%;
	}
	40% {
		left: -10%;
	}
	80% {
		left: 110%;
	}
	100% {
		left: 88%;
	}
}

@keyframes moveLine2 {
	0% {
		left: 88%;
	}
	40% {
		left: -10%;
	}
	80% {
		left: 110%;
	}
	100% {
		left: 88%;
	}
}

@-webkit-keyframes moveLine3 {
	0% {
		left: 75%;
	}
	20% {
		left: 110%;
	}
	65% {
		left: -10%;
	}
	100% {
		left: 75%;
	}
}

@keyframes moveLine3 {
	0% {
		left: 75%;
	}
	20% {
		left: 110%;
	}
	65% {
		left: -10%;
	}
	100% {
		left: 75%;
	}
}

@-webkit-keyframes moveLine4 {
	0% {
		left: 71%;
	}
	25% {
		left: 110%;
	}
	75% {
		left: -10%;
	}
	100% {
		left: 71%;
	}
}

@keyframes moveLine4 {
	0% {
		left: 71%;
	}
	25% {
		left: 110%;
	}
	75% {
		left: -10%;
	}
	100% {
		left: 71%;
	}
}

@-webkit-keyframes moveLine5 {
	0% {
		left: 70%;
	}
	40% {
		left: 20%;
	}
	80% {
		left: 110%;
	}
	100% {
		left: 70%;
	}
}

@keyframes moveLine5 {
	0% {
		left: 70%;
	}
	40% {
		left: 20%;
	}
	80% {
		left: 110%;
	}
	100% {
		left: 70%;
	}
}

@-webkit-keyframes moveLine6 {
	0% {
		left: 68%;
	}
	25% {
		left: 100%;
	}
	75% {
		left: -10%;
	}
	100% {
		left: 68%;
	}
}

@keyframes moveLine6 {
	0% {
		left: 68%;
	}
	25% {
		left: 100%;
	}
	75% {
		left: -10%;
	}
	100% {
		left: 68%;
	}
}

@-webkit-keyframes moveLine7 {
	0% {
		left: 40%;
	}
	20% {
		left: -10%;
	}
	80% {
		left: 80%;
	}
	100% {
		left: 40%;
	}
}

@keyframes moveLine7 {
	0% {
		left: 40%;
	}
	20% {
		left: -10%;
	}
	80% {
		left: 80%;
	}
	100% {
		left: 40%;
	}
}

.line-area {
	width: 100%;
	height: 100vh;
	opacity: 0;
	-webkit-transition-duration: 1.5s;
	   -moz-transition-duration: 1.5s;
	    -ms-transition-duration: 1.5s;
	        transition-duration: 1.5s;
}

.line-area.active {
	opacity: 1;
}

.line-area .line-inner {
	width: 100%;
}

.line-area .line {
	position: fixed;
	display: block;
	top: -10vh;
	width: 1px;
	height: 130vh;
	background-color: #ebecf5;
	-webkit-transform: rotate(15deg);
	transform: rotate(15deg);
	opacity: .6;
}

.line-area .line:nth-child(1n) {
	left: 95%;
	-webkit-animation: moveLine1 55s linear infinite;
	   -moz-animation: moveLine1 55s linear infinite;
	    -ms-animation: moveLine1 55s linear infinite;
	        animation: moveLine1 55s linear infinite;
}

.line-area .line:nth-child(2n) {
	left: 20%;
	-webkit-animation: moveLine2 70s linear infinite;
	   -moz-animation: moveLine2 70s linear infinite;
	    -ms-animation: moveLine2 70s linear infinite;
	        animation: moveLine2 70s linear infinite;
}

.line-area .line:nth-child(3n) {
	left: 40%;
	-webkit-animation: moveLine3 45s linear infinite;
	   -moz-animation: moveLine3 45s linear infinite;
	    -ms-animation: moveLine3 45s linear infinite;
	        animation: moveLine3 45s linear infinite;
}

.line-area .line:nth-child(4n) {
	left: 30%;
	-webkit-animation: moveLine4 40s linear infinite;
	   -moz-animation: moveLine4 40s linear infinite;
	    -ms-animation: moveLine4 40s linear infinite;
	        animation: moveLine4 40s linear infinite;
}

.line-area .line:nth-child(5n) {
	left: 0%;
	-webkit-animation: moveLine5 30s linear infinite;
	   -moz-animation: moveLine5 30s linear infinite;
	    -ms-animation: moveLine5 30s linear infinite;
	        animation: moveLine5 30s linear infinite;
}

.line-area .line:nth-child(6n) {
	left: 80%;
	-webkit-animation: moveLine6 55s linear infinite;
	   -moz-animation: moveLine6 55s linear infinite;
	    -ms-animation: moveLine6 55s linear infinite;
	        animation: moveLine6 55s linear infinite;
}

.line-area .line:nth-child(7n) {
	left: 20%;
	-webkit-animation: moveLine7 35s linear infinite;
	   -moz-animation: moveLine7 35s linear infinite;
	    -ms-animation: moveLine7 35s linear infinite;
	        animation: moveLine7 35s linear infinite;
}

/* .tech-nav-box */
.tech-nav-box {
	position: fixed;
	z-index: 9;
	height: 6.25rem;
}

.mobile-menu-btn {
	display: none;
}

.mobile-menu-btn.active {
	background-color: #eaa603;
}

.mobile-menu-panel-box {
	opacity: 0;
	-webkit-transition-duration: .5s;
	   -moz-transition-duration: .5s;
	    -ms-transition-duration: .5s;
	        transition-duration: .5s;
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.tech-nav-box {
		display: none;
	}
	
	.mobile-menu-btn {
		position: fixed;
		right: 0;
		z-index: 999;
		display: block;
		width: 3rem;
		height: 3rem;
		margin: .5rem;
		color: #222;
		background: #fff;
	}
	
	.mobile-menu-btn i {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		        transform: translate(-50%, -50%);
	}

	.mobile-menu-panel-box {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 990;
		width: 100vw;
		height: 100vh;
		background-color: #222;
		opacity: 1;
		-webkit-transform: translateX(-100%);
		        transform: translateX(-100%);
	}
	
	.mobile-menu-panel-box ul {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		        transform: translate(-50%, -50%);
	}
	
	.mobile-menu-panel-box ul li a {
		font-size: 1.5rem;
		color: #fff;
	}
}

.js-mobile-show {
	-webkit-transform: translateX(0%);
	        transform: translateX(0%);
	-webkit-transition-duration: .5s;
	   -moz-transition-duration: .5s;
	    -ms-transition-duration: .5s;
	        transition-duration: .5s;
}

.tech-nav-box.js-scroll {
	height: 3.25rem;
	padding-bottom: .5rem;
	background-color: #fff !important;
	-webkit-transition-duration: .5s;
	   -moz-transition-duration: .5s;
	    -ms-transition-duration: .5s;
	        transition-duration: .5s;
}

.tech-nav-box.uk-navbar-container:not(.uk-navbar-transparent) {
	background: transparent;
}

.tech-sub-nav {
	position: absolute;
	bottom: .125rem;
	left: 50%;
	width: 75rem;
	max-width: 75rem;
	height: 2rem;
	
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}

/* .tech-logo-box */
.tech-logo-box {	
    position: relative;
    width: 50%;
}

.tech-logo-box .uk-logo {
	position: absolute;
	bottom: 0;
	display: inline-block;
	font-size: 0;
}

.tech-logo-box .uk-logo::before {
	content: '';
	position: absolute;
	bottom: 0;
	right: -1rem;
	width: .5rem;
	height: .5rem;
	background-color: #f0455d;
	
	-webkit-animation: dot-flash .75s cubic-bezier(.79, .17, .15, .96) infinite alternate forwards;
	   -moz-animation: dot-flash .75s cubic-bezier(.79, .17, .15, .96) infinite alternate forwards;
	    -ms-animation: dot-flash .75s cubic-bezier(.79, .17, .15, .96) infinite alternate forwards;
	        animation: dot-flash .75s cubic-bezier(.79, .17, .15, .96) infinite alternate forwards;
}

@-webkit-keyframes dot-flash {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-moz-keyframes dot-flash {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-ms-keyframes dot-flash {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes dot-flash {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.tech-logo-box .tech-logo-text {
	display: inline-block;
	line-height: 2.125rem;
	padding-left: 6.625rem;
	font-size: 1.5rem;
	color: #222222;
	letter-spacing: .0625rem;
	vertical-align: baseline;
	cursor: pointer;
}

/* .tech-link-box */
.tech-link-box {
	margin: 0 auto;
}

.tech-link-box li {
	float: left;
	margin-right: 2rem;
	font-size: 1rem;
}

.tech-link-box li:last-child {
	margin-right: 0;
}

.tech-link-box.uk-list>li:nth-child(n+2) {
	margin-top: 0;
}

.tech-link-box li a {
	position: relative;
	color: #ffffff;
	letter-spacing: .125rem;
}

.page-tech-nav-box .tech-link-box li a {
	color: #222;
}

.tech-link-box.js-scroll li a {
	position: relative;
	color: #222;
	letter-spacing: .125rem;
}

.tech-link-box li a:hover,
.tech-link-box li a:active {
	text-decoration: none;
}

.tech-link-box li a::before {
	content: '';
	position: absolute;
	bottom: -.25rem;
	left: -100%;
	width: 0;
	height: .125rem;
	background-color: #ffffff;
	-webkit-transition: width .5s cubic-bezier(.79, .17, .15, .96);
	   -moz-transition: width .5s cubic-bezier(.79, .17, .15, .96);
	    -ms-transition: width .5s cubic-bezier(.79, .17, .15, .96);
	        transition: width .5s cubic-bezier(.79, .17, .15, .96);
	       
	-webkit-animation-duration: 1s;
	   -moz-animation-duration: 1s;
	    -ms-animation-duration: 1s;
	        animation-duration: 1s;
	opacity: 0;
}

.tech-link-box.js-scroll li a::before {
	background-color: #222;
}

.tech-link-box li a:hover::before,
.tech-link-box li a:active::before {
	left: 0;
	width: 100%;
	opacity: 1;
}

/* .index-wallpaper-box */
.index-wallpaper-box {	
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}

/* .index-banner-box */
.index-banner-box {
	position: relative;
	top: 0;
	left: 0;
	overflow: hidden;
	width: 100vw;
	height: 100vh;
	margin-bottom: 7.5rem;
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.index-banner-box {
		height: 60vh;
		margin-bottom: 0;
	}
}

.index-banner-right-mask {
	position: absolute;
	top: -26%;
	right: -50%;
	overflow: hidden;
	
	width: 100%;
	height: 130%;
	background-color: #222;
	
	-webkit-transform: rotate(-15deg);
	   -moz-transform: rotate(-15deg);
	    -ms-transform: rotate(-15deg);
	        transform: rotate(-15deg);
	
	-webkit-clip-path: inset(0 0 100% 0);
	   -moz-clip-path: inset(0 0 100% 0);
	    -ms-clip-path: inset(0 0 100% 0);
	        clip-path: inset(0 0 100% 0);
		        
	-webkit-transition: clip-path .75s cubic-bezier(0.165, 0.84, 0.44, 1) .8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	-moz-transition: clip-path .75s cubic-bezier(0.165, 0.84, 0.44, 1) .8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	-ms-transition: clip-path .75s cubic-bezier(0.165, 0.84, 0.44, 1) .8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	        transition: clip-path .75s cubic-bezier(0.165, 0.84, 0.44, 1) .8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	
	-webkit-transition-duration: .5s;
	   -moz-transition-duration: .5s;
	    -ms-transition-duration: .5s;
	        transition-duration: .5s;
}

@media only screen and (min-width: 1600px) and (max-width: 1920px) {
	.index-banner-right-mask {
		top: -30%;
	}
}

@media only screen and (min-width: 1360px) and (max-width: 1366px) {
	.index-banner-right-mask {
		top: -30%;	
	}
}

.index-banner-right-mask.active {
	-webkit-clip-path: inset(0);
	   -moz-clip-path: inset(0);
	    -ms-clip-path: inset(0);
            clip-path: inset(0);
}

.index-banner-right-line {
	content: '';
	position: absolute;
	bottom: 0;
	left: 31.5%;
	width: .125rem;
	height: 125%;
	background-color: #ffb400;
	
	-webkit-clip-path: inset(0 0 100% 0);
	   -moz-clip-path: inset(0 0 100% 0);
	    -ms-clip-path: inset(0 0 100% 0);
	        clip-path: inset(0 0 100% 0);
		        
	-webkit-transition: clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) .8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	-moz-transition: clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) .8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	-ms-transition: clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) .8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	        transition: clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) .8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	
	-webkit-transition-duration: 1s;
	   -moz-transition-duration: 1s;
	    -ms-transition-duration: 1s;
	        transition-duration: 1s;
}

.index-banner-right-line.active {
	-webkit-clip-path: inset(0);
	   -moz-clip-path: inset(0);
	    -ms-clip-path: inset(0);
            clip-path: inset(0);
}

/* .index-banner-text-mask */
.index-banner-text-mask {
	position: relative;
}

.sub-text-mask {
	position: absolute;
	top: 50%;
	left: 10%;
	
	-webkit-transform: translateY(50%);
	   -moz-transform: translateY(50%);
	    -ms-transform: translateY(50%);
	        transform: translateY(50%);
	        
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
}

.sub-text-mask h1 {
	display: inline-block;
	margin: 0 auto;
	background-image: url(../img/banner-title-mask.jpg);
	-webkit-background-clip: text;
	        background-clip: text;
    -webkit-text-fill-color: transparent;
    
    text-shadow: 0 0 0 0 rgba(0,0,0,.5);
}

.sub-text-mask h1:nth-of-type(1) {
	font-size: 14.25rem;
}
.sub-text-mask h1:nth-of-type(2) {
	position: absolute;
	top: 81%;
	left: 45.2%;
	font-size: 11.25rem;
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.sub-text-mask h1:nth-of-type(1) {
		font-size: 10rem;
	}
	.sub-text-mask h1:nth-of-type(2) {
		left: 0%;
		font-size: 8rem;
	}	
}

@media only screen and (max-device-width: 375px ) {
	.sub-text-mask h1:nth-of-type(1) {
		font-size: 8rem;
	}
	.sub-text-mask h1:nth-of-type(2) {
		left: 0%;
		font-size: 6.75rem;
	}
}

@media only screen and (max-device-width: 360px ) {
	.sub-text-mask h1:nth-of-type(1) {
		font-size: 8rem;
	}
	.sub-text-mask h1:nth-of-type(2) {
		left: 0%;
		font-size: 6.75rem;
	}
}

@media only screen and (min-width: 1360px) and (max-width: 1366px) {
	.sub-text-mask h1:nth-of-type(1) {
		font-size: 12rem;
	}
	.sub-text-mask h1:nth-of-type(2) {
		font-size: 8rem;
	}
}

.sub-mask-part-1 {
    -webkit-clip-path: inset(0 100% 0 0);
       -moz-clip-path: inset(0 100% 0 0);
        -ms-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
		        
	-webkit-transition: clip-path 1.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	-moz-transition: clip-path 1.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	-ms-transition: clip-path 1.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	        transition: clip-path 1.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	
	-webkit-transition-duration: 1s;
	   -moz-transition-duration: 1s;
	    -ms-transition-duration: 1s;
	        transition-duration: 1s;
}

.sub-mask-part-2 {
    -webkit-clip-path: inset(0 100% 0 0);
       -moz-clip-path: inset(0 100% 0 0);
        -ms-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
		        
	-webkit-transition: clip-path 1.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	-moz-transition: clip-path 1.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	-ms-transition: clip-path 1.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	        transition: clip-path 1.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	
	-webkit-transition-duration: 1s;
	   -moz-transition-duration: 1s;
	    -ms-transition-duration: 1s;
	        transition-duration: 1s;
}

.sub-mask-part-1.active,
.sub-mask-part-2.active {
	-webkit-clip-path: inset(0);
	   -moz-clip-path: inset(0);
	    -ms-clip-path: inset(0);
            clip-path: inset(0);
}

.sub-text-mask span {
	position: absolute;
	bottom: -49%;
	right: -55%;
	display: inline-block;
	width: 3rem;
	height: 3rem;
	background-image: url(../img/banner-title-mask.jpg);
    background-position: -2rem;
    -webkit-clip-path: inset(0 100% 0 0);
       -moz-clip-path: inset(0 100% 0 0);
        -ms-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
		        
	-webkit-transition: clip-path 1.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	-moz-transition: clip-path 1.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	-ms-transition: clip-path 1.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	        transition: clip-path 1.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	
	-webkit-transition-duration: 1s;
	   -moz-transition-duration: 1s;
	    -ms-transition-duration: 1s;
	        transition-duration: 1s;
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.sub-text-mask span {
		display: none;
	}
}

@media only screen and (min-width: 1360px) and (max-width: 1366px) {
	.sub-text-mask span {
		bottom: -38%;
	    right: -40%;
	    width: 2rem;
	    height: 2rem;
	}
}

.sub-text-mask span.active {
	-webkit-clip-path: inset(0);
	   -moz-clip-path: inset(0);
	    -ms-clip-path: inset(0);
            clip-path: inset(0);
}

.cyber-dot {
  -webkit-animation: cyber-dot 2s linear infinite;
     -moz-animation: cyber-dot 2s linear infinite;
      -ms-animation: cyber-dot 2s linear infinite;
          animation: cyber-dot 2s linear infinite;
}

@-webkit-keyframes cyber-dot {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  56% {
    opacity: 0;
  }
  57% {
    opacity: 0.6;
  }
  58% {
    opacity: 0.6;
  }
  71% {
    transform: scaleY(1) skewX(0deg);
  }
  72% {
    transform: scaleY(3) skewX(-60deg);
  }
  73% {
    transform: scaleY(1) skewX(0deg);
  }
  80% {
    opacity: 1;
  }
  81% {
    opacity: 0;
  }
  82% {
    opacity: 0.6;
  }
  85% {
    opacity: 0.6;
  }
  91% {
    transform: scaleX(1) scaleY(1) skewX(0deg);
    color: #fff;
  }
  92% {
    transform: scaleX(1.5) scaleY(0.2) skewX(80deg);
    color: green;
  }
  93% {
    transform: scaleX(1) scaleY(1) skewX(0deg);
    color: #fff;
  }
}

@-moz-keyframes cyber-dot {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  56% {
    opacity: 0;
  }
  57% {
    opacity: 0.6;
  }
  58% {
    opacity: 0.6;
  }
  71% {
    transform: scaleY(1) skewX(0deg);
  }
  72% {
    transform: scaleY(3) skewX(-60deg);
  }
  73% {
    transform: scaleY(1) skewX(0deg);
  }
  80% {
    opacity: 1;
  }
  81% {
    opacity: 0;
  }
  82% {
    opacity: 0.6;
  }
  85% {
    opacity: 0.6;
  }
  91% {
    transform: scaleX(1) scaleY(1) skewX(0deg);
    color: #fff;
  }
  92% {
    transform: scaleX(1.5) scaleY(0.2) skewX(80deg);
    color: green;
  }
  93% {
    transform: scaleX(1) scaleY(1) skewX(0deg);
    color: #fff;
  }
}

@-ms-keyframes cyber-dot {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  56% {
    opacity: 0;
  }
  57% {
    opacity: 0.6;
  }
  58% {
    opacity: 0.6;
  }
  71% {
    transform: scaleY(1) skewX(0deg);
  }
  72% {
    transform: scaleY(3) skewX(-60deg);
  }
  73% {
    transform: scaleY(1) skewX(0deg);
  }
  80% {
    opacity: 1;
  }
  81% {
    opacity: 0;
  }
  82% {
    opacity: 0.6;
  }
  85% {
    opacity: 0.6;
  }
  91% {
    transform: scaleX(1) scaleY(1) skewX(0deg);
    color: #fff;
  }
  92% {
    transform: scaleX(1.5) scaleY(0.2) skewX(80deg);
    color: green;
  }
  93% {
    transform: scaleX(1) scaleY(1) skewX(0deg);
    color: #fff;
  }
}

@keyframes cyber-dot {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  56% {
    opacity: 0;
  }
  57% {
    opacity: 0.6;
  }
  58% {
    opacity: 0.6;
  }
  71% {
    transform: scaleY(1) skewX(0deg);
  }
  72% {
    transform: scaleY(3) skewX(-60deg);
  }
  73% {
    transform: scaleY(1) skewX(0deg);
  }
  80% {
    opacity: 1;
  }
  81% {
    opacity: 0;
  }
  82% {
    opacity: 0.6;
  }
  85% {
    opacity: 0.6;
  }
  91% {
    transform: scaleX(1) scaleY(1) skewX(0deg);
    color: #fff;
  }
  92% {
    transform: scaleX(1.5) scaleY(0.2) skewX(80deg);
    color: green;
  }
  93% {
    transform: scaleX(1) scaleY(1) skewX(0deg);
    color: #fff;
  }
}

/* .index-banner-slogan */
.index-banner-slogan {
	position: absolute;
	bottom: 3rem;
	left: 10%;
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.index-banner-slogan {
		display: none;
	}
}

@media only screen and (min-width: 1360px) and (max-width: 1366px) {
	.index-banner-slogan {
		bottom: 2rem;
	}
}

.index-banner-slogan h1 {
	margin: 0 auto;
}

.index-banner-slogan h1.sub-slogan-part-1,
.index-banner-slogan h1.sub-slogan-part-2 {
    -webkit-clip-path: inset(0 100% 0 0);
       -moz-clip-path: inset(0 100% 0 0);
        -ms-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
		        
	-webkit-transition: clip-path 1.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	-moz-transition: clip-path 1.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	-ms-transition: clip-path 1.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	        transition: clip-path 1.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	
	-webkit-transition-duration: 1s;
	   -moz-transition-duration: 1s;
	    -ms-transition-duration: 1s;
	        transition-duration: 1s;
}

.index-banner-slogan h1.sub-slogan-part-2 {
	padding-left: 9rem;
	margin-top: 1.125rem;
}

.index-banner-slogan h1.sub-slogan-part-1.active,
.index-banner-slogan h1.sub-slogan-part-2.active {
	-webkit-clip-path: inset(0);
	   -moz-clip-path: inset(0);
	    -ms-clip-path: inset(0);
            clip-path: inset(0);
}

@media only screen and (min-width: 1360px) and (max-width: 1366px) {
	.index-banner-slogan h1.sub-slogan-part-1,
	.index-banner-slogan h1.sub-slogan-part-2 {
		font-size: 2rem;
	}
}

/* scroll bar */
.scroll-bar {
	position: absolute;
    top: 65.5vh;
	right: 5rem;
	cursor: pointer;
	
	-webkit-transition: all .5s ease-in-out;
	   -moz-transition: all .5s ease-in-out;
	    -ms-transition: all .5s ease-in-out;
	        transition: all .5s ease-in-out;
	        
    -webkit-clip-path: inset(0 0 0 100%);
       -moz-clip-path: inset(0 0 0 100%);
        -ms-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
		        
	-webkit-transition: clip-path 1.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	-moz-transition: clip-path 1.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	-ms-transition: clip-path 1.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	        transition: clip-path 1.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	
	-webkit-transition-duration: 1s;
	   -moz-transition-duration: 1s;
	    -ms-transition-duration: 1s;
	        transition-duration: 1s;
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.scroll-bar {
		display: none;
	}	
}

.scroll-bar.active {
	-webkit-clip-path: inherit;
	   -moz-clip-path: inherit;
	    -ms-clip-path: inherit;
            clip-path: inherit;
}

.scroll-bar .scroll-text {
	position: absolute;
    color: #ffffff;
    letter-spacing: .25rem;
    writing-mode: tb-rl;
}

.scroll-bar .scroll-icon {
	position: absolute;
	top: 5.625rem;
	left: .75rem;
	width: .0625rem;
	height: 8.125rem;
	background-color: #ffffff;
}

.scroll-bar:hover .scroll-icon {
	-webkit-animation: scroll-icon 1s cubic-bezier(.79, .17, .15, .96) infinite alternate forwards;
	   -moz-animation: scroll-icon 1s cubic-bezier(.79, .17, .15, .96) infinite alternate forwards;
	    -ms-animation: scroll-icon 1s cubic-bezier(.79, .17, .15, .96) infinite alternate forwards;
	        animation: scroll-icon 1s cubic-bezier(.79, .17, .15, .96) infinite alternate forwards;
}

@-webkit-keyframes scroll-icon {
	0% {
		transform: rotateY(0deg);
	}
	100% {
		transform: rotateY(360deg);
	}
}

@-moz-keyframes scroll-icon {
	0% {
		transform: rotateY(0deg);
	}
	100% {
		transform: rotateY(360deg);
	}
}

@-ms-keyframes scroll-icon {
	0% {
		transform: rotateY(0deg);
	}
	100% {
		transform: rotateY(360deg);
	}
}

@keyframes scroll-icon {
	0% {
		transform: rotateY(0deg);
	}
	100% {
		transform: rotateY(360deg);
	}
}

.scroll-bar .scroll-icon::before,
.scroll-bar .scroll-icon::after {
	content: '';
	position: absolute;
	background-color: #ffffff;
}

.scroll-bar .scroll-icon::before {
	width: 1rem;
	height: .0625rem;
    bottom: 2.8125rem;
    right: -.5rem;
}

.scroll-bar .scroll-icon::after {
	width: .0625rem;
	height: 2.8125rem;
	bottom: 0;
	left: .25rem;
	
	-webkit-transform: rotate(10deg);
	   -moz-transform: rotate(10deg);
	    -ms-transform: rotate(10deg);
	        transform: rotate(10deg);
}

/* public-content-box */
.public-content-box {
	position: relative;
	width: 100vw;
}

/* public sub style */
.pub-gray-mask {
	position: absolute;
	top: 0;
	overflow: hidden;
	
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.pub-gray-mask {
		display: none;
	}	
}

.pub-title-box {
	position: relative;
	width: 37.5rem;
}

.pub-title {
	position: relative;
	margin-bottom: 1.875rem;
	font-size: 3.75rem;
	letter-spacing: .5rem;
}

@media only screen and (min-width: 1360px) and (max-width: 1366px) {
	.pub-title {
		font-size: 3rem;
	}
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.pub-title {
		font-size: 3rem;
		letter-spacing: 0;
	}
}

.pub-icon::before {
	content: '';
    position: absolute;
    bottom: -4rem;
    left: 2.675rem;
    width: 2.375rem;
    height: 5.5rem;
    
    background-image: url(../img/yellow-line.svg);
    background-size: 100%;
    background-position: left top;
    background-repeat: no-repeat;
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.pub-icon::before {	
		display: none;
	}	
}

@media only screen and (min-width: 1600px) and (max-width: 1920px) {
	.pub-icon::before {
		bottom: -4.25rem;
		left: 18rem;
	}
}

@media only screen and (min-width: 1360px) and (max-width: 1366px) {
	.pub-icon::before {
		display: none;
	}
}

.about-icon::before {
	bottom: -6.5rem;
}

.pub-sub-text {
	font-size: .875rem;
	color: #222222;
}

.pub-service-section,
.pub-work-section,
.pub-about-section {
	position: relative;
	overflow: hidden;
	padding-top: 4.625rem;
	padding-bottom: 7.5rem;
	margin-bottom: 7.5rem;
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.pub-service-section,
	.pub-work-section,
	.pub-about-section {
		padding-bottom: 0;
		margin-bottom: 0;
	}	
}

@media only screen and (min-device-width: 360px ) {
	.sub-service-content {
		margin-bottom: 3rem;
	}
}

/* .service-card-item */
.service-card-box {
	width: 35rem;
	margin-bottom: 5.125rem;
	background-color: #ffffff;
	cursor: pointer;
	overflow: hidden;
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.service-card-box {
		margin-bottom: 2rem;
	}
}

.service-card-box .service-link {	
	color: #222222;
}

.service-card-box .service-link:active,
.service-card-box .service-link:hover {
	text-decoration: none;
	color: #222222;
}

.service-card-box .service-img {
	float: left;
	
	overflow: hidden;
	
	-webkit-transition: -webkit-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), -moz-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), -ms-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), transform .5s cubic-bezier(0.165, 0.84, 0.44, 1);
	   -moz-transition: -webkit-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), -moz-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), -ms-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), transform .5s cubic-bezier(0.165, 0.84, 0.44, 1);
	    -ms-transition: -webkit-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), -moz-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), -ms-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), transform .5s cubic-bezier(0.165, 0.84, 0.44, 1);
	        transition: -webkit-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), -moz-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), -ms-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), transform .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card-box:hover .service-img {
	-webkit-transform: scale(1.1);
	   -moz-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

.service-card-box .service-text {
	float: right;
	width: 15rem;
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.service-card-box .service-img {	
		display: none;
	}
	.service-card-box .service-text {
		float: none;
		width: 84%;
	}
}

.service-card-box .service-card-sub-title {
	letter-spacing: .125rem;
	font-size: .75rem;
	text-transform: uppercase;
}

.service-card-box .service-card-title {
	margin-top: 1.5rem;
	margin-bottom: 2.5rem;
	letter-spacing: .25rem;
	text-transform: uppercase;
}

.service-card-box .service-card-text {
    width: 80%;
    margin-top: 0;
    margin-bottom: 0;
    text-align: justify;
	text-transform: uppercase;
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.service-card-box .service-card-text {
		width: 100%;
	}
}

.service-card-box .service-card-text {
	font-size: 1rem;
}

.service-card-box .service-card-link {
	position: absolute;
	bottom: 2.5rem;
	-webkit-transform: translateX(8rem);
	   -moz-transform: translateX(8rem);
	    -ms-transform: translateX(8rem);
	        transform: translateX(8rem);
	
	-webkit-transition: -webkit-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), -moz-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), -ms-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), transform .5s cubic-bezier(0.165, 0.84, 0.44, 1);
	   -moz-transition: -webkit-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), -moz-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), -ms-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), transform .5s cubic-bezier(0.165, 0.84, 0.44, 1);
	    -ms-transition: -webkit-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), -moz-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), -ms-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), transform .5s cubic-bezier(0.165, 0.84, 0.44, 1);
	        transition: -webkit-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), -moz-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), -ms-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), transform .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card-box:hover .service-card-link {
	-webkit-transform: translateX(10rem);
	   -moz-transform: translateX(10rem);
	    -ms-transform: translateX(10rem);
	        transform: translateX(10rem);
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.service-card-box .service-card-link {
		bottom: 1rem;
		-webkit-transform: translateX(12rem);
		        transform: translateX(12rem);
	}
	.service-card-box:active .service-card-link {
		bottom: 1rem;
		-webkit-transform: translateX(15rem);
		        transform: translateX(15rem);
	}
	
	.mob-ser-btn {
		float: none;
		width: 100%;
		margin: 0 auto;
		margin-top: 2rem;
	}
}

/* .work-show-case */
.pub-work-section {	
	background-color: rgba(248, 248, 248, .5);
}

.work-show-case {
	width: 37.5rem;
	margin-top: 6.375rem;
}

@media only screen and (max-device-width: 360px ) {
	.work-show-case {
		margin-top: 5rem;
	}
}

.sub-show-case li {
	width: 11.875rem;
	height: 6.625rem;
	padding: 0;
	margin: 0 .3rem 1rem .3rem;
	
	-webkit-transition: box-shadow .5s cubic-bezier(0.165, 0.84, 0.44, 1);
	   -moz-transition: box-shadow .5s cubic-bezier(0.165, 0.84, 0.44, 1);
	    -ms-transition: box-shadow .5s cubic-bezier(0.165, 0.84, 0.44, 1);
	        transition: box-shadow .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.sub-show-case li {
		margin: 0 auto;
	}
}

@media only screen and (max-device-width: 375px ) {
	.sub-show-case li {
		width: 9.875rem;
		margin-bottom: .35rem;
	}
}

@media only screen and (max-device-width: 360px ) {
	.sub-show-case li {
		width: 9.875rem;
		margin-bottom: .35rem;
	}
}

.uk-list.sub-show-case >li:nth-child(n+2), .uk-list.sub-show-case>li>ul {
    margin-top: 0;
}

.sub-show-case li:hover {
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.sub-show-case li:active {
		box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	}
}

/* about-show */
.sub-about-content {
	position: relative;
	overflow: hidden;
	padding: 2.25rem 0 4rem;
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.sub-about-content {
		padding: 0 .9375rem;
		margin-bottom: 2rem;
	}
}

.about-background {
	position: absolute;
	top: 50%;
	right: 0;
	z-index: -1;
	
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.about-background {
		display: none;
	}
}

.about-show {
	width: 100%;
	margin-top: 3.875rem;
}

.uk-grid.about-show div:nth-of-type(2) a.uk-card-default {
	margin: 0 3rem;
}

@media only screen and (max-device-width: 414px) {
	.uk-grid.about-show div:nth-of-type(2) a.uk-card-default {
		margin: 0 auto;
	}

    .uk-grid.about-show >* {
        padding: 30px;
    }
    
    .uk-grid.about-show .uk-card-body {
    	padding: 26px;
    }
}

@media only screen and (max-device-width: 375px) {
	.uk-grid.about-show div:nth-of-type(2) a.uk-card-default {
		margin: 0 auto;
	}

    .uk-grid.about-show >* {
        padding: 30px;
    }
    
    .uk-grid.about-show .uk-card-body {
    	padding: 2rem 8px;
    }
}

@media only screen and (max-device-width: 360px) {
	.uk-grid.about-show div:nth-of-type(2) a.uk-card-default {
		margin: 0 auto;
	}

    .uk-grid.about-show >* {
        padding: 10px 24px;
    }
    
    .uk-grid.about-show .uk-card-body {
    	padding: 2rem 6px;
    }
}

@media (min-width: 1200px) {

    .uk-grid.about-show >* {
        padding: 0;
    }

    *+.uk-grid-margin,.uk-grid+.uk-grid,.uk-grid>.uk-grid-margin {
        margin-top: 0
    }
}

.about-show .uk-card {
	display: block;
	overflow: hidden;
	/*background-color: #ffffff;*/
}

.about-show .uk-card h2 {
	margin: 2rem auto 0;
}

.about-show .uk-card .about-link {
	position: absolute;
	left: 2.5rem;
	bottom: 2.5rem;
	
	-webkit-transition: left .5s cubic-bezier(0.165, 0.84, 0.44, 1);
	   -moz-transition: left .5s cubic-bezier(0.165, 0.84, 0.44, 1);
	    -ms-transition: left .5s cubic-bezier(0.165, 0.84, 0.44, 1);
	        transition: left .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-show .uk-card:hover .about-link {
	left: 5rem;
}

.about-show .about-img {
	overflow: hidden;
	
	-webkit-transition: -webkit-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), -moz-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), -ms-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), transform .5s cubic-bezier(0.165, 0.84, 0.44, 1);
	   -moz-transition: -webkit-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), -moz-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), -ms-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), transform .5s cubic-bezier(0.165, 0.84, 0.44, 1);
	    -ms-transition: -webkit-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), -moz-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), -ms-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), transform .5s cubic-bezier(0.165, 0.84, 0.44, 1);
	        transition: -webkit-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), -moz-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), -ms-transform .5s cubic-bezier(0.165, 0.84, 0.44, 1), transform .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-show .uk-card:hover .about-img {
	-webkit-transform: scale(1.1);
	   -moz-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

/* .pub-ad-section */
.pub-ad-section {
	padding: 4.6875rem 0;
	background-image: url(../img/bottom.jpg);
	background-size: cover;
	background-position: left top;
	background-repeat: no-repeat;
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.pub-ad-section {
        display: none;
    }
}

.sub-ad-content .uk-card {
	width: 34.375rem;
	height: 18.75rem;
}

.sub-ad-content .uk-card .uk-card-body {
	height: -webkit-calc(100% - 80px);
	height:    -moz-calc(100% - 80px);
	height:     -ms-calc(100% - 80px);
	height:         calc(100% - 80px);
}

.sub-ad-content .uk-card h1 {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	margin: 0 auto;
	
	-webkit-transform: translate(-50%, -50%);
	   -moz-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

/* footer-box */
.tech-footer-box {
	position: relative;
    width: 100vw;
	padding: 5rem 0;
	background-color: #222222;
}

.tech-sub-footer-box {
	position: relative;
}

.tech-sub-footer-box .tech-footer-one,
.tech-sub-footer-box .tech-footer-two,
.tech-sub-footer-box .tech-footer-three {
	position: relative;
	margin-bottom: 4rem;
}

@media only screen and (max-device-width: 360px ) {
	.tech-sub-footer-box .tech-footer-one,
	.tech-sub-footer-box .tech-footer-two,
	.tech-sub-footer-box .tech-footer-three {
		margin-bottom: 2rem;
	}
}

.tech-footer-one {
	position: relative;
	height: 7.875rem;
	background-image: url(../img/footer-line.svg);
	background-repeat: no-repeat;
	background-position: 0;
	overflow: hidden;
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px ) {
	.tech-footer-one {
		display: none;
	}
}

.tech-footer-one::before,
.tech-footer-one::after {
	content: '';
	position: absolute;
	top: 0;
	width: 2.3rem;
	height: 100%;
	background-image: url(../img/footer-line.svg);
	background-repeat: no-repeat;
	background-position: 0;
}

.tech-footer-one::after {
	right: 0;
}

.tech-footer-one::before {
	left: 42%;
	-webkit-transform: translateX(-100%);
	   -moz-transform: translateX(-100%);
	    -ms-transform: translateX(-100%);
	        transform: translateX(-100%);
}

.tech-footer-one .uk-logo {
	position: relative;
	display: inline-block;
    -webkit-transform: translate(18rem, 66%);
       -moz-transform: translate(18rem, 66%);
        -ms-transform: translate(18rem, 66%);
            transform: translate(18rem, 66%);
}

.tech-footer-one .uk-logo::before {
	content: '';
	position: absolute;
	bottom: 0;
	right: -3rem;
	width: .875rem;
	height: .875rem;
	background-color: #f0455d;
	
	-webkit-animation: dot-flash .75s cubic-bezier(.79, .17, .15, .96) infinite alternate forwards;
	   -moz-animation: dot-flash .75s cubic-bezier(.79, .17, .15, .96) infinite alternate forwards;
	    -ms-animation: dot-flash .75s cubic-bezier(.79, .17, .15, .96) infinite alternate forwards;
	        animation: dot-flash .75s cubic-bezier(.79, .17, .15, .96) infinite alternate forwards;
}

.tech-footer-one .tech-footer-sub-text {
	position: absolute;
	bottom: 0;
	left: 45%;
	margin-right: 2rem;
	margin-left: 2rem;
	color: #fff;
}

.tech-footer-two,
.tech-footer-three {
	position: relative;
}

.tech-footer-two .uk-h3,
.tech-footer-three .uk-h3 {
	margin: 0 auto;
	margin-right: 2rem;
	color: #fff;
}

.tech-footer-two .uk-hr,
.tech-footer-three .uk-hr {
	width: 26.25rem;
	margin-right: 2rem;
}

.tech-footer-two .tech-sub-link-box {
	width: 50%;
	float: right;
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.tech-footer-two .tech-sub-link-box {
		width: 100%;
	}
}

.tech-footer-two .uk-list {
	float: left;
	margin-top: .375rem;
	margin-bottom: 1.5rem;
	cursor: default;
}

.tech-footer-two .uk-list:last-child {
	margin-bottom: 0;
}

.tech-footer-two .uk-list li {
	float: left;
	color: #555;
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.tech-footer-two .uk-list li {
		font-size: .75rem;
	}
}

.tech-footer-two .uk-list>li:nth-child(1) {
	font-size: 1.125rem;
	color: #999;
}

.tech-footer-two .uk-list>li:nth-child(n+2) {
	position: relative;
	margin-top: 0;
	margin-left: 2rem;
}

.tech-footer-two .uk-list>li:nth-child(n+2)::after {
	content: '';
	position: absolute;
    top: 50%;
    right: -1rem;
    width: 1px;
    height: .75rem;
	background-color: #555;
	
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}

@media only screen and (max-device-width: 360px ) {
	.tech-footer-two .uk-list>li:nth-child(n+2) {
    	margin-top: .25rem;
		margin-left: 1rem;
	}
	
	.tech-footer-two .uk-list>li:nth-child(n+2)::after {
		right: -.5rem;
	}
}

.tech-footer-two .uk-list>li:last-child::after {
	display: none;
}


.tech-footer-three .uk-list {
	float: right;
	width: 50%;
	margin-top: .375rem;
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.tech-footer-three .uk-list {
		width: 100%;
	}
}

.tech-footer-three .uk-list li {
	position: relative;
	float: left;
	margin-left: 3.75rem;
	font-size: 1.125rem;
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.tech-footer-three .uk-list li {
		margin-left: 1.4rem;
		font-size: .75rem;
	}
}

.tech-footer-three .uk-list li::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -2rem;
	width: .125rem;
	height: .875rem;
	background-color: #555;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.tech-footer-three .uk-list li::after {
		right: -.8rem;
	}
}

.tech-footer-three .uk-list li:last-child::after {
	display: none;	
}

.tech-footer-three .uk-list li:first-child {
	margin-left: 0;
}

.tech-footer-three .uk-list>li:nth-child(n+2) {
	margin-top: 0;
}

.tech-footer-three .uk-list a {
	color: #fff;
}

.tech-copyright {
	letter-spacing: .0625rem;
	text-align: center;
	font-size: .875rem;
	color: rgba(255, 255, 255, .3);
}

@media only screen and (max-device-width: 360px ) {
	.tech-copyright {
		font-size: .75rem;
	}
}

/* scroll bar */
.scroll-top-bar {
	position: absolute;
    bottom: 7.5rem;
    right: 3rem;
	cursor: pointer;
	
	-webkit-transition: all .5s ease-in-out;
	   -moz-transition: all .5s ease-in-out;
	    -ms-transition: all .5s ease-in-out;
	        transition: all .5s ease-in-out;
	        
    -webkit-clip-path: inset(0 0 0 100%);
       -moz-clip-path: inset(0 0 0 100%);
        -ms-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
		        
	-webkit-transition: clip-path 1.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	-moz-transition: clip-path 1.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	-ms-transition: clip-path 1.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	        transition: clip-path 1.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, -webkit-clip-path 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
	
	-webkit-transition-duration: 5s;
	   -moz-transition-duration: 5s;
	    -ms-transition-duration: 5s;
	        transition-duration: 5s;
}

@media only screen and (max-device-width: 360px ) {
	.scroll-top-bar {
	    bottom: 2rem;
	    right: 1rem;
	}
}

.scroll-top-bar.active {
	-webkit-clip-path: inherit;
	   -moz-clip-path: inherit;
	    -ms-clip-path: inherit;
            clip-path: inherit;
}

.scroll-top-bar .scroll-text {
	position: absolute;
    color: #ffffff;
    letter-spacing: .25rem;
    writing-mode: tb-rl;
}

.scroll-top-bar .scroll-icon {
	position: absolute;
	bottom: 1rem;
	left: .75rem;
	width: .0625rem;
	height: 8.125rem;
	background-color: #ffffff;
	transform: rotate(180deg);
}

.scroll-top-bar .scroll-icon::before,
.scroll-top-bar .scroll-icon::after {
	content: '';
	position: absolute;
	background-color: #ffffff;
}

.scroll-top-bar .scroll-icon::before {
	width: 1rem;
	height: .0625rem;
    bottom: 2.8125rem;
    right: -.5rem;
}

.scroll-top-bar .scroll-icon::after {
	width: .0625rem;
	height: 2.8125rem;
	bottom: 0;
	left: .25rem;
	
	-webkit-transform: rotate(10deg);
	   -moz-transform: rotate(10deg);
	    -ms-transform: rotate(10deg);
	        transform: rotate(10deg);
}



/*  子页面  */
.page-pub-header-box {
	position: relative;
	margin-top: 8rem;
	margin-bottom: 20rem;
}

@media only screen and (min-width: 1600px) and (max-width: 1920px) {
	.page-pub-header-box {
		margin-bottom: 25rem;
	}
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.page-pub-header-box {
		margin-top: 0;
		margin-bottom: 0;
	}
}

.page-pub-title-box {
	position: relative;
	float: left;
	width: 50%;
	padding: 5rem 0 5rem 7.5rem;
	background-color: #111;
}

@media only screen and (min-device-width: 411px ) and (max-device-width: 414px) {
	.page-pub-title-box {
		width: 72%;
		padding: 3rem 0 2rem 4rem;
		margin-bottom: 2rem;
	}
}

@media only screen and (max-device-width: 375px ) {
	.page-pub-title-box {
		width: 67%;
		padding: 3rem 0 2rem 4rem;
		margin-bottom: 2rem;
	}
}

@media only screen and (max-device-width: 360px ) {
	.page-pub-title-box {
		width: 67%;
		padding: 3rem 0 2rem 4rem;
		margin-bottom: 2rem;
	}
}

.page-pub-title-box::after,
.page-pub-title-box::before {
	content: '';
	position: absolute;
	top: 0;
}

.page-pub-title-box::before {
	width: 4rem;
	height: 100%;
	right: -4rem;
	background-image: url(../img/bg-singleHead-tri.png);
	background-size: cover;
	background-repeat: no-repeat;
}

@media only screen and (min-device-width: 411px ) and (max-device-width: 414px) {
	.page-pub-title-box::before {
		right: -3.9rem;
	}
}

.page-pub-title {
	color: #fff;
}

.page-pub-title h1 {
	font-size: 3rem;
	letter-spacing: .25rem;
	color: #fff;
}

.page-pub-title p {
	font-size: 1.5rem;
	letter-spacing: .125rem;
}

.page-pub-title-box .uk-breadcrumb {
	position: absolute;
	bottom: 0;
}

.page-pub-header-box .page-right-image {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 60%;
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.page-pub-header-box .page-right-image,
	.uk-breadcrumb {
		display: none;
	}
}

.page-sevice-info-box {
	margin-bottom: 7.5rem;
}

@media only screen and (max-device-width: 360px ) {
	.page-sevice-info-box {
		margin-bottom: 3rem;
	}
}

.service-info-sub-title {
	margin-bottom: 3rem;
}

.service-info-sub-title h1 {
	letter-spacing: .25rem;
}

.service-info-top-card h3 {
	text-align: left;
	letter-spacing: .125rem;
}

.service-info-top-card ul.uk-list-square li {
	margin-bottom: 1rem;
	font-size: .875rem;
}

/* 调整服务详情title */
.page-info-items-title {
	width: 100vw;
}

@media only screen and (max-device-width: 360px ) {
	.page-info-items-title .pub-title {
		font-size: 2.25rem;
	}
}

.page-service-items div.uk-width-1-3 {
	float: left;
	margin-bottom: 3rem;
}

.page-service-items>* {
	padding-left: 40px;
}

@media only screen and (min-device-width: 411px ) and (max-device-width: 414px ) {
	.page-service-items div.uk-width-1-3 {
		width: 100%;
	}

	.page-service-items>* {
		padding-left: 0;
	}
}

@media only screen and (max-device-width: 375px ) {
	.page-service-items div.uk-width-1-3 {
		width: 100%;
	}

	.page-service-items>* {
		padding-left: 0;
	}
}

@media only screen and (max-device-width: 360px ) {
	.page-service-items div.uk-width-1-3 {
		width: 100%;
	}

	.page-service-items>* {
		padding-left: 0;
	}
}

.page-work-info-case {
	width: 100vw;
}

/* 关于我们 */
.page-about-text {
	margin: 7.5rem auto;
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.page-about-text {
		margin: 5rem auto;
	}
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.page-about-text .uk-article .uk-article-meta.uk-width-1-2 {
		width: 100% !important;
	}
}

.page-about-article-num {
	margin: 2rem auto;
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.page-about-article-num .uk-width-1-3 {
		width: 100%;
	}
}

.page-about-article-num .uk-card-badge {
	top: 0;
    right: inherit;
	left: 0;
}

.page-about-article-num .uk-card-title {
	font-size: 5rem;
	color: #4f3f92;
}

@media only screen and (min-device-width: 360px ) and (max-device-width: 414px) {
	.page-about-article-num .uk-card-title {
		text-align: center;
	}
	
	.sub-about-content .uk-width-1-3.uk-card {
		width: 100%;
		margin-bottom: 3rem;
	}
}
