<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* common css */
@import url('common.css');

/* owl-carousel */
@import url('owl.carousel.min.css');

/* more */
.more {
	display: inline-block;
	padding: 15px 40px;
	background: #ce342c;
	font-size: 17px;
	color: #FFF;
	letter-spacing: 1px;
	font-weight: bold;
	transition: all .3s;
}

.more::after {
	content: "";
	float: right;
	display: block;
	width: 9px;
	height: 14px;
	margin-left: 15px;
	background: url('../images/arrow_w.png');
}

.more:hover {
	background: #333;
}

/* section-title */
.section-title {
	margin-bottom: 25px;
	font-size: 36px;
	color: #333;
	letter-spacing: .5px;
}

.section-title span {
	color: #ce342c;
}

/* slider */
#slider {
	position: relative;
}

#slider::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 10%;
	display: block;
	width: 20px;
	height: 66px;
	margin-left: -10px;
	background: url('../images/scrolldown.gif');
	animation: 1s scroll alternate infinite;
}

@keyframes scroll {
	to {
		transform: translateY(10px);
	}
}

#slider .item {
	position: relative;
}

#slider .item img {
	display: block;
	width: 100%;
	height: auto;
}

#slider .item .wrap {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	margin-top: -100px;
	padding: 0 20px;
	text-align: center;
	box-sizing: border-box;
	opacity: 0;
	transition: all .5s .3s;
}

#slider .owl-item.active .item .wrap {
	opacity: 1;
}

#slider .item .wrap h2 {
	margin-bottom: 20px;
	overflow: hidden;
	font-size: 60px;
	color: #FFF;
	letter-spacing: .5px;
	white-space: nowrap;
	text-overflow: ellipsis;
	line-height: 70px;
}

#slider .item .wrap p {
	margin-bottom: 35px;
	overflow: hidden;
	font-size: 30px;
	color: #e5e5e5;
	line-height: 35px;
	letter-spacing: .5px;
	font-weight: bold;
	white-space: nowrap;
	text-overflow: ellipsis;
}

/* video */
#video {
	position: relative;
	width: 100%;
	height: 100vh;
}

#video video {
	position: absolute;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
}

/* solution */
#solution {
	position: relative;
	background: url('../images/upload/index_solution_bg.jpg') center center no-repeat;
	background-size: cover;
}

#solution h2 {
	position: absolute;
	left: 0;
	top: 60px;
	width: 100%;
	padding: 0 20px;
	font-size: 36px;
	color: #FFF;
	line-height: 40px;
	text-align: center;
	font-weight: normal;
	box-sizing: border-box;
	z-index: 2;
}

#solution .owl-item:nth-child(odd) {
	background: rgba(206, 52, 44, .5);
}

#solution .owl-item:nth-child(even) {
	background: rgba(221, 21, 16, .5);
}

#solution .item a {
	display: block;
	padding: 175px 0 120px 0;
	transition: all .3s;
}

#solution .item a:hover {
	background: rgba(0, 0, 0, .8);
}

#solution .item dt {
	margin-bottom: 35px;
}

#solution .item dt img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

#solution .item dd {
	text-align: center;
}

#solution .item dd h3 {
	margin-bottom: 15px;
	font-size: 24px;
	color: #e6e6e6;
	letter-spacing: .75px;
}

#solution .item dd em {
	font-size: 14px;
	color: #CCC;
	letter-spacing: .75px;
}

#solution .owl-dots {
	position: absolute;
	left: 0;
	bottom: 45px;
	display: flex;
	width: 100%;
	justify-content: center;
}

#solution .owl-dots .owl-dot {
	width: 5px;
	height: 5px;
	margin: 0 10px;
	background: #CCC;
	transition: all .3s;
}

#solution .owl-dots .owl-dot.active {
	width: 10px;
	background: #FFF;
}

/* about */
#about {
	position: relative;
	overflow: hidden;
}

#about img {
	display: block;
	max-width: 100%;
	height: auto;
}

#about .outer {
	position: absolute;
	right: 0;
	top: 0;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 780px;
	height: 100%;
	padding: 5%;
	background: #FFF;
	box-sizing: border-box;
	transform: translateX(100px);
}

#about .inner p {
	margin-bottom: 30px;
	font-size: 18px;
	color: #56565b;
	line-height: 36px;
	letter-spacing: 1px;
}

#about.active .outer {
	animation: fade 1s forwards;
}

/* news */
#news {
	position: relative;
	overflow: hidden;
}

#news img {
	float: right;
	display: block;
	max-width: 100%;
	height: auto;
}

#news .outer {
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 780px;
	height: 100%;
	padding: 5%;
	background: #EEE;
	box-sizing: border-box;
	transform: translateX(-100px);
}

#news .inner {
	width: 100%;
}

#news .inner .list {
	margin-bottom: 30px;
}

#news .inner .list li {
	padding: 15px 0;
	border-bottom: 1px solid #CCC;
	font-size: 17px;
	color: #333;
	letter-spacing: .5px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#news .inner .list li span {
	display: inline-block;
	margin-right: 15px;
	font-weight: bold;
}

#news .inner .list li a {
	color: #333;
	transition: all .3s;
}

#news .inner .list li a:hover {
	color: #ce342c;
}

#news.active .outer {
	animation: fade 1s forwards;
}

/* partner */
#partner {
	padding: 60px 20px 40px 20px;
}

#partner .section-title {
	text-align: center;
}

#partner .owl-carousel {
	position: relative;
	padding: 0 60px;
	box-sizing: border-box;
}

#partner .item a {
	display: block;
	transition: all .3s;
}

#partner .item a img {
	display: block;
	width: 100%;
	height: auto;
	backface-visibility: hidden;
}

#partner .item a:hover {
	opacity: .6;
}

#partner .owl-nav &gt; div {
	position: absolute;
	top: 50%;
	width: 19px;
	height: 30px;
	margin-top: -15px;
	background: url('../images/index_partner_arrow.png');
	text-indent: -9999px;
	opacity: .2;
	transition: all .3s;
}

#partner .owl-nav .owl-prev {
	left: 0;
	background-position: left top;
}

#partner .owl-nav .owl-next {
	right: 0;
	background-position: right top;
}

#partner .owl-nav &gt; div:hover {
	opacity: .5;
}

/* case */
#case {
	padding: 70px 20px 110px 20px;
	background: url('../images/upload/index_case_bg.jpg') center center no-repeat;
	background-size: cover;
}

#case .section-title {
	color: #FFF;
	text-align: center;
}

#case .owl-carousel {
	position: relative;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 60px;
	box-sizing: border-box;
}

#case .owl-carousel .item a {
	position: relative;
	display: block;
	padding-bottom: 153%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: all .3s;
}

#case .owl-carousel .item a .wrap {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 30px;
	box-sizing: border-box;
}

#case .owl-carousel .item a .wrap h3 {
	margin-bottom: 25px;
	font-size: 24px;
	color: #FFF;
	letter-spacing: .5px;
}

#case .owl-carousel .item a .wrap p {
	padding-left: 15px;
	border-left: 4px solid #ce342c;
	font-size: 17px;
	color: #CCC;
	line-height: 30px;
	letter-spacing: 1px;
}

#case .owl-carousel .item a:hover {
	opacity: .6;
}

#case .owl-carousel .owl-nav &gt; div {
	position: absolute;
	top: 50%;
	width: 30px;
	height: 46px;
	margin-top: -23px;
	background: url('../images/index_case_arrow.png');
	text-indent: -9999px;
	transition: all .3s;
}

#case .owl-carousel .owl-nav .owl-prev {
	left: 0;
	background-position: left top;
}

#case .owl-carousel .owl-nav .owl-next {
	right: 0;
	background-position: right top;
}

#case .owl-carousel .owl-nav &gt; div:hover {
	opacity: .6;
}

/* hire */
#hire {
	position: relative;
	display: flex;
	justify-content: flex-end;
	padding: 140px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

#hire::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, .7);
}

#hire .wrap {
	position: relative;
	width: 460px;
	opacity: 0;
}

#hire .wrap p {
	margin-bottom: 30px;
	font-size: 18px;
	color: #333;
	line-height: 36px;
	letter-spacing: .75px;
}

#hire.active .wrap {
	animation: fade 1s forwards;
}

@keyframes fade {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* RWD */
@media screen and (max-width: 768px) { 

	/* slider */
	#slider::after {
		display: none;
	}

	#slider .item .wrap {
		margin-top: -60px;
	}

	#slider .item .wrap h2 {
		margin-bottom: 10px;
		font-size: 30px;
	}

	#slider .item .wrap p {
		margin-bottom: 10px;
		font-size: 18px;
		line-height: 25px;
	}

	/* about */
	#about {
		text-align: center;
	}
	#about img {
		display: block;
	}

	#about .outer {
		position: static;
	}

	#about .inner p {
		text-align: left;
	}

	/* news */
	#news .inner .section-title {
		text-align: center;
	}

	#news img {
		float: none;
	}

	#news .outer {
		position: static;
	}

	/* hire */
	#hire {
		display: block;
		padding: 5%;
	}

	#hire::before {
		display: block;
	}

	#hire .wrap {
		width: 100%;
		text-align: center;
	}

}

@media screen and (max-width: 480px) {

	/* about */
	#about .outer {
		padding: 50px 20px;
	}

	/* solution */
	#solution h2 {
		font-size: 25px;
		line-height: 30px;
	}
	
	/* case */
	#case .owl-carousel .item a .wrap {
		padding: 0;
	}

	#case .owl-carousel .item a .wrap h3 {
		margin: 0;
		padding: 10px;
		background: #ce342c;
		text-align: center;
	}

	#case .owl-carousel .item a .wrap p {
		display: none;
	}

	/* hire */
	#hire {
		padding: 50px 20px;
	}

}</pre></body></html>