/*----------------------------------------------------------------
    General Rules
----------------------------------------------------------------*/

::selection {}

::-moz-selection {
	background: #000000;
	color: #fff;
}

::-webkit-input-placeholder {
	color: #b3b3b3;
}

:-moz-placeholder {
	/* Firefox 18- */
	color: #b3b3b3;
}

::-moz-placeholder {
	/* Firefox 19+ */
	color: #b3b3b3;
}

:-ms-input-placeholder {
	color: #b3b3b3;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	font-size: 100%;
	/* font-size: 16px; */
	;
}

body {
	background-color: #fbfbfb;
	color: #333;
	font-size: 1.125em;
	/* font-size: 18px; */
	font-family: "Microsoft YaHei", Arial;
	line-height: 1.8;
	font-weight: 100;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #222;
	font-family: "Microsoft YaHei", Arial;
	line-height: 1.34;
	text-rendering: auto;
	/* Android browser */
}

a {
	color: #222;
}

.csstransitions a {
	-webkit-transition: background-color 0.1s linear, color 0.1s linear;
	-moz-transition: background-color 0.1s linear, color 0.1s linear;
	transition: background-color 0.1s linear, color 0.1s linear;
}

input[type=""],
input:not([type]),
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
textarea,
textarea.plain {
	display: block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 1em;
	border: 1px solid rgba(0, 0, 0, 0.1);
	-webkit-border-radius: 0.333em;
	-moz-border-radius: 0.333em;
	border-radius: 0.333em;
	color: #333;
}

textarea:focus,
input:focus {
	outline: 0;
}

textarea:not([type="button"]):hover,
input:not([type="button"]):hover {
	border-color: #cad1d9 !important;
}

textarea:not([type="button"]):focus,
textarea:not([type="button"]):active,
input:not([type="button"]):focus,
input:not([type="button"]):active {
	border-color: #000000 !important;
}

img {
	display: block;
}

.centertxt {
	text-align: center;
}

#main {
	position: relative;
	z-index: 10;
	overflow: hidden;
	background-color: #FFFFFF;
}

/*   ???? */
section {
	/* overflow-x: hidden; */
}

.last-special {
	margin-right: 0% !important;
	margin-top: 100px;
}

.last-special p {
	font-size: 16px;
}

/*----------------------------------------------------------------
    Perfect Fourth (http://type-scale.com)
----------------------------------------------------------------*/

h1 {
	font-size: 2.369em;
}

h2 {
	font-size: 1.777em;
}

h3 {
	font-size: 1.333em;
}

h4 {
	font-size: 1em;
}

h5 {
	font-size: 0.75em;
}

h6 {
	font-size: 0.563em;
}

.row-content.buffer,
.row-content.buffer-top {
	padding-top: 3.8%;
	/* This overwrites a layers.css rule */
	;
}

/*----------------------------------------------------------------
    Loaders
----------------------------------------------------------------*/

.landing {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10001;
	width: 100%;
	height: 100%;
}

.loader {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 6.250em;
	height: 6.250em;
	-webkit-animation: rotate 2.4s linear infinite;
	-moz-animation: rotate 2.4s linear infinite;
	animation: rotate 2.4s linear infinite;
}

.spinner {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto auto;
	width: 5em;
	height: 2em;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.spinner>div {
	display: inline-block;
	width: 1em;
	height: 1em;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	background-color: #fff;
	-webkit-animation: bouncedelay 1.4s infinite ease-in-out;
	animation: bouncedelay 1.4s infinite ease-in-out;
	/* Prevent first frame from flickering when animation starts */
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.landing-slider .spinner>div {
	background-color: rgba(255, 255, 255, 0.5);
}

.landing-els .spinner>div {
	background-color: rgba(0, 0, 0, 0.2);
}

.spinner .bounce1 {
	margin-right: 0.5em;
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.spinner .bounce2 {
	margin-right: 0.5em;
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {

	0%,
	80%,
	100% {
		-webkit-transform: scale(0.0);
	}

	40% {
		-webkit-transform: scale(1.0);
	}
}

@keyframes bouncedelay {

	0%,
	80%,
	100% {
		-webkit-transform: scale(0.0);
		transform: scale(0.0);
	}

	40% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
	}
}

/*----------------------------------------------------------------
    Header menu
----------------------------------------------------------------*/

header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
	padding: 30px 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.97);
	-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

#intro video {}

.no-parallax #intro {
	position: relative !important;
}

.no-parallax header.transparent.light #brand a,
.no-parallax header.transparent.light nav>ul>li>a {
	color: #333 !important;
}

header.transition {
	-webkit-transition: background-color 0.3s ease;
	-moz-transition: background-color 0.3s ease;
	-ms-transition: background-color 0.3s ease;
	-o-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
}

header.transparent {
	background-color: transparent;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

header.transparent.light #brand a,
header.transparent.light nav>ul>li>a,
.caption {
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.idea-fixed {
	height: 800px;
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.caption {}

.caption p {
	letter-spacing: 0.8em;
	font-size: 14px;
}

.caption h2 img {
	width: auto;
	height: 70px;
	margin: 0 auto;
}

header.fixed-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9998;
	padding: 10px 0;
	background-color: rgba(255, 255, 255, 0.97);
	-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
	-webkit-transform: none !important;
	-moz-transform: none !important;
	-ms-transform: none !important;
	-o-transform: none !important;
	transform: none !important;
}

#BANVIDEO {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 800px;
	object-fit: cover;
	object-position: center center;
	z-index: 1;
}

#brand {
	float: left;
	clear: none;
}

#brand a,
nav a {
	text-decoration: none;
}

#brand img {
	width: 150px;
}

#brand h1 {
	font-size: 1.556em;
	line-height: 3rem;
	letter-spacing: 0.2em;
}

#brand h1 span {
	font-size: 16px;
	font-weight: 100;
	padding: 10px;
}

nav {
	position: relative;
	display: inline-block;
	float: right;
	clear: none;
}

#brand a,
nav a {
	color: #333;
}

.package-price .item {
	border: 2px solid #ECEEF0;
	text-align: center;
	padding: 30px;
	margin-bottom: 40px;
	position: relative;
}

.package-price .popular {
	border: 2px solid #7cc650;
}

.package-price .popular-text {
	top: 0;
	left: 50%;
	margin-left: -46px;
	margin-top: -2em;
	position: absolute;
	padding: 4px 20px;
	background: #7cc650;
	color: #fff;
}

.package-price a.price-btn {
	border: 1px solid #999;
	padding: 6px 18px;
	background-color: #fff;
	color: #999;
	font-size: 14px;
	border-radius: 5px;
}

.package-price a.price-btn:hover {
	border: 1px solid #333;
	background-color: #333;
	color: #fff;
	border-radius: 5px;
}

a.price-btn-a:hover {
	border: 1px solid #333;
	background-color: #333;
	color: #fff;
	border-radius: 5px;
}

.package-price .currency {
	left: -10px;
	top: -20px;
	font-size: 10px;
}

.package-price .pricing-info {
	font-size: 14px;
	padding: 0;
	margin: 0 0 30px 0;
	list-style: none;
	line-height: 40px;
}

a.price-btn-a {
	background-color: #7cc650;
	color: #fff;
	border: 1px solid #7cc650;
	padding: 6px 18px;
	font-size: 14px;
	border-radius: 5px;
}

.package-price .popular-text:after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -10px;
	border-top: 10px solid black;
	border-top-color: #7cc650;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
}

.package-price hr {
	margin-top: 20px;
	margin-bottom: 20px;
	border: 0;
	border-top: 1px solid #eeeeee;
}

.page .page-wz h2 {
	font-size: 1.7em;
	font-weight: 300;
}

.page .page-wz p {
	color: #666;
	font-size: 0.8em;
	line-height: 32px;
}

.page-wz h2 {
	margin-top: 100px;
}

#brand a img#default-logo,
#brand a img#retina-logo {
	float: left;
	margin-top: 0.286em;
	margin-right: 0.5em;
	height: 1.143em;
}

#brand a img#retina-logo {
	display: none;
}

/* retina logo */

@media only screen and (-moz-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 3/2),
only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5),
only screen and (min-resolution: 144dpi) {
	#brand a img#retina-logo {
		display: block;
	}

	#brand a img#default-logo {
		display: none;
	}
}

header.transparent.light #brand a,
header.transparent.light nav>ul>li>a {
	color: #fff;
}

header.transparent.light #brand a {
	display: block;
	width: 166px;
	height: 52px;
	background-image: url(/static/mobile/images/logo2.png);
	background-repeat: no-repeat;
	background-size: 166px 52px;
}

/* header.fixed-header.transparent.light #brand a {
	background-image: url(/static/mobile/images/logo.png);
	background-size: 43px 46px;
	width: 43px;
	height: 46px;
} */

header.fixed-header.transparent.light #brand a,
header.fixed-header.transparent.light nav>ul>li>a {
	color: #333;
	text-shadow: none;
}

header.fixed-header.transparent.light nav>ul>li:hover>a {
	border-bottom: 2px solid #333;
}

nav>ul,
nav>ul>li {
	float: left;
	clear: none;
}

nav>ul>li {
	margin: 0.5em 1.5em;
	text-transform: uppercase;
	font-size: 1em;
	font-family: "Microsoft YaHei", Arial;
	cursor: pointer;
}

nav>ul>li:last-child {}

nav>ul>li>a:before {
	line-height: 3rem;
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #fff;
	visibility: hidden;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

nav>ul>li>a:hover:before {
	visibility: visible;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

nav>ul>li:hover>a {}

header.transparent.light nav>ul>li:hover>a {}

.research-link .more-btn .button {
	padding: 0.3em 1.5em;
	margin-top: 10px;
}

nav li {
	position: relative;
	white-space: nowrap;
}

nav>ul li:hover>ul.sub-menu {
	display: block;
	/* show the submenu */
	;
}

nav .sub-arrow {
	padding-left: 0.500em;
	vertical-align: middle;
	font-size: 0.714em;
}

nav ul.sub-menu {
	position: absolute;
	left: 0;
	z-index: 9999;
	/* level 2 */
	display: none;
	margin-bottom: 0;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	-webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
}

nav ul.sub-menu ul.sub-menu {
	top: 0px;
	left: 100%;
	/* level 3+ */
	margin-top: -0.063rem;
	padding-top: 0;
}

nav ul.sub-menu>li>a {
	display: block;
	padding: 0.5rem 1rem;
	background-color: #F6F6F6;
	font-size: 0.786em;
}

nav ul.sub-menu>li>a:hover {
	background-color: #000000;
	color: #fff;
}

nav ul.sub-menu>li:first-child>a {
	border-radius: 2px 2px 0 0;
}

nav ul.sub-menu>li:last-child>a {
	border-radius: 0 0 2px 2px;
}

#menu-toggle {
	display: none;
	color: #222;
	text-decoration: none;
}

#menu-toggle i {
	line-height: 2;
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
}

#menu-toggle i.active {
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=-1);
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

#menu-toggle:hover {
	color: #222;
}

/*post-comment*/

#post-comment .post-k {
	width: 70%;
	margin: 0 auto;
}

/*----------------------------------------------------------------
    Intro
----------------------------------------------------------------*/

.bgimg-wrap {
	position: relative;
	width: 100%;
	height: 580px;
	overflow: hidden;
}

.bgimg {
	width: inherit;
	height: inherit;
}

.bgimg-item {
	width: inherit;
	height: 580px;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
}

.bgimg-item h2,
.bgimg-item p {
	text-align: center;
	color: #fff;
}

#intro-wrap {
	position: relative;
	width: 100%;
}


#intro-mid #intro-wrap {
	height: 700px;
}

#intro-small #intro-wrap {
	/* height: 600px; */
}

#intro {
	position: fixed;
	width: inherit;
	height: inherit;
}

#intro .intro-item {
	position: absolute;
	width: inherit;
	height: inherit;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
}

#intro.preload .intro-item {
	visibility: hidden;
}

.darkover {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	/* background: rgba(0, 0, 0, 0.35); */
}

#intro .intro-mockup,
.caption,
.caption-mockup,
.photocaption {
	z-index: 2;
}

.photocaption a {
	font-style: normal;
	text-decoration: none;
	padding-left: 10px;
}

.caption,
.photocaption {
	position: absolute;
}

#intro .intro-mockup-wrapper,
.caption,
.photocaption {
	margin: 0 auto;
	padding: 0 8%;
}

#intro .intro-mockup-wrapper {
	max-width: 72em;
}

#intro .intro-mockup img {
	margin: 20px auto;
	max-width: 30em;
}

#intro .intro-mockup.intro-left img,
#intro .intro-mockup.intro-right img {
	max-width: 72em;
}

.intro-mid {
	height: 600px;
}

.intro-small {
	height: 400px;
}

.owl-item .caption h2,
.owl-item .caption p,
.owl-item .caption .button,
.owl-item .caption-mockup h2,
.owl-item .caption-mockup p,
.owl-item .caption-mockup .button,
.owl-item .photocaption {
	opacity: 0;
}

.caption,
.caption-mockup {
	width: 100%;
	text-align: center;
}

.caption,
.caption h2,
.caption-mockup,
.caption-mockup h2,
.photocaption,
.photocaption h4 {
	color: #fff;
}

.photocaption h4 {
	border-radius: 0.33em;
	-webkit-transition: background-color 0.3s linear, color 0.3s linear;
	-moz-transition: background-color 0.3s linear, color 0.3s linear;
	transition: background-color 0.3s linear, color 0.3s linear;
}

.photocaption h4:hover {
	background-color: #333;
}

.caption.dark,
.caption.dark h2,
.caption-mockup.dark,
.caption-mockup.dark h2 {
	color: #333;
}

.caption h2,
.caption-mockup h2 {
	margin-bottom: 0.5em;
	font-size: 2em;
	font-weight: 300;
}

.caption h2 {
	margin-top: 0;
}

.caption p,
.caption-mockup p {
	margin-bottom: 1.6em;
}

.caption-mockup.caption-left {
	float: left;
}

.caption-mockup.caption-right {
	float: right;
}

.photocaption {
	right: 1.111em;
	bottom: 1.111em;
	padding: 0;
	max-width: 20%;
	border-radius: 1.111em;
}

.photocaption h4 {
	margin: 0;
	padding: 0.778em 1em;
	background-color: #0457b7;
	font-weight: 500;
	font-size: 0.778em;
	font-family: "Microsoft YaHei", Arial;
}

.caption a,
.caption-mockup a,
.photocaption a {
	color: #fff;
}

#intro-wrap .more {
	position: absolute;
	bottom: 0;
	margin: 0;
	width: 100%;
	text-align: center;
	font-size: 2.667em;
}

#intro-wrap:hover .preload .more a {
	opacity: 0;
	filter: Alpha(Opacity=0);
	/* IE7 fix */
	;
}

#intro-wrap .more a {
	color: #fff;
	opacity: 0;
	filter: Alpha(Opacity=0);
	/* IE7 fix */
	-webkit-transition: opacity .3s ease;
	-moz-transition: opacity .3s ease;
	transition: opacity .3s ease;
}

#intro-wrap:hover .more a {
	opacity: 1;
	filter: Alpha(Opacity=100);
	/* IE7 fix */
	;
}

/*----------------------------------------------------------------
    Blog & Portfolio
----------------------------------------------------------------*/

.single #post-nav ul {
	padding: 1em 0;
	border-bottom: 1px solid #ddd;
	line-height: 1.778em;
}

.single #post-nav i {
	vertical-align: middle;
}

.single .post-nav,
.pagination-nav {
	float: left;
	clear: none;
	min-height: 1px;
}

.single .post-nav {
	width: 33.3%;
}

.pagination-nav {
	width: 50%;
}

.single #post-nav #all-items {
	text-align: center;
	font-size: 1.778em;
}

.single #prev-items,
#pagination #older {
	text-align: left;
}

.single #next-items,
#pagination #newer {
	text-align: right;
}

.single #post-nav a {
	color: #ccc;
	text-decoration: none;
}

.single #post-nav a:hover {
	color: #000000;
}

.single #post-nav .label {
	text-transform: uppercase;
	font-family: "Microsoft YaHei", Arial;
}

.single #post-nav .label,
.single #post-nav #prev-items i,
.single #post-nav #next-items i {
	font-size: 0.75em;
}

.single #post-nav #prev-items .label {
	padding-left: 1.5em;
}

.single #post-nav #next-items .label {
	padding-right: 1.5em;
}

#pagination #newer .button i {
	margin-right: 0;
	margin-left: 0.667em;
}

.blog h5,
.blog-section h5,
.single h5,
.single .meta-post a,
.blog.list-style .meta-post a,
.search.list-style .meta-post,
.search.list-style .meta-post a {
	color: #666;
	font-weight: 100;
}

.blog .column.six h5,
.blog-section .column.six h5 {
	color: rgba(255, 255, 255, 0.7);
}

.blog-overlay i {
	color: #fff;
}

.single .meta-post a,
.blog.list-style .meta-post a,
.search.list-style .meta-post a {
	text-decoration: none;
}

.single .meta-post a:hover,
.blog.list-style .meta-post a:hover,
.search.list-style .meta-post a:hover {
	color: #000000;
}

.copyright-c {
	text-align: center;
	margin: 40px 0 20px 0;
}

.single h1 {
	font-size: 1.2em;
	font-weight: 500;
}

.single .post-area p {
	font-size: 16px;
	line-height: 40px;
}

.single .post-area p a {
	color: #2664cd;
	font-weight: bold;
}

.single .post-area p a:hover {
	color: #4e8aef;
}

.post-area .nine {
	padding-right: 40px;
}

.post-area .nine p img {
	text-align: center;
}

.single .meta-social,
.single .related {
	margin-bottom: 1.34em;
}

#top-footer .meta-social {
	margin-right: 0;
}

.single .related h4 {
	margin-bottom: 1.34em;
}

.single-page-f {
	color: #999;
	font-size: 16px;
	line-height: 40px;
	list-style-type: none;
	margin: 0;
	padding-left: 0;
	border-top: 1px solid #EAE7E7;
	padding-top: 20px;
}

.single-page-f a {
	color: #000;
}

.single-page-f a:hover {
	color: #333;
}

.single-page-f {}

.blog.list-style article,
.blog-section.list-style article,
.search.list-style article {
	margin-bottom: 0 !important;
	padding: 3em 0;
	margin-right: 40px;
	border-bottom: 1px solid #DDD;
}

.blog.list-style h2,
.blog-section.list-style h2,
.search.list-style h2 {
	margin-top: 0;
	margin-bottom: 0.6em;
	font-weight: 100;
	font-size: 28px;
}

.blog.list-style h5,
.blog-section.list-style h5,
.search.list-style h5 {
	font-weight: 100;
}

.blog.list-style article figure img,
.blog-section.list-style article figure img,
.search.list-style article figure img {
	width: 80%;
}

.blog.list-style article p,
.blog-section.list-style article p,
.search.list-style article p {
	margin-bottom: 0;
	font-size: 14px;
	line-height: 28px;
}

.blog.masonry-style article h5,
.blog-section.masonry-style article h5 {
	text-transform: uppercase;
}

.blog.masonry-style article.six figure img,
.blog.masonry-style article.eight figure img,
.blog-section.masonry-style article.six figure img,
.blog-section.masonry-style article.eight figure img {
	width: 100%;
}

.about-excerpt h2 {
	margin: 20px 0;
	font-size: 1.5em;
	font-weight: 500;
}

.about-excerpt h5 {
	font-weight: 100;
	font-size: 14px;
	margin-bottom: 30px;
}

.about-excerpt-inner p {
	font-size: 16px;
	line-height: 42px;
	padding: 17px;
}

.blog.masonry-style article.six .blog-excerpt,
.blog.masonry-style article.eight .blog-excerpt,
.blog-section.masonry-style article.six .blog-excerpt,
.blog-section.masonry-style article.eight .blog-excerpt {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 0 1em;
}

.blog.masonry-style article.six .blog-excerpt h2,
.blog.masonry-style article.eight .blog-excerpt h2,
.blog-section.masonry-style article.six .blog-excerpt h2,
.blog-section.masonry-style article.eight .blog-excerpt h2 {
	margin-top: 0;
	color: #fff;
	font-size: 1.333em;
}

.blog.masonry-style article.three,
.blog.masonry-style article.four,
.blog-section.masonry-style article.three,
.blog-section.masonry-style article.four {
	-webkit-border-radius: 1em;
	-moz-border-radius: 1em;
	border-radius: 1em;
}

.blog-section.masonry-style article figure,
.related figure {
	overflow: hidden;
}

.related figure img,
.blog.masonry-style article.three figure img,
.blog.masonry-style article.four figure img,
.blog-section.masonry-style article.three figure img,
.blog-section.masonry-style article.four figure img {
	width: 100%;
	transform: scale(1) translateZ(0);
	transition: -webkit-transform 0.7s 0s cubic-bezier(0.35, 0, 0, 1);
	transition: transform 0.7s 0s cubic-bezier(300, 23, 4, 33);
}

.related .item:hover figure img,
.blog-section.masonry-style .four:hover figure img {
	transform: scale(1.1) translateZ(0);
}

.blog.masonry-style article.four .blog-excerpt {}

.blog.masonry-style article.three .blog-excerpt,
.blog.masonry-style article.four .blog-excerpt,
.blog-section.masonry-style article.three .blog-excerpt,
.blog-section.masonry-style article.four .blog-excerpt {
	overflow: hidden;
	padding: 0.556em 0;
	margin-bottom: 20px;
}

.blog.masonry-style article.three .blog-excerpt h2,
.blog.masonry-style article.four .blog-excerpt h2,
.blog-section.masonry-style article.three .blog-excerpt h2,
.blog-section.masonry-style article.four .blog-excerpt h2 {
	margin-top: 0;
	font-size: 0.889em;
	font-weight: 300;
	color: #000;
}

.blog.masonry-style article.three .blog-excerpt p,
.blog.masonry-style article.four .blog-excerpt p,
.blog-section.masonry-style article.three .blog-excerpt p,
.blog-section.masonry-style article.four .blog-excerpt p {
	color: #333;
	font-size: 14px;
	font-weight: 100;
	margin: 0;
}

.blog-section.masonry-style article.fifth .blog-excerpt p {
	font-size: 14px;
}

.blog.masonry-style article.three .blog-excerpt h5,
.blog.masonry-style article.four .blog-excerpt h5,
.blog-section.masonry-style article.three .blog-excerpt h5,
.blog-section.masonry-style article.four .blog-excerpt h5 {
	margin-top: 0.5em;
	font-size: 0.667em;
	font-weight: 100;
	color: #999;
}

.five-c .blog-excerpt-inner {
	padding: 15px;
	background-color: #fff;
}

.five-c .blog-excerpt-inner h3 {
	font-size: 1.2em;
	font-weight: 100;
	margin: 0;
	line-height: 2.2;
}

.five-c .blog-excerpt-inner p {
	font-size: 14px;
	line-height: 30px;
	color: #999;
}

.blog.masonry-style article.three .blog-excerpt-inner,
.blog.masonry-style article.four .blog-excerpt-inner,
.blog-section.masonry-style article.three .blog-excerpt-inner,
.blog-section.masonry-style article.four .blog-excerpt-inner {
	overflow: hidden;
	height: 100%;
}

.blog.masonry-style article a figure,
.blog-section.masonry-style article a figure {
	position: relative;
}

/*slider-works
.slider-works .blog-overlay{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background-color: #000000;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    -moz-opacity: 0;
}
.slider-works a:hover .blog-overlay{
    opacity: 0.8;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
}
.slider-works a:hover i{
    -webkit-animation: overlay .5s ease forwards;
    -moz-animation: overlay .5s ease forwards;
    animation: overlay .5s ease forwards;
}
.slider-works a:hover .blog-overlay i{
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 2em;
}
*/

.blog.masonry-style article a figure .blog-overlay,
.blog-section.masonry-style article a figure .blog-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	background-color: #000000;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	-moz-opacity: 0;
}

.blog.masonry-style article a,
.blog-section.masonry-style article a {
	text-decoration: none;
}

.blog.masonry-style article a:hover figure .blog-overlay,
.blog-section.masonry-style article a:hover figure .blog-overlay {
	opacity: 0.5;
	filter: alpha(opacity=0.5);
	-moz-opacity: 0.5;
}

.blog.masonry-style article a:hover figure .blog-overlay i,
.blog-section.masonry-style article a:hover figure .blog-overlay i {
	-webkit-animation: overlay .5s ease forwards;
	-moz-animation: overlay .5s ease forwards;
	animation: overlay .5s ease forwards;
}

.blog.masonry-style article figure .blog-overlay i,
.blog-section.masonry-style article figure .blog-overlay i {
	position: absolute;
	width: 100%;
	text-align: center;
	font-size: 2em;
}

.blog.masonry-style article.three figure .blog-overlay i,
.blog-section.masonry-style article.three figure .blog-overlay i {
	top: 35%;
}

.blog.masonry-style article.six figure .blog-overlay i,
.blog-section.masonry-style article.six figure .blog-overlay i {
	top: 10%;
}

.blog-li .meta-post {
	margin-top: 20px;
	color: #666;
    font-weight: normal;
}


.blog.list-style article h2 a,
.blog-section.list-style article h2 a,
.search.list-style article h2 a {
	color: #000;
	text-decoration: none;
}

.blog.list-style article h2 a:hover,
.blog-section.list-style article h2 a:hover,
.search.list-style article h2 a:hover {
	color: #666;
	text-decoration: none;
}

.blog.list-style article.last,
.blog-section.list-style article.last,
.search.list-style article.last {
	border: none;
}

.portfolio ul.cats {
	margin-top: 0;
	text-align: center;
	margin-bottom: 40px;
}

.portfolio ul.cats li {
	margin-right: 1.5em;
	color: #444;
	line-height: 4em;
	padding: 10px 20px;
	border: 1px solid #D6D5D5;
	border-radius: 0.333em;
	font-weight: 500;
	font-size: 0.889em;
	font-family: "Microsoft YaHei", Arial;
	cursor: pointer;
	-webkit-transition: background-color 0.3s linear, color 0.3s linear;
	-moz-transition: background-color 0.3s linear, color 0.3s linear;
	transition: background-color 0.3s linear, color 0.3s linear;
}

.portfolio ul.cats li:hover {
	border: 1px solid #000000;
	color: #000000;
	background: none;
}

.portfolio ul.cats .active {
	background-color: #000000;
	color: #fff;
	border: none;
}

.portfolio ul.cats li.active:hover {
	background-color: #000000;
	color: #fff;
	border: none;
}

.hz-c .item {
	margin-bottom: 20px;
}

.hz-c .imggg {
	filter: alpha(opacity:50);
	opacity: 0.5;
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	border-radius: 0;
}

.ge-team .imggg {
	width: 70%;
	text-align: center;
	margin: 0 auto;
	border-radius: 50%;
}

.ge-team .about-excerpt-inner h2,
.ge-team .about-excerpt-inner h5 {
	text-align: center;
}

.related .item {
	position: relative;
	float: left;
	clear: none;
	margin-bottom: 3.8%;
	margin-left: 0;
	width: 33.333333%;
}

.related .item.last {
	margin-right: 0% !important;
}

.related img,
.related .overlay,
.portfolio-section figure img,
.portfolio-section .overlay {}

.portfolio figure img,
.portfolio .overlay,
.portfolio-section figure img,
.portfolio-section .overlay,
.single-portfolio figure img,
.single-portfolio .overlay {
	width: 100%;
}

.slider-works .overlay,
.portfolio .overlay,
.portfolio-section .overlay,
.related .overlay {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	overflow: hidden;
	padding: 0 1em;
	width: 100%;
	height: 100%;
	border-bottom: none;
	background-color: #000;
	color: #fff;
	text-align: center;
	opacity: 0;
	filter: alpha(opacity=0);
	cursor: pointer;
	-moz-opacity: 0;
}

.portfolio-section.dribbble-items .overlay {
	background-color: rgba(255, 107, 171, 0.9);
}

.portfolio .overlay i,
.portfolio-section .overlay i,
.related .overlay i {
	font-size: 2em;
	line-height: 1.8;
}

.portfolio .overlay h2,
.portfolio-section .overlay h2,
.related .overlay h2 {
	margin-top: 0.67em;
	color: #fff;
	text-transform: uppercase;
	font-size: 0.889em;
}

.portfolio .overlay p,
.portfolio-section .overlay p,
.related .overlay p {
	font-size: 0.722em;
}

.fluidvids {
	margin-bottom: 1em;
}

.portfolio-section .overlay-content,
.portfolio .overlay,
.portfolio .overlay-content,
.portfolio-section .overlay,
.slider-works .overlay-content,
.related .overlay,
.related .overlay-content {
	-webkit-transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}

.slider-works .overlay,
.portfolio .overlay,
.portfolio-section .overlay,
.related .overlay {
	text-decoration: none;
}

.slider-works .overlay:hover,
.portfolio .overlay:hover,
.portfolio-section .overlay:hover,
.related .overlay:hover {
	opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
}

.slider-works .overlay:hover .overlay-content,
.portfolio .overlay:hover .overlay-content i,
.portfolio-section .overlay:hover .overlay-content i,
.related .overlay:hover .overlay-content i {
	-webkit-animation: overlay .5s ease forwards;
	-moz-animation: overlay .5s ease forwards;
	animation: overlay .5s ease forwards;
}

@-webkit-keyframes overlay {
	from {
		-webkit-transform: translateY(-0.5em);
	}
}

@-moz-keyframes overlay {
	from {
		-moz-transform: translateY(-0.5em);
	}
}

@keyframes overlay {
	from {
		transform: translateY(-0.5em);
	}
}

/*----------------------------------------------------------------
    Masonry
----------------------------------------------------------------*/

.grid-items,
.dribbble-items {
	position: relative;
	overflow: hidden;
}

.grid-items {
	min-height: 15em;
}

.dribbble-items {
	min-height: 9em;
}

.grid-items .column.three,
.grid-items .column.four,
.grid-items .column.six,
.grid-items .column.eight {
	margin-right: 0;
}

.shuffle-sizer {
	position: absolute;
	visibility: hidden;
	margin-left: 1.5%;
	min-height: 1px;
	opacity: 0;
}

.shuffle-sizer.three {
	width: 22.05%;
}

.shuffle-sizer.four {
	width: 32.33%;
}

.grid-items .item,
.dribbble-items .item {
	position: relative;
}

.dribbble-items .item {
	-webkit-transform: scale3d(1, 1, 1);
	/* Fix some Chrome flikering on hover */
	;
}

.grid-items.preload .item,
.dribbble-items.preload .item {
	display: none;
}

@media handheld,
only screen and (max-width:48em) {
	.shuffle-sizer-four {
		margin-left: 3.8%;
		width: 48%;
	}

	.grid-items.shuffle .column {
		width: 100% !important;
	}

	.grid-items .item,
	.dribbble-items .item {
		position: relative;
		margin-bottom: 3.8%;
	}
}

/*----------------------------------------------------------------
    Comments
----------------------------------------------------------------*/

#comments,
#reply-title {
	margin-bottom: 2em;
	color: #ccc;
	text-transform: uppercase;
	font-size: 0.778em;
}

#reply-title {
	margin-bottom: 0;
}

.comment-section {
	margin-bottom: 3em;
}

.single-comment {
	position: relative;
	margin-bottom: 2em;
	padding-left: 4.444em;
}

.comment-list li.comment>div img.avatar {
	position: absolute;
	top: 0;
	left: 0;
	float: left;
	width: 4.286em;
	height: 4.286em;
	-webkit-border-radius: 25%;
	-moz-border-radius: 25%;
	border-radius: 25%;
}

.comment-author cite {
	font-style: normal;
}

.comment-author cite a,
a.reply {
	color: #333;
	text-decoration: none;
}

.comment-author cite a:hover,
a.reply:hover {
	color: #000000;
}

.comment-author {
	font-weight: 700;
}

.comment-author,
.single-comment p {
	font-size: 0.778em;
}

.comment-meta {
	color: #999;
	font-size: 0.667em;
}

.comment-note {
	font-size: 1em;
}

.comment-list .children {
	padding-left: 2em;
}

/*----------------------------------------------------------------
    Error pages
----------------------------------------------------------------*/

.error404 h2,
.search-no-results h2,
.search-results>h4 {
	margin-top: 0;
}

.error404 article,
.search-no-results article,
.search-results {
	margin-top: 3em;
}

/*----------------------------------------------------------------
    Sidebar
----------------------------------------------------------------*/

.widget {
	font-size: 0.8em;
}

.widget a:hover {
	color: #666;
}

.widget h4 {
	margin-top: 0;
	color: #000;
}

.widget {
	margin-bottom: 3.333em;
}

.widget_search input,
.search-no-results input {
	padding-left: 3.077em;
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 1.538em;
}

.widget_search form,
.search-no-results form {
	position: relative;
}

.pre-input {
	position: absolute;
}

.pre-input i {
	padding: 0.35em 0.6em 0.4em 1em;
	color: #ccc;
	line-height: 1.8 !important;
}

/*----------------------------------------------------------------
    Widgets
----------------------------------------------------------------*/

.widget h4 {
	text-transform: uppercase;
	font-size: 0.875rem;
	font-weight: 100;
}

/*----------------------------------------------------------------
    Social widgets
----------------------------------------------------------------*/

.meta-social ul li,
ul.meta-social li {
	padding: 0 0.278em;
	text-align: center;
}

.meta-social ul li a,
ul.meta-social li a {
	display: inline-block;
	width: 70px;
	height: 70px;
	border: 1px solid;
	border-color: rgba(0, 0, 0, 0.1);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	color: rgba(0, 0, 0, 0.18);
}

.text-light .meta-social ul li a,
.text-light ul.meta-social li a {
	border-color: rgba(255, 255, 255, 0.5);
	color: rgba(255, 255, 255, 0.5);
}

.meta-social ul li a i,
ul.meta-social li a i {
	vertical-align: middle;
	font-size: 30px;
	line-height: 70px;
}

.meta-social ul li a:hover,
ul.meta-social li a:hover {
	color: #fff;
}

.meta-social ul li a.dribbble-share:hover,
ul.meta-social li a.dribbble-share:hover {
	border-color: #ea4c89;
	background-color: #ea4c89;
}

.meta-social ul li a.facebook-share:hover,
ul.meta-social li a.facebook-share:hover {
	border-color: #3b5998;
	background-color: #3b5998;
}

.meta-social ul li a.flickr-share:hover,
ul.meta-social li a.flickr-share:hover {
	border-color: #0063dc;
	background-color: #0063dc;
}

.meta-social ul li a.github-share:hover,
ul.meta-social li a.github-share:hover {
	border-color: #171515;
	background-color: #171515;
}

.meta-social ul li a.weixin-share:hover,
ul.meta-social li a.weixin-share:hover {
	border-color: #64b257;
	background-color: #64b257;
}

.meta-social ul li a.weibo-share:hover,
ul.meta-social li a.weibo-share:hover {
	border-color: #d83637;
	background-color: #d83637;
}

.meta-social ul li a.qq-share:hover,
ul.meta-social li a.qq-share:hover {
	border-color: #5594d0;
	background-color: #5594d0;
}

.meta-social ul li a.gplus-share:hover,
ul.meta-social li a.gplus-share:hover {
	border-color: #dd4b39;
	background-color: #dd4b39;
}

.meta-social ul li a.instagram-share:hover,
ul.meta-social li a.instagram-share:hover {
	border-color: #3f729b;
	background-color: #3f729b;
}

.meta-social ul li a.linkedin-share:hover,
ul.meta-social li a.linkedin-share:hover {
	border-color: #0e76a8;
	background-color: #0e76a8;
}

.meta-social ul li a.pinterest-share:hover,
ul.meta-social li a.pinterest-share:hover {
	border-color: #c8232c;
	background-color: #c8232c;
}

.meta-social ul li a.skype-share:hover,
ul.meta-social li a.skype-share:hover {
	border-color: #00aff0;
	background-color: #00aff0;
}

.meta-social ul li a.twitter-share:hover,
ul.meta-social li a.twitter-share:hover {
	border-color: #00acee;
	background-color: #00acee;
}

.meta-social ul li a.vimeo-share:hover,
ul.meta-social li a.vimeo-share:hover {
	border-color: #44bbff;
	background-color: #44bbff;
}

.meta-social ul li a.youtube-share:hover,
ul.meta-social li a.youtube-share:hover {
	border-color: #c4302b;
	background-color: #c4302b;
}

footer .meta-social ul li {
	padding-right: 0.5em;
	padding-left: 0;
}

.widget.meta-social ul li a i {
	vertical-align: -15%;
}

/*----------------------------------------------------------------
    Sections
----------------------------------------------------------------*/

section {
	background-color: inherit;
}

section.greyish,
.greyish {
	background-color: #f3f3f3;
}

.section-title {
	margin-bottom: 3em;
	text-align: center;
}

.section-title h3 {
	display: inline-block;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
	text-transform: uppercase;
	font-size: 0.889em;
	line-height: 1.8;
}

.section-title h2 {
	position: relative;
	font-size: 1.7em;
	font-weight: 300;
	color: #000;
	margin-bottom: 10px;
}

/*.section-title h2:before {

	position: absolute;
    bottom: -20px;
    content: "";
    width: 50px;
    margin-left: -25px;
    height: 2px;
    left: 50%;
    background: #000000;
}*/

.section-title.pj h2:before {
	background: #ffffff;
}

.section-title p {
	color: #999;
	font-size: 0.8em;
	letter-spacing: 0.1em;
	font-weight: 100;
}

a.anchor {
	display: block;
	position: relative;
	top: -110px;
	visibility: hidden;
}

/*----------------------------------------------------------------
    CTA
----------------------------------------------------------------*/

.call-to-action .row-content.buffer {
	padding-top: 4%;
	padding-bottom: 4%;
}

.call-to-action {
	text-align: center;
}

.call-to-action p {
	display: inline-block;
	font-family: "Microsoft YaHei", Arial;
	margin-bottom: 0;
}

.call-to-action .button {
	margin-right: 1em;
	margin-left: 1em;
	margin-bottom: 0;
}

/*----------------------------------------------------------------
    Featured columns
----------------------------------------------------------------*/

.tj .small-icon {
	background: none;
	line-height: 2;
}

.big-icon {
	width: 2em;
	height: 2em;
	line-height: 2;
}

.small-icon-text {
	margin-left: 4.444em;
}

.sevies-box .sevies-hold {
	width: 100%;
	height: 240px;
	clear: both;
}

.sevies-box {
	height: 240px;
	-webkit-transition: box-shadow 0.3s linear, translate3d 0.3s linear;
	-moz-transition: box-shadow 0.3s linear, translate3d 0.3s linear;
	transition: box-shadow 0.3s linear, translate3d 0.3s linear;
	margin-bottom: 20px;
	transition: all 0.2s linear;
	background-position: top center;
	vertical-align: middle;
	padding: 10px;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 1000;
}

.sevies-box:hover {
	background-position: center center;
}

.sevies-box:hover .sevies-a {
	-webkit-box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
	-webkit-transform: translate(0 -5px);
	-moz-transform: translate(0 -5px);
	transform: translate(0, -15px);
	height: 110%;
	transition: all 0.2s linear;
}

.sevies-a-green {
	background-image: url(/static/mobile/images/green-bg.jpg);
}

.sevies-a-blue {
	background-image: url(/static/mobile/images/blue-bg.jpg);
}

.sevies-a-puple {
	background-image: url(/static/mobile/images/puple-bg.jpg);
}

.sevies-a-orange {
	background-image: url(/static/mobile/images/orange-bg.jpg);
}

.sevies-a {
	width: 100%;
	height: 100%;
	background-size: cover;
	overflow: hidden;
	transition: all 0.2s linear;
}

.sevies-box .small-icon {
	display: table-cell;
	vertical-align: middle;
	font-size: 100px;
	font-weight: normal;
	transition: all 0.2s linear;
	filter: alpha(Opacity=40);
	-moz-opacity: 0.4;
	opacity: 0.4;
}

.sevies-box .small-icon {
	-webkit-transition: background-color 0.3s linear, color 0.3s linear;
	-moz-transition: background-color 0.3s linear, color 0.3s linear;
	transition: background-color 0.3s linear, color 0.3s linear;
	width: 160px;
	line-height: 40px;
	vertical-align: middle;
	font-size: 2.5em;
	transition: all 0.3s linear;
}

.sevies-box:hover .small-icon {
	transform: translate(0, -20px);
	filter: alpha(Opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

.small-icon {
	margin-top: 20px;
	display: block;
	float: left;
	font-size: 1.667em;
}

.sevies-box .small-icon-text {
	text-align: center;
	margin-left: 20px;
}

.sevies-box .small-icon-text h4 {
	margin-top: 0.7em;
	font-size: 1.7em;
	font-weight: 400;
	transition: all 0.2s linear;
}

.sevies-box:hover .small-icon-text h4 {
	font-size: 1.8em;
}

.text-ts p {
	margin: 0;
	padding: 0;
}

.text-ts {
	padding: 23px;
	position: relative;
}

.text-xs {
	color: #fff;
	font-size: 14px;
}

.text-ds .small-icon {
	position: relative;
	margin-top: 0px;
	left: 50px;
}

.text-r {
	position: absolute;
	font-size: 14px;
	right: 23px;
	top: 23px;
}

.text-r a {
	font-size: 14px;
}

.small-icon i {
	width: inherit;
	text-align: center;
}

.small-icon,
.small-icon-text,
.small-icon-text h4,
.small-icon-text p {
	font-weight: 100;
	clear: none;
}

.big-icon-text h4 {
	font-size: 1.333em;
}

.big-icon {
	display: inline-block;
	font-size: 5.556em;
}

.text-s {
	font-size: 0.778em;
}

.sevies-box-s .small-icon-text {
	margin-left: 7em;
}

.sevies-box-s h4 {
	font-weight: 100;
}

.sevies-box-s .text-xs,
.sevies-box-s-t .text-xs {
	color: #999;
}

.sevies-box-s {
	margin-bottom: 40px;
}

.sevies-box-s .small-icon {
	font-size: 2em;
	margin-left: 50px;
}

.sevies-box-s .text-light {
	color: rgba(255, 255, 255, 0.9);
}

.sevies-box-s-t .small-icon {
	float: none;
	text-align: center;
}

.sevies-box-s-t .small-icon i {
	font-size: 46px;
}

.sevies-box-s-t .small-icon-text {
	margin-left: 0;
}

.sevies-box-s-t .small-icon-text h4,
.sevies-box-s-t .small-icon-text p {
	text-align: center;
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light i {
	color: #fff;
}

.text-light .big-icon {
	background-color: rgba(255, 255, 255, 0.15);
}

.text-light a {
	color: #fff;
}

/*----------------------------------------------------------------
    Portfolio section
----------------------------------------------------------------*/

.more-btn {
	text-align: center;
	margin-top: 20px;
}

/*----------------------------------------------------------------
    Skills rings
----------------------------------------------------------------*/

.chart {
	position: relative;
	display: inline-block;
	margin: 1em;
	width: 178px;
	height: 178px;
	text-align: center;
}

.chart canvas {
	width: 178px;
	height: 178px;
}

.chart-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.percent,
.count-number,
.count-number-done {
	color: #000000;
	font-weight: 400;
	font-size: 3em;
	font-family: "Microsoft YaHei", Arial;
	line-height: 2;
}

.text-light .percent,
.text-light .count-number,
.text-light .count-number-done {
	color: #fff;
}

.percent:after {
	content: '%';
}

.chart-title,
.count-subject {
	font-weight: 500;
	font-size: 0.889em;
	font-family: "Microsoft YaHei", Arial;
	color: #333333;
}

.chart-title {
	color: #999;
}

.text-light .chart-title,
.text-light .count-subject {
	color: rgba(255, 255, 255, 0.7);
}

.text-light .timeline .experience-info p {
	color: rgba(255, 255, 255, 0.7);
}

.text-light .timeline time {
	color: rgba(255, 255, 255, 0.5);
}

.text-light .timeline .experience,
.text-light .timeline .experience .circle {
	border-color: rgba(255, 255, 255, 0.5);
}

/*----------------------------------------------------------------
    Milestone
----------------------------------------------------------------*/

.count-item {
	text-align: center;
	padding-top: 40px;
	padding-bottom: 40px;
}

.count-item .small-icon {
	float: none;
	margin: 0 auto 0.333em auto;
}

.count-subject {
	margin-top: 0;
	color: #999;
	opacity: 0;
}

/*----------------------------------------------------------------
    Timeline
----------------------------------------------------------------*/

.timeline-label h4 {
	margin-top: 0;
	font-size: 1.556em;
}

.timeline-label p {
	font-size: 0.889em;
}

.timeline .experience {
	position: relative;
	float: left;
	margin-left: 2em;
	padding-left: 2em;
	border-left: 2px solid #ccc;
}

.timeline .experience-info h5 {
	margin-top: 0;
	margin-bottom: 0.333em;
	font-size: 1em;
}

.timeline .experience-info .role {
	font-size: 0.778em;
	font-family: "Microsoft YaHei", Arial;
}

.timeline .experience-info p {
	color: #999;
	font-size: 0.722em;
}

.timeline time {
	display: block;
	width: 4.111em;
	color: #ccc;
	text-align: center;
	font-weight: 700;
	font-family: "Microsoft YaHei", Arial;
}

.timeline .experience-img,
.timeline .experience-info,
.timeline .experience-info h5,
.timeline .experience-info .role,
.timeline .experience-info p {
	clear: none;
}

.timeline .experience .circle {
	position: absolute;
	top: 1em;
	left: -0.667em;
	display: block;
	width: 1.222em;
	height: 1.222em;
	border: 3px solid #ccc;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: #F5F5F5;
}

.timeline .experience-img {
	float: left;
	width: 3.333em;
	height: 3.333em;
}

.timeline .experience-img img {}

.timeline .experience-info {
	margin-left: 4.444em;
}

/*----------------------------------------------------------------
    Contact forms
----------------------------------------------------------------*/

#post-comment p {
	text-align: center;
}

#post-comment .section-title {
	margin-bottom: 40px;
}

.contact-section input,
.contact-section textarea,
.comment-form input,
.comment-form textarea {
	background-color: #fff;
	font-size: 0.889em !important;
}

/* .text-light input,
.text-light textarea {
	color: #fff;
} */

.text-light input:not([type="button"]):hover,
.text-light textarea:not([type="button"]):hover {
	border-color: rgba(255, 255, 255, 0.5) !important;
}

.text-light textarea:not([type="button"]):focus,
.text-light textarea:not([type="button"]):active,
.text-light input:not([type="button"]):focus,
.text-light input:not([type="button"]):active {
	border-color: #fff !important;
}

.text-light .contact-section i {
	color: rgba(255, 255, 255, 0.7);
}

.text-light ::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.text-light :-moz-placeholder {
	/* Firefox 18- */
	color: rgba(255, 255, 255, 0.7);
}

.text-light ::-moz-placeholder {
	/* Firefox 19+ */
	color: rgba(255, 255, 255, 0.7);
}

.text-light :-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.contact-section input.name,
.contact-section input.email,
.comment-form input.name,
.comment-form input.email,
.comment-form textarea {
	padding-left: 3em;
}

.contact-section input.name,
.contact-section input.email,
.contact-section textarea,
.comment-form input.name,
.comment-form input.email,
.comment-form textarea {
	max-width: 100%;
	width: 100%;
}

.contact-section input[type="submit"],
.comment-form input[type="submit"] {}

.comment-form {
	text-align: center;
}

.comment-form span {
	float: left;
	display: block;
}

/*----------------------------------------------------------------
    Team
----------------------------------------------------------------*/

.about-us img {}

.about-us figcaption {
	text-align: center;
}

.about-us figcaption h4 {
	margin-bottom: 0.2em;
}

.about-us figcaption p {
	font-size: 0.778em;
}

.about-us .meta-social {
	font-size: 0.722em;
}

/*----------------------------------------------------------------
    Map
----------------------------------------------------------------*/

.map {
	height: 15em;
}

.gm-style>div>div {
	/* Overlay color */
	height: 100%;
}

.gm-style img {
	/* Fix tooltip */
	max-width: none;
}

.gm-style div {
	/* Fix tooltip */
	border-style: none;
}

.gm-style>div.gmnoprint {
	/* display: none; */
}

.gm-style>div>a {
	/* display: none !important; */
}

.infoBox {
	text-align: center;
}

.infobox-inner {
	display: inline-block;
	padding: 6px 14px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	background-color: #FFF;
	-webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.15);
	text-align: center;
	font-weight: 700;
	font-size: 16px;
	font-family: "Microsoft YaHei", Arial;
}

.infobox-inner:after,
.infobox-inner:before {
	position: absolute;
	bottom: 100%;
	left: 50%;
	width: 0;
	height: 0;
	border: solid transparent;
	content: " ";
	pointer-events: none;
}

.infobox-inner:after {
	margin-left: -10px;
	border-width: 10px;
	border-color: rgba(0, 0, 0, 0);
}

.infobox-inner:before {
	margin-left: -10px;
	border-width: 10px;
	border-color: rgba(0, 0, 0, 0);
	border-bottom-color: #fff;
}

/*----------------------------------------------------------------
    Testimonial
----------------------------------------------------------------*/

.testimonial-slider i {
	font-size: 4em;
}

.testimonial-slider p {}

.img-slider i {
	font-size: 4em;
}

.img-slider p {
	/* padding-top: 3em; */
	/* padding-bottom: 2em; */
}

.testimonial-img img {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
}

.quote p {
	margin-top: 0;
	margin-bottom: 1em;
	font-size: 0.8em;
	color: #fff;
}

.author {
	margin-bottom: 1em;
	font-size: 0.889em;
	opacity: 0.7;
	color: #fff;
}

.author:before {
	content: '? ';
}

.author:after {
	content: ' -';
}

/*----------------------------------------------------------------
    Slogan
----------------------------------------------------------------*/

.slogan {
	text-align: center;
}

.slogan p {
	font-size: 1.111em;
}

/*----------------------------------------------------------------
    onScreen animations
----------------------------------------------------------------*/

.slogan.animation.onscreen,
.call-to-action .animation.onscreen,
.side-mockup.left-mockup.animation.onscreen {
	opacity: 1;
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	-webkit-animation: lfade .65s ease forwards;
	-moz-animation: lfade .65s ease forwards;
	animation: lfade .65s ease forwards;
}

.side-mockup.right-mockup.animation.onscreen {
	opacity: 1;
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 0.2s;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	-webkit-animation: rfade .65s ease forwards;
	-moz-animation: rfade .65s ease forwards;
	animation: rfade .65s ease forwards;
}

.count-subject.subject-on {
	opacity: 1;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	-webkit-animation: fade-in .65s ease forwards;
	-moz-animation: fade-in .65s ease forwards;
	animation: fade-in .65s ease forwards;
}

.owl-item .caption h2,
.owl-item .caption p,
.owl-item .caption .button,
.owl-item .caption-mockup h2,
.owl-item .caption-mockup p,
.owl-item .caption-mockup .button,
.owl-item .photocaption,
.side-mockup.left-mockup.animation,
.side-mockup.right-mockup.animation,
.slogan.animation,
.call-to-action .animation {
	opacity: 0;
}

.owl-item.active .photocaption {
	opacity: 0;
	-webkit-transform: translateX(3em);
	-moz-transform: translateX(3em);
	-ms-transform: translateX(3em);
	-o-transform: translateX(3em);
	transform: translateX(3em);
	-webkit-animation: photocaption .65s ease forwards;
	-moz-animation: photocaption .65s ease forwards;
	animation: photocaption .65s ease forwards;
	-webkit-animation-delay: .6s;
	-moz-animation-delay: .6s;
	animation-delay: .6s;
}

.no-cssanimations .owl-item.active .photocaption {
	-ms-transform: translateX(0);
}

.owl-item.active .intro-mockup img {
	opacity: 0;
	-webkit-transform: translateY(3em);
	-moz-transform: translateY(3em);
	-ms-transform: translateY(3em);
	-o-transform: translateY(3em);
	transform: translateY(3em);
	-webkit-animation: mcaption .65s ease forwards;
	-moz-animation: mcaption .65s ease forwards;
	animation: mcaption .65s ease forwards;
	-webkit-animation-delay: .8s;
	-moz-animation-delay: .8s;
	animation-delay: .8s;
}

.owl-item.active .caption h2,
.owl-item.active .caption-mockup h2 {
	opacity: 0;
	-webkit-animation: fade .65s ease forwards;
	-moz-animation: fade .65s ease forwards;
	animation: fade .65s ease forwards;
	-webkit-animation-delay: .6s;
	-moz-animation-delay: .6s;
	animation-delay: .6s;
}

.animation.onscreen {
	opacity: 1;
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	transition-delay: 1s;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	-webkit-animation: scaleDownFrom .65s ease forwards;
	-moz-animation: scaleDownFrom .65s ease forwards;
	animation: fadeInUp .65s ease forwards;
}

.animated-fast {
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.js .animate-box {
	opacity: 0;
}

@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		visibility: hidden;
		/*-webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);*/
		-webkit-transform: translate3d(0, 40px, 0);
		transform: translate3d(0, 40px, 0);
	}

	to {
		opacity: 1;
		/*visibility: visible;*/
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		visibility: hidden;
		/*-webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);*/
		-webkit-transform: translate3d(0, 40px, 0);
		transform: translate3d(0, 40px, 0);
	}

	to {
		visibility: visible;
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

.owl-item.active .caption p,
.owl-item.active .caption-mockup p {
	opacity: 0;
	-webkit-animation: fade .65s ease forwards;
	-moz-animation: fade .65s ease forwards;
	animation: fade .65s ease forwards;
	-webkit-animation-delay: .8s;
	-moz-animation-delay: .8s;
	animation-delay: .8s;
}

.owl-item.active .caption .button,
.owl-item.active .caption-mockup .button {
	opacity: 0;
	-webkit-animation: fade .65s ease forwards;
	-moz-animation: fade .65s ease forwards;
	animation: fade .65s ease forwards;
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	animation-delay: 1s;
}

.no-cssanimations .owl-item.active .photocaption,
.no-cssanimations .owl-item.active .caption h2,
.no-cssanimations .owl-item.active .caption-mockup h2,
.no-cssanimations .owl-item.active .caption p,
.no-cssanimations .owl-item.active .caption-mockup p,
.no-cssanimations .owl-item.active .caption .button,
.no-cssanimations .owl-item.active .caption-mockup .button {
	opacity: 1;
}

@-webkit-keyframes fade {
	to {
		opacity: 1;
	}
}

@-moz-keyframes fade {
	to {
		opacity: 1;
	}
}

@keyframes fade {
	to {
		opacity: 1;
	}
}

@-webkit-keyframes photocaption {
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes photocaption {
	to {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}

@keyframes photocaption {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@-webkit-keyframes mcaption {
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes mcaption {
	to {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@keyframes mcaption {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@-webkit-keyframes lfade {
	from {
		opacity: 0;
		-webkit-transform: translateX(-3em);
	}
}

@-moz-keyframes lfade {
	from {
		opacity: 0;
		-moz-transform: translateX(-3em);
	}
}

@keyframes tfade {
	from {
		opacity: 0;
		transform: translateY(3em);
	}
}

@-webkit-keyframes smalllfade {
	from {
		opacity: 0;
		-webkit-transform: translateX(-1em);
	}
}

@-moz-keyframes smalllfade {
	from {
		opacity: 0;
		-moz-transform: translateX(-1em);
	}
}

@keyframes smalllfade {
	from {
		opacity: 0;
		transform: translateX(-1em);
	}
}

@-webkit-keyframes rfade {
	from {
		opacity: 0;
		-webkit-transform: translateX(3em);
	}
}

@-moz-keyframes rfade {
	from {
		opacity: 0;
		-moz-transform: translateX(3em);
	}
}

@keyframes rfade {
	from {
		opacity: 0;
		transform: translateX(3em);
	}
}

/*----------------------------------------------------------------
    Buttons
----------------------------------------------------------------*/

.button,
input.button {
	position: relative;
	display: inline-block;
	margin-bottom: 1.34em;
	padding: 0.667em 2em;
	border-bottom: none;
	-webkit-border-radius: 0.333em;
	-moz-border-radius: 0.333em;
	border-radius: 0.333em;
	background-color: rgba(84, 87, 102, 1);
	color: #FFFFFF !important;
	text-decoration: none !important;
	text-transform: uppercase;
	font-size: 0.778em !important;
	font-family: "Microsoft YaHei", Arial !important;
	line-height: 1.714em !important;
	cursor: pointer;
}

.csstransitions .button,
.csstransitions input.button {
	-webkit-transition: background-color 0.3s linear, color 0.3s linear;
	-moz-transition: background-color 0.3s linear, color 0.3s linear;
	transition: background-color 0.3s linear, color 0.3s linear;
}

.copyrights {
	text-indent: -9999px;
	height: 0;
	line-height: 0;
	font-size: 0;
	overflow: hidden;
}

.button:hover,
input.button:hover {
	border-bottom: none;
	background-color: rgba(84, 87, 102, 0.9);
}

.button:active,
input.button:active {
	box-shadow: inset 0 3px 1px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: inset 0 3px 1px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: inset 0 3px 1px rgba(0, 0, 0, 0.1);
}

.button i {
	margin-right: 0.667em;
	vertical-align: middle;
	line-height: 1em !important;
}

.button.red,
input.button.red {
	background-color: rgba(253, 104, 91, 1);
}

.button.red:hover,
input.button.red:hover {
	background-color: rgba(253, 104, 91, 0.9);
}

.button.orange,
input.button.orange {
	background-color: rgba(250, 111, 87, 1);
}

.button.orange:hover,
input.button.orange:hover {
	background-color: rgba(250, 111, 87, 0.9);
}

.button.yellow,
input.button.yellow {
	background-color: rgba(254, 205, 94, 1);
}

.button.yellow:hover,
input.button.yellow:hover {
	background-color: rgba(254, 205, 94, 0.9);
}

.button.green,
input.button.green {
	background-color: rgba(161, 210, 110, 1);
}

.button.green:hover,
input.button.green:hover {
	background-color: rgba(161, 210, 110, 0.9);
}

.button.mint,
input.button.mint {
	background-color: rgba(79, 206, 173, 1);
}

.button.mint:hover,
input.button.mint:hover {
	background-color: rgba(79, 206, 173, 0.9);
}

.button.aqua,
input.button.aqua {
	background-color: rgba(85, 193, 231, 1);
}

.button.aqua:hover,
input.button.aqua:hover {
	background-color: rgba(85, 193, 231, 0.9);
}

.button.blue,
input.button.blue {
	background-color: #0457b7;
}

.button.blue:hover,
input.button.blue:hover {
	background-color: rgba(96, 158, 234, 0.9);
}

.button.purple,
input.button.purple {
	background-color: rgba(171, 148, 233, 1);
}

.button.purple:hover,
input.button.purple:hover {
	background-color: rgba(171, 148, 233, 0.9);
}

.button.pink,
input.button.pink {
	background-color: rgba(234, 137, 191, 1);
}

.button.pink:hover,
input.button.pink:hover {
	background-color: rgba(234, 137, 191, 0.9);
}

.button.white,
input.button.white {
	background-color: rgba(255, 255, 255, 1);
	color: #545766 !important;
}

.button.white:hover,
input.button.white:hover {
	background-color: rgba(255, 255, 255, 0.9);
}

.button.grey,
input.button.grey {
	background-color: rgba(170, 178, 188, 1);
}

.button.grey:hover,
input.button.grey:hover {
	background-color: rgba(170, 178, 188, 0.9);
}

.button.dark-grey,
input.button.dark-grey {
	background-color: rgba(84, 87, 102, 1);
}

.button.dark-grey:hover,
input.button.dark-grey:hover {
	background-color: rgba(84, 87, 102, 0.9);
}

.button.transparent,
input.button.transparent {
	border: 2px solid rgba(84, 87, 102, 1);
	background-color: transparent;
	color: rgba(84, 87, 102, 1) !important;
}

.button.transparent:hover,
input.button.transparent:hover {
	border: 2px solid rgba(84, 87, 102, 1);
	background-color: rgba(84, 87, 102, 1);
	color: #fff !important;
}

.button.transparent.red,
input.transparent.button.red {
	border: 2px solid rgba(253, 104, 91, 1);
	color: rgba(253, 104, 91, 1) !important;
}

.button.transparent.red:hover,
input.button.transparent.red:hover {
	border: 2px solid rgba(253, 104, 91, 1);
	background-color: rgba(253, 104, 91, 1);
	color: #fff !important;
}

.button.transparent.orange,
input.transparent.button.orange {
	border: 2px solid rgba(250, 111, 87, 1);
	color: rgba(250, 111, 87, 1) !important;
}

.button.transparent.orange:hover,
input.button.transparent.orange:hover {
	border: 2px solid rgba(250, 111, 87, 1);
	background-color: rgba(250, 111, 87, 1);
	color: #fff !important;
}

.button.transparent.yellow,
input.transparent.button.yellow {
	border: 2px solid rgba(254, 205, 94, 1);
	color: rgba(254, 205, 94, 1) !important;
}

.button.transparent.yellow:hover,
input.button.transparent.yellow:hover {
	border: 2px solid rgba(254, 205, 94, 1);
	background-color: rgba(254, 205, 94, 1);
	color: #fff !important;
}

.button.transparent.green,
input.transparent.button.green {
	border: 2px solid rgba(161, 210, 110, 1);
	color: rgba(161, 210, 110, 1) !important;
}

.button.transparent.green:hover,
input.button.transparent.green:hover {
	border: 2px solid rgba(161, 210, 110, 1);
	background-color: rgba(161, 210, 110, 1);
	color: #fff !important;
}

.button.transparent.mint,
input.transparent.button.mint {
	border: 2px solid rgba(79, 206, 173, 1);
	color: rgba(79, 206, 173, 1) !important;
}

.button.transparent.mint:hover,
input.button.transparent.mint:hover {
	border: 2px solid rgba(79, 206, 173, 1);
	background-color: rgba(79, 206, 173, 1);
	color: #fff !important;
}

.button.transparent.aqua,
input.transparent.button.aqua {
	border: 2px solid #000000;
	color: #000000 !important;
}

.button.transparent.aqua:hover,
input.button.transparent.aqua:hover {
	border: 2px solid #000000;
	background-color: #000000;
	color: #fff !important;
}

.button.transparent.blue,
input.transparent.button.blue {
	border: 2px solid rgba(96, 158, 234, 1);
	color: rgba(96, 158, 234, 1) !important;
}

.button.transparent.blue:hover,
input.button.transparent.blue:hover {
	border: 2px solid rgba(96, 158, 234, 1);
	background-color: rgba(96, 158, 234, 1);
	color: #fff !important;
}

.button.transparent.purple,
input.transparent.button.purple {
	border: 2px solid rgba(171, 148, 233, 1);
	color: rgba(171, 148, 233, 1) !important;
}

.button.transparent.purple:hover,
input.button.transparent.purple:hover {
	border: 2px solid rgba(171, 148, 233, 1);
	background-color: rgba(171, 148, 233, 1);
	color: #fff !important;
}

.button.transparent.pink,
input.transparent.button.pink {
	border: 2px solid rgba(234, 137, 191, 1);
	color: rgba(234, 137, 191, 1) !important;
}

.button.transparent.pink:hover,
input.button.transparent.pink:hover {
	border: 2px solid rgba(234, 137, 191, 1);
	background-color: rgba(234, 137, 191, 1);
	color: #fff !important;
}

.button.transparent.white,
input.transparent.button.white {
	border: 2px solid rgba(255, 255, 255, 1);
	color: rgba(255, 255, 255, 1) !important;
}

.button.transparent.white:hover,
input.button.transparent.white:hover {
	border: 2px solid rgba(255, 255, 255, 1);
	background-color: rgba(255, 255, 255, 1);
	color: #545766 !important;
}

.button.transparent.grey,
input.transparent.button.grey {
	border: 2px solid rgba(170, 178, 188, 1);
	color: rgba(170, 178, 188, 1) !important;
}

.button.transparent.grey:hover,
input.button.transparent.grey:hover {
	border: 2px solid rgba(170, 178, 188, 1);
	background-color: rgba(170, 178, 188, 1);
	color: #fff !important;
}

.button.transparent.dark-grey,
input.transparent.button.dark-grey {
	border: 2px solid rgba(84, 87, 102, 1);
	color: rgba(84, 87, 102, 1) !important;
}

.button.transparent.dark-grey:hover,
input.button.transparent.dark-grey:hover {
	border: 2px solid rgba(84, 87, 102, 1);
	background-color: rgba(84, 87, 102, 1);
	color: #fff !important;
}

/*----------------------------------------------------------------
    Icons
----------------------------------------------------------------*/

.red,
i.icon.red,
i.fa.red {
	color: #fd685c;
}

.orange,
i.icon.orange,
i.fa.orange {
	color: #fa6f57;
}

.yellow,
i.icon.yellow,
i.fa.yellow {
	color: #fecd5e;
}

.green,
i.icon.green,
i.fa.green {
	color: #a1d26e;
}

.mint,
i.icon.mint,
i.fa.mint {
	color: #4fcead;
}

.aqua,
i.icon.aqua,
i.fa.aqua {
	color: #55c1e7;
}

.blue,
i.icon.blue,
i.fa.blue {
	color: #000000;
}

.purple,
i.icon.purple,
i.fa.purple {
	color: #ab94e9;
}

.pink,
i.icon.pink,
i.fa.pink {
	color: #ea89bf;
}

.white,
i.icon.white,
i.fa.white {
	color: #fff;
}

.grey,
i.icon.grey,
i.fa.grey {
	color: #aab2bc;
}

.dark-grey,
i.icon.dark-grey,
i.fa.dark-grey {
	color: #545766;
}

.text-light i.icon,
.text-light i.fa {
	color: #fff !important;
}

/*----------------------------------------------------------------
    Footer
----------------------------------------------------------------*/

footer {
	position: relative;
	z-index: 10;
	background-color: #f3f3f3;
	color: #666666;
	border-top: 1px solid #EAE7E7;
}

footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6 {
	color: #fff;
}

footer a {
	color: #aaa;
	text-decoration: none;
	font-size: 1em;
}

footer a:hover {
	color: #aaa;
}

footer .meta-social ul li a {
	border-color: #666666;
	color: #666666;
}

footer .meta-social ul li a:hover {
	color: #fff;
}

#top-footer h4 {
	font-size: 1.3em;
	margin-bottom: 1em;
	color: #000;
}

#top-footer ul li {
	line-height: 2.5em;
}

#top-footer .widget {
	margin-bottom: 0;
	font-size: 0.778em;
}

#top-footer a:hover {
	color: #000;
}

footer .row-content.buffer {
	padding-top: 2%;
	padding-bottom: 0;
}

#bottom-footer {
	font-size: 0.667em;
	margin-top: 20px;
}

/*sidebar*/

.sidebar-c {
	position: fixed;
	width: 100px;
	bottom: 0px;
	right: 20px;
	z-index: 1000;
}

.sidebar-c a.side-btn {
	display: block;
	padding: 20px;
	background-color: #000;
	text-align: center;
}

.sidebar-c a:hover {
	background-color: #333;
}

.sidebar-c a.side-btn i {
	color: #fff;
}

.mydiv,
.mydiv2 {
	background-color: #fff;
	text-align: center;
	line-height: 40px;
	z-index: 1001;
	left: 50%;
	/*FF IE7*/
	top: 50%;
	/*FF IE7*/
	margin-top: 0px;
	position: fixed !important;
	/*FF IE7*/
	position: absolute;
	/*IE6*/
	_top: expression(eval(document.compatMode && document.compatMode=='CSS1Compat') ? documentElement.scrollTop + (document.documentElement.clientHeight-this.offsetHeight)/2:
		/*IE6*/
		document.body.scrollTop + (document.body.clientHeight - this.clientHeight)/2);
	/*IE5 IE5.5*/
}

.mydiv {
	width: 580px;
	height: 310px;
	margin-left: -290px !important;
	/*FF IE7 该值为本身宽的一半 */
	margin-top: -155px !important;
	/*FF IE7 该值为本身高的一半*/
}

.mydiv2 {
	width: 580px;
	height: 310px;
	margin-left: -290px !important;
	/*FF IE7 该值为本身宽的一半 */
	margin-top: -155px !important;
	/*FF IE7 该值为本身高的一半*/
}

.popdiv_l,
.popdiv_r {
	float: left;
	clear: none;
}

.popdiv_l {
	margin: 45px;
	width: 220px;
}

.popdiv_r {
	font-size: 18px;
	text-align: center;
	margin: 70px 0 0 20px;
}

.popdiv_c {
	font-size: 18px;
	text-align: center;
	margin: 50px 0 0 0px;
}

.popdiv_c i {
	font-size: 56px;
}

.popdiv_r a,
.popdiv_c a {
	display: block;
	width: 90px;
	height: 40px;
	color: #fff;
	background: #000;
	font-size: 14px;
	text-align: center;
	line-height: 40px;
	-webkit-transition: all .3s cubic-bezier(.16, .53, .15, .99);
	-moz-transition: all .3s cubic-bezier(.16, .53, .15, .99);
	transition: all .3s cubic-bezier(.16, .53, .15, .99);
}

.popdiv_r a {
	margin: 30px 0 0 40px;
}

.popdiv_c a {
	margin: 0 auto;
}

.popdiv_r a:hover,
.popdiv_c a:hover {
	background: #333;
	color: #fff;
}

.pop-bg {
	background-color: #000;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	/*FF IE7*/
	filter: alpha(opacity=50);
	/*IE*/
	opacity: 0.5;
	/*FF*/
	z-index: 1000;
	position: fixed !important;
	/*FF IE7*/
	position: absolute;
	/*IE6*/
	_top: expression(eval(document.compatMode && document.compatMode=='CSS1Compat') ? documentElement.scrollTop + (document.documentElement.clientHeight-this.offsetHeight)/2:
		/*IE6*/
		document.body.scrollTop + (document.body.clientHeight - this.clientHeight)/2);
	/*IE5 IE5.5*/
}

/*----------------------------------------------------------------
    LineIcon font - Made with Fontastic.me - Icons: http://graphicburger.com/line-icon-set-for-ui/
----------------------------------------------------------------*/

@charset "UTF-8";

@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: "lineicon";
	src: url("/static/mobile/css/fonts/lineicon.eot");
	src: url("..//static/mobile/css/fonts/lineicon.eot") format("embedded-opentype"), url("/static/mobile/fonts/lineicon.woff") format("woff"), url("/static/mobile/fonts/lineicon.ttf") format("truetype"), url("/static/mobile/fonts/lineicon.svg") format("svg");
}

[data-icon]:before {
	content: attr(data-icon);
	text-transform: none !important;
	font-weight: normal !important;
	font-style: normal !important;
	font-variant: normal !important;
	font-family: "lineicon" !important;
	speak: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
	text-transform: none !important;
	font-weight: normal !important;
	font-style: normal !important;
	font-variant: normal !important;
	font-family: "lineicon" !important;
	speak: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-images:before {
	content: "\e000";
}

.icon-arrow-up:before {
	content: "\e001";
}

.icon-arrow-right:before {
	content: "\e002";
}

.icon-arrow-left:before {
	content: "\e003";
}

.icon-arrow-down:before {
	content: "\e004";
}

.icon-search:before {
	content: "\e005";
}

.icon-camera:before {
	content: "\e006";
}

.icon-video:before {
	content: "\e007";
}

.icon-picture:before {
	content: "\e008";
}

.icon-home:before {
	content: "\e009";
}

.icon-outline-left-arrow:before {
	content: "\e00a";
}

.icon-outline-left-dir:before {
	content: "\e00b";
}

.icon-outline-left-right-arrow:before {
	content: "\e00c";
}

.icon-outline-right-arrow:before {
	content: "\e00d";
}

.icon-outline-right-dir:before {
	content: "\e00e";
}

.icon-outline-enlarge:before {
	content: "\e00f";
}

.icon-outline-close:before {
	content: "\e010";
}

.icon-multiview:before {
	content: "\e011";
}

.icon-load:before {
	content: "\e012";
}

.icon-link-two:before {
	content: "\e013";
}

.icon-link-one:before {
	content: "\e014";
}

.icon-reload:before {
	content: "\e015";
}

.icon-user:before {
	content: "\e016";
}

.icon-users:before {
	content: "\e017";
}

.icon-vertical-tag:before {
	content: "\e018";
}

.icon-checked:before {
	content: "\e019";
}

.icon-clip:before {
	content: "\e01a";
}

.icon-download:before {
	content: "\e01b";
}

.icon-equalizer:before {
	content: "\e01c";
}

.icon-flag:before {
	content: "\e01d";
}

.icon-gear:before {
	content: "\e01e";
}

.icon-outline-menu:before {
	content: "\e01f";
}

.icon-horizontal-tag:before {
	content: "\e020";
}

.icon-archive:before {
	content: "\e021";
}

.icon-bag:before {
	content: "\e022";
}

.icon-battery-25:before {
	content: "\e023";
}

.icon-battery-50:before {
	content: "\e024";
}

.icon-battery-75:before {
	content: "\e025";
}

.icon-battery-charged:before {
	content: "\e026";
}

.icon-battery-dead:before {
	content: "\e027";
}

.icon-bin:before {
	content: "\e028";
}

.icon-brush:before {
	content: "\e029";
}

.icon-connections:before {
	content: "\e02a";
}

.icon-compass:before {
	content: "\e02b";
}

.icon-comments:before {
	content: "\e02c";
}

.icon-comment-two:before {
	content: "\e02d";
}

.icon-comment-one:before {
	content: "\e02e";
}

.icon-clock:before {
	content: "\e02f";
}

.icon-cart:before {
	content: "\e030";
}

.icon-calendar:before {
	content: "\e031";
}

.icon-calc:before {
	content: "\e032";
}

.icon-bulb:before {
	content: "\e033";
}

.icon-crown:before {
	content: "\e034";
}

.icon-cup:before {
	content: "\e035";
}

.icon-diamond:before {
	content: "\e036";
}

.icon-doc:before {
	content: "\e037";
}

.icon-email:before {
	content: "\e038";
}

.icon-eye:before {
	content: "\e039";
}

.icon-film:before {
	content: "\e03a";
}

.icon-flame:before {
	content: "\e03b";
}

.icon-flash:before {
	content: "\e03c";
}

.icon-folder:before {
	content: "\e03d";
}

.icon-map:before {
	content: "\e03e";
}

.icon-lock:before {
	content: "\e03f";
}

.icon-inbox:before {
	content: "\e040";
}

.icon-heart:before {
	content: "\e041";
}

.icon-graph:before {
	content: "\e042";
}

.icon-globe:before {
	content: "\e043";
}

.icon-money:before {
	content: "\e044";
}

.icon-news:before {
	content: "\e045";
}

.icon-phone-one:before {
	content: "\e046";
}

.icon-phone-two:before {
	content: "\e047";
}

.icon-pin:before {
	content: "\e048";
}

.icon-pocket:before {
	content: "\e049";
}

.icon-wifi:before {
	content: "\e04a";
}

.icon-unlock:before {
	content: "\e04b";
}

.icon-scissors:before {
	content: "\e04c";
}

.icon-stamp:before {
	content: "\e04d";
}

.icon-star:before {
	content: "\e04e";
}

.icon-target:before {
	content: "\e04f";
}

.icon-tshirt:before {
	content: "\e050";
}

.icon-tumbler:before {
	content: "\e051";
}

.icon-pencil:before {
	content: "\e052";
}

.icon-paperfly:before {
	content: "\e053";
}

.icon-control-eject:before {
	content: "\e054";
}

.icon-control-fastforward:before {
	content: "\e055";
}

.icon-control-next:before {
	content: "\e056";
}

.icon-control-pause:before {
	content: "\e057";
}

.icon-control-play:before {
	content: "\e058";
}

.icon-cassette:before {
	content: "\e059";
}

.icon-control-prev:before {
	content: "\e05a";
}

.icon-control-rec:before {
	content: "\e05b";
}

.icon-control-rewind:before {
	content: "\e05c";
}

.icon-control-shuffle:before {
	content: "\e05d";
}

.icon-control-stop:before {
	content: "\e05e";
}

.icon-crop:before {
	content: "\e05f";
}

.icon-desktop:before {
	content: "\e060";
}

.icon-disk:before {
	content: "\e061";
}

.icon-headphones:before {
	content: "\e062";
}

.icon-laptop:before {
	content: "\e063";
}

.icon-layout:before {
	content: "\e064";
}

.icon-leaf:before {
	content: "\e065";
}

.icon-microphone:before {
	content: "\e066";
}

.icon-megaphone:before {
	content: "\e067";
}

.icon-music:before {
	content: "\e068";
}

.icon-speaker-on:before {
	content: "\e069";
}

.icon-speaker-off:before {
	content: "\e06a";
}

.icon-smartphone:before {
	content: "\e06b";
}

.icon-select:before {
	content: "\e06c";
}

.icon-resize:before {
	content: "\e06d";
}

.icon-umbrella:before {
	content: "\e06e";
}

.icon-weather-changeable:before {
	content: "\e06f";
}

.icon-weather-cloudy:before {
	content: "\e070";
}

.icon-weather-rainy:before {
	content: "\e071";
}

.icon-weather-snowy:before {
	content: "\e072";
}

.icon-weather-stormy:before {
	content: "\e073";
}

.icon-weather-sunny:before {
	content: "\e074";
}

.icon-tablet:before {
	content: "\e075";
}

.icon-arrow-down-simple:before {
	content: "\e076";
}

.icon-arrow-left-simple:before {
	content: "\e077";
}

.icon-arrow-right-simple:before {
	content: "\e078";
}

.icon-arrow-up-simple:before {
	content: "\e079";
}

.icon-close:before {
	content: "\e07a";
}

.icon-plus:before {
	content: "\e07b";
}

/*----------------------------------------------------------------
    Align Fontawesome and LineIcon fonts
----------------------------------------------------------------*/

.big-icon .icon,
.small-icon .icon,
.big-icon .fa,
.small-icon .fa {
	vertical-align: baseline;
}

.icon,
.fa {
	/* vertical-align: middle; */
	;
}

/*----------------------------------------------------------------
    Hide icons underline
----------------------------------------------------------------*/

.icon {
	display: inline-block;
}

/*----------------------------------------------------------------
    640px Breakpoint
----------------------------------------------------------------*/

@media handheld,
only screen and (max-width:40em) {
	#intro .single .caption h2 {
		font-size: 2.4em;
	}

	#intro .caption-mockup h2 {
		font-size: 1.7em;
		font-weight: 300;
	}

	#intro .caption p,
	#intro .caption-mockup p {
		font-size: 0.8em;
	}

	.photocaption {
		display: none;
	}
}

/*----------------------------------------------------------------
    768px Breakpoint
----------------------------------------------------------------*/

@media handheld,
only screen and (max-width:48em) {
	.intro-item .caption h2 {
		font-size: 2.4em;
		padding-top: 60px;
	}

	.single-post .intro-item .caption h2 {
		padding-top: 100px;
	}

	.single-wz .caption h2 {
		font-size: 1.8em;
		padding-top: 60px;
	}

	header {
		background-color: #fff !important;
		position: fixed !important;
		padding: 12px 0 8px 0 !important;
		z-index: 10000 !important;
	}

	header.transparent.light #brand a {
		display: block;
		width: 127px;
		height: 40px;
		background-image: url(/static/mobile/images/logo2.png);
		background-repeat: no-repeat;
		background-size: 127px 40px;
	}

	#brand a,
	nav a {}

	header #brand nav {}

	nav a:hover {
		color: #fff !important;
	}

	#brand,
	nav,
	#menu-toggle {
		display: block;
	}

	#menu-toggle {
		float: right;
		clear: none;
	}

	nav {
		float: none;
		clear: both;
		position: relative;
		top: 10px;
	}

	nav>ul {}

	#brand h1 {
		line-height: 1.8;
	}

	nav>ul {
		display: none;
	}

	nav>ul,
	nav>ul>li {
		float: none;
		margin: 0;
	}

	.sub-arrow {
		display: none;
	}

	nav>ul li>a {
		display: block;
		margin: 0;
		padding: 0.625rem 0;
		border-bottom: 1px solid #37b5b6 !important;
		line-height: 1.250rem;
	}

	nav>ul>li>a:hover {
		color: #fff;
	}

	nav>ul li.last>a,
	nav>ul li.last>a:hover {
		border-bottom: none !important;
	}

	nav>ul>li.menu-item {}

	nav ul.sub-menu>li>a {
		-webkit-border-radius: 0 !important;
		-moz-border-radius: 0 !important;
		border-radius: 0 !important;
	}

	nav ul.sub-menu>li>a {
		color: #999 !important;
		font-size: 0.688rem;
	}

	nav ul.sub-menu>li>a,
	nav ul li>a:hover {
		background-color: transparent !important;
	}

	nav>ul>li>a:before {
		height: 0;
	}

	nav ul li>a:hover {
		color: #ffffff !important;
	}

	nav>ul>li:hover>a {
		border-bottom: none;
	}

	nav ul.sub-menu {
		position: static;
		display: block;
		padding: 0 0 0 1.5em;
		width: inheri t;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}

	#intro {
		position: relative;
	}

	.more {
		display: none;
	}

	.column .count-item {
		margin-bottom: 2em;
	}

	.column.last .count-item {
		margin-bottom: 0;
	}

	.carousel-item {
		text-align: center;
	}

	.carousel-item img,
	.about-us img,
	.testimonial-img img {
		margin: 0 auto;
	}

	.carousel-item img {
		max-width: 12.5em;
	}

	.about-us img {
		max-width: 20em;
		width: 100%;
	}

	.testimonial-img img {
		margin-bottom: 1em;
		max-width: 10em;
		width: 100%;
	}

	.testimonial-slider {
		text-align: center;
	}

	.blog.list-style article figure,
	.blog-section.list-style article figure,
	.search.list-style article figure {
		margin-bottom: 1em;
	}
}

/*----------------------------------------------------------------
    320px Breakpoint - Fix some mockups
----------------------------------------------------------------*/

@media handheld,
only screen and (min-width:20em) and (max-width:20em) {
	.side-mockup .ipad-slider {
		margin-left: -21px;
	}

	.side-mockup .iphone-slider {
		margin-left: -18px;
	}

	.side-mockup .dasktop-slider {
		margin-left: -29px;
	}
}

/*----------------------------------------------------------------
    Lightbox
----------------------------------------------------------------*/

#imagelightbox {
	position: fixed;
	z-index: 9999;
	cursor: pointer;
}

#imagelightbox-loading,
#imagelightbox-overlay,
#imagelightbox-close,
#imagelightbox-nav {
	-webkit-animation: fade-in .25s linear;
	-moz-animation: fade-in .25s linear;
	-o-animation: fade-in .25s linear;
	animation: fade-in .25s linear;
}

#imagelightbox-caption {
	-webkit-animation: bottom-in .5s ease;
	-moz-animation: bottom-in .5s ease;
	-o-animation: bottom-in .5s ease;
	animation: bottom-in .5s ease;
}

@-webkit-keyframes fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-moz-keyframes fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-o-keyframes fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-webkit-keyframes bottom-in {
	from {
		opacity: 0;
		-webkit-transform: translateY(50%);
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0%);
	}
}

@-moz-keyframes bottom-in {
	from {
		opacity: 0;
		-moz-transform: translateY(50%);
	}

	to {
		opacity: 1;
		-moz-transform: translateY(0%);
	}
}

@-o-keyframes bottom-in {
	from {
		opacity: 0;
		-o-transform: translateY(50%);
	}

	to {
		opacity: 1;
		-o-transform: translateY(0%);
	}
}

@keyframes bottom-in {
	from {
		opacity: 0;
		transform: translateY(50%);
	}

	to {
		opacity: 1;
		transform: translateY(0%);
	}
}

#imagelightbox-overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9998;
	background-color: #1b1f23;
	background-color: rgba(27, 31, 35, 0.95);
}

#imagelightbox-caption {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10001;
	background-color: rgba(255, 255, 255, 0.95);
	text-align: center;
}

#imagelightbox-caption h3 {
	margin-top: 0.67em;
}

#imagelightbox-close i {
	position: fixed;
	top: 1.5em;
	right: 1.5em;
	z-index: 10002;
	width: 1em !important;
	height: 1em !important;
	color: rgba(255, 255, 255, 0.5);
	font-size: 2em;
	line-height: 1 !important;
	-webkit-transition: .3s ease;
	-moz-transition: .3s ease;
	-ms-transition: .3s ease;
	-o-transition: .3s ease;
	transition: .3s ease;
}

#imagelightbox-close i:hover {
	color: rgba(255, 255, 255, 1);
}

.landing-els.lightbox {
	position: fixed;
	z-index: 9997;
}

.landing-els.lightbox .spinner>div {
	background-color: rgba(255, 255, 255, 0.5);
}

/*----------------------------------------------------------------
    Owl Carousel mockups
----------------------------------------------------------------*/

.owl-item {
	clear: none;
}

.owl-item>div {
	padding: 10px;
}

#intro .owl-item>div,
.gallery .owl-item>div {
	padding: 0;
}

.owl-theme .owl-controls .owl-buttons div,
#intro.owl-theme .owl-controls .owl-pagination {
	position: absolute;
}

#intro.owl-theme .owl-controls .owl-pagination {
	bottom: 1em;
	margin: 0 20%;
	width: 60%;
}

.slider .owl-theme .owl-controls .owl-buttons div {
	color: #aaa;
}

.gallery.slider .owl-theme .owl-controls .owl-buttons div {
	color: #fff;
}

.slider .owl-theme .owl-controls .owl-page span {
	background: #aaa;
}

.owl-theme .owl-controls .owl-buttons .owl-prev {
	top: 53%;
	left: 20px;
}

.owl-theme .owl-controls .owl-buttons .owl-next {
	top: 53%;
	right: 20px;
}

.gallery .owl-theme .owl-controls .owl-buttons .owl-prev {
	top: 0.944em;
	right: 0.333em;
	left: auto;
}

.gallery .owl-theme .owl-controls .owl-buttons .owl-next {
	top: 2.222em;
	right: 0.333em;
}

.owl-item img {
	display: block;
	width: 100%;
	height: auto;
}

.mockup {
	pointer-events: none;
}

.slider {
	display: none;
}

.slider .owl-wrapper-outer {}

.appdesign {}

.iphone-slider .owl-carousel .owl-wrapper-outer,
.ipad-slider .owl-carousel .owl-wrapper-outer,
.desktop-slider .owl-carousel .owl-wrapper-outer {
	overflow: visible;
}

.iphone-slider .owl-item,
.ipad-slider .owl-item,
.desktop-slider .owl-item {
	overflow-y: hidden;
}

.iphone-slider {
	margin: 0 auto;
}

.iphone-appdesign {
	height: 580px;
	overflow: hidden;
}

.iphone-slider {
	min-height: 800px;
	width: 416px;
}

.iphone-slider .owl-item {
	margin: 100px 0;
	height: 568px;
}

.iphone-slider .owl-item div {
	padding: 0 48px;
	height: inherit;
}

.iphone-slider .owl-item,
.ipad-slider .owl-item,
.desktop-slider .owl-item {
	opacity: 0.3;
	-webkit-transition: opacity .2s ease;
	-moz-transition: opacity .2s ease;
	-ms-transition: opacity .2s ease;
	-o-transition: opacity .2s ease;
	transition: opacity .2s ease;
}

.iphone-slider .owl-item.active,
.ipad-slider .owl-item.active,
.desktop-slider .owl-item.active {
	opacity: 1;
}

.iphone-mockup {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -200px;
	width: 400px;
}

.iphone-mockup,
.iphone-slider .owl-wrapper-outer {
	height: 800px;
}

.iphone-mockup,
.iphone-mockup.black {
	background: url("/static/mobile/images/iphone-black.svg") no-repeat;
}

.no-svg .iphone-mockup,
.no-svg .iphone-mockup.black {
	background: url("/static/mobile/images/iphone-black.png") no-repeat;
}

.iphone-mockup.white {
	background: url("/static/mobile/images/iphone-white.svg") no-repeat;
}

.no-svg .iphone-mockup.white {
	background: url("/static/mobile/images/iphone-white.png") no-repeat;
}

.iphone-mockup.grey {
	background: url("/static/mobile/images/iphone-grey.svg") no-repeat;
}

.no-svg .iphone-mockup.grey {
	background: url("/static/mobile/images/iphone-grey.png") no-repeat;
}

.iphone-mockup,
.iphone-mockup.black,
.iphone-mockup.white,
.iphone-mockup.grey {
	background-size: 400px 800px !important;
}

.iphone-slider .owl-theme .owl-controls .owl-buttons .owl-prev {
	left: -30px;
}

.iphone-slider .owl-theme .owl-controls .owl-buttons .owl-next {
	right: -30px;
}

.ipad-slider {
	margin: 0 auto;
}

.ipad-slider {
	min-height: 504px;
	width: 630px;
}

.ipad-slider .owl-item {
	margin: 63px 0;
	height: 378px;
}

.ipad-slider .owl-item div {
	padding: 0 63px;
	height: inherit;
}

.ipad-mockup {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -315px;
	width: 630px;
}

.ipad-mockup,
.ipad-slider .owl-wrapper-outer {
	height: 504px;
}

.ipad-mockup,
.ipad-mockup.black {
	background: url("/static/mobile/images/ipad-black.svg") no-repeat;
}

.no-svg .ipad-mockup,
.no-svg .ipad-mockup.black {
	background: url("/static/mobile/images/ipad-black.png") no-repeat;
}

.ipad-mockup.white {
	background: url("/static/mobile/images/ipad-white.svg") no-repeat;
}

.no-svg .ipad-mockup.white {
	background: url("/static/mobile/images/ipad-white.png") no-repeat;
}

.ipad-mockup.grey {
	background: url("/static/mobile/images/ipad-grey.svg") no-repeat;
}

.no-svg .ipad-mockup.grey {
	background: url("/static/mobile/images/ipad-grey.png") no-repeat;
}

.ipad-mockup,
.ipad-mockup.black,
.ipad-mockup.white,
.ipad-mockup.grey {
	background-size: 630px 504px !important;
}

.ipad-slider .owl-theme .owl-controls .owl-buttons .owl-prev {
	left: -47px;
}

.ipad-slider .owl-theme .owl-controls .owl-buttons .owl-next {
	right: -47px;
}

.desktop-slider {
	margin: 0 auto;
}

.desktop-slider {
	min-height: 462px;
	width: 664px;
}

.desktop-slider .owl-item {
	margin: 26px 0;
	height: 315px;
}

.desktop-slider .owl-item div {
	padding: 0 45px;
	height: inherit;
}

.desktop-mockup {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -315px;
	width: 630px;
	background: url("/static/mobile/images/desktop.svg") no-repeat;
	background-size: 630px 462px !important;
}

.no-svg .desktop-mockup {
	background: url("/static/mobile/images/desktop.png") no-repeat;
}

.desktop-mockup,
.desktop-slider .owl-wrapper-outer {
	height: 462px;
}

.desktop-slider .owl-theme .owl-controls .owl-buttons .owl-prev {
	left: -30px;
}

.desktop-slider .owl-theme .owl-controls .owl-buttons .owl-next {
	right: -30px;
}

.side-mockup {
	clear: none;
}

.research-recent {
	line-height: 34px;
}

.side-mockup .owl-wrapper-outer {
	overflow: hidden !important;
}

.side-mockup .iphone-slider .owl-item,
.side-mockup .ipad-slider .owl-item,
.side-mockup .desktop-slider .owl-item {
	opacity: 1;
	-webkit-transition: none;
	-moz-transition: none;
	-ms-transition: none;
	-o-transition: none;
	transition: none;
}

@media handheld,
only screen and (max-width:48em) {
	.iphone-slider {
		min-height: 600px;
		width: 300px;
	}

	.iphone-slider .owl-item {
		margin: 75px 0;
		height: 426px;
	}

	.iphone-slider .owl-item div {
		padding: 0 30px;
	}

	.iphone-mockup,
	.iphone-mockup.black,
	.iphone-mockup.white,
	.iphone-mockup.grey {
		margin-left: -150px;
		width: 300px;
		background-size: 300px 600px !important;
	}

	.iphone-mockup,
	.iphone-mockup.black,
	.iphone-mockup.white,
	.iphone-mockup.grey,
	.iphone-slider .owl-wrapper-outer {
		height: 600px;
	}

	.desktop-slider {
		min-height: 220px;
		width: 326px;
	}

	.desktop-slider .owl-item {
		margin: 12px 0;
		height: 151px;
	}

	.desktop-slider .owl-item div {
		padding: 0 26px;
	}

	.desktop-mockup {
		margin-left: -150px;
		width: 300px;
		background-size: 300px 220px !important;
	}

	.desktop-mockup,
	.desktop-slider .owl-wrapper-outer {
		height: 220px;
	}

	.iphone-slider .owl-theme .owl-controls .owl-buttons .owl-prev {
		left: -22px;
	}

	.iphone-slider .owl-theme .owl-controls .owl-buttons .owl-next {
		right: -22px;
	}

	.ipad-slider .owl-theme .owl-controls .owl-buttons .owl-prev {
		left: -28px;
	}

	.ipad-slider .owl-theme .owl-controls .owl-buttons .owl-next {
		right: -28px;
	}

	.desktop-slider .owl-theme .owl-controls .owl-buttons .owl-prev {
		left: -20px;
	}

	.desktop-slider .owl-theme .owl-controls .owl-buttons .owl-next {
		right: -20px;
	}
}

@media (max-width:30em) {
	.owl-buttons {
		display: none;
	}

	.side-mockup .owl-buttons,
	.side-mockup .owl-pagination {
		display: block;
	}
}

/*----------------------------------------------------------------
    Owl Carousel general
----------------------------------------------------------------*/

.owl-theme .owl-controls {
	margin-top: 20px;
	text-align: center;
}

.owl-theme .owl-controls .owl-buttons div {
	/* text-shadow: 0 5px 5px rgba(0, 0, 0, 0.1); */
	display: inline-block;
	color: #fff;
	font-size: 40px;
	line-height: 40px;
	opacity: 0.3;
	filter: Alpha(Opacity=30);
	-webkit-transition: opacity .3s ease;
	-moz-transition: opacity .3s ease;
	transition: opacity .3s ease;
	zoom: 1;
	*display: inline;
}

#intro-wrap .owl-controls .owl-buttons div {
	text-shadow: none;
	font-size: 2.667em;
	opacity: 0;
	filter: Alpha(Opacity=0);
	;
}

#intro-wrap:hover .owl-controls .owl-buttons div {
	opacity: 0.3;
	filter: Alpha(Opacity=30);
	;
}

#intro-wrap:hover .owl-controls .owl-buttons div:hover {
	opacity: 1;
	filter: Alpha(Opacity=100);
	;
}

#intro-wrap2 .owl-controls .owl-buttons div {
	text-shadow: none;
	font-size: 2.667em;
	opacity: 0;
	filter: Alpha(Opacity=0);
	;
}

#intro-wrap2:hover .owl-controls .owl-buttons div {
	opacity: 0.3;
	filter: Alpha(Opacity=30);
	;
}

#intro-wrap2:hover .owl-controls .owl-buttons div:hover {
	opacity: 1;
	filter: Alpha(Opacity=100);
	;
}

.dark-controls .owl-theme .owl-controls .owl-buttons div {
	color: #292929;
}

.white-controls .owl-theme .owl-controls .owl-buttons div {
	color: #fff;
}

.owl-theme .owl-controls.clickable .owl-buttons div:hover {
	text-decoration: none;
	opacity: 1;
	filter: Alpha(Opacity=100);
}

.owl-theme .owl-controls .owl-page {
	display: inline-block;
	zoom: 1;
	*display: inline;
}

.owl-theme .owl-controls .owl-page span {
	display: block;
	margin: 0.333em;
	width: 0.667em;
	height: 0.667em;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: #37b5b6;
	opacity: 0.3;
	filter: Alpha(Opacity=30);
}

.text-light .owl-theme .owl-controls .owl-page span,
.text-light .testimonial-slider.owl-theme .owl-controls .owl-page span,
.text-light .custom-carousel.owl-theme .owl-controls .owl-page span {
	background: #37b5b6;
	opacity: 0.3;
	filter: Alpha(Opacity=30);
}

.dark-controls .owl-theme .owl-controls .owl-page span,
.testimonial-slider.owl-theme .owl-controls .owl-page span,
.custom-carousel.owl-theme .owl-controls .owl-page span {
	background: #aaa;
}

.white-controls .owl-theme .owl-controls .owl-page span {
	background: #fff;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span,
.text-light .owl-theme .owl-controls .owl-page.active span,
.text-light .testimonial-slider.owl-theme .owl-controls .owl-page.active span,
.text-light .custom-carousel.owl-theme .owl-controls .owl-page.active span {
	width: 1.5em;
	border-radius: 0.4rem;
	opacity: 1;
	filter: Alpha(Opacity=100);
}

.owl-theme .owl-controls .owl-page span.owl-numbers {
	padding: 2px 10px;
	width: auto;
	height: auto;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	color: #ccc;
	font-size: 12px;
}

.owl-item.loading {
	min-height: 150px;
	background: url(/static/mobile/images/ajaxloader.gif) no-repeat center center;
}

.owl-theme .owl-controls .owl-buttons div {
	margin-top: -20px;
	font-size: 40px;
}

.gallery .owl-controls .owl-buttons div {
	font-size: 2em;
}

#intro-wrap .owl-carousel .owl-wrapper-outer,
#intro-wrap .owl-wrapper,
#intro-wrap .owl-carousel .owl-item {
	height: inherit;
}

#intro-wrap .owl-carousel .owl-item {
	overflow: hidden;
}

#intro-wrap2 .owl-carousel .owl-wrapper-outer,
#intro-wrap2 .owl-wrapper,
#intro-wrap2 .owl-carousel .owl-item {
	height: inherit;
}

#intro-wrap .owl-carousel .owl-item {
	overflow: hidden;
}

@media handheld,
only screen and (min-width:48em) {
	.owl-theme .owl-controls .owl-buttons div {
		margin-top: -25px;
		font-size: 50px;
	}

	.gallery .owl-controls .owl-buttons div {
		font-size: 2em;
	}

	.carousel-item h1,
	.carousel-item h2,
	.carousel-item h3,
	.carousel-item h4,
	.carousel-item h5,
	.carousel-item h6 {
		margin-top: 0.67em;
	}

	.caption-mockup h2 {
		margin-top: 0;
	}

	#intro .intro-mockup-wrapper {
		margin-top: 10em;
	}

	.caption-mockup.caption-left,
	.caption-mockup.caption-right {
		margin-top: 2em;
		text-align: left;
		padding-left: 2em;
	}
}

.owl-item.active .caption h2,
.owl-item.active .caption-mockup h2,
.caption-mockup.caption-left h2,
.caption-mockup.caption-right h2 {}

aside.sidebar {
	margin-top: 3em;
}

.blog.masonry-style article.three .blog-excerpt-inner:after,
.blog.masonry-style article.four .blog-excerpt-inner:after,
.blog-section.masonry-style article.three .blog-excerpt-inner:after,
.blog-section.masonry-style article.four .blog-excerpt-inner:after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0 0.556em 0.556em 0.556em;
	height: 0.333em;
	content: " ";
	;
}

}

/*----------------------------------------------------------------
    Core Owl Carousel CSS File
    v1.24 Customized for Beetle
----------------------------------------------------------------*/

/* clearfix */

.owl-carousel .owl-wrapper:after {
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	content: ".";
	line-height: 0;
}

/* display none until init */

.owl-carousel {
	position: relative;
	display: none;
	width: 100%;
	-ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
	position: relative;
	display: none;
	-webkit-transform: translate3d(0px, 0px, 0px);
	-moz-transform: translate3d(0px, 0px, 0px);
	-ms-transform: translate3d(0px, 0px, 0px);
	-o-transform: translate3d(0px, 0px, 0px);
	transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
	float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
	cursor: pointer;
}

.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */

.grabbing {
	cursor: url(/static/mobile/css/img/grabbing.png) 8 8, move;
}

/* fix */

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	backface-visibility: hidden;
}

/* CSS3 Transitions */

.research-link {
	padding: 0 10px;
}

.research-link h3 {
	font-size: 20px;
	font-weight: 200;
	padding-top: 8px;
}

.research-link h3 a:hover {
	color: #666;
}

.research-link p {
	font-size: 14px;
}

.research-link .more-btn {
	text-align: inherit;
}

.owl-origin {
	-webkit-perspective: 1200px;
	-webkit-perspective-origin-x: 50%;
	-webkit-perspective-origin-y: 50%;
	-moz-perspective: 1200px;
	-moz-perspective-origin-x: 50%;
	-moz-perspective-origin-y: 50%;
	-ms-perspective: 1200px;
	-ms-perspective-origin-x: 50%;
	-ms-perspective-origin-y: 50%;
	-o-perspective: 1200px;
	-o-perspective-origin-x: 50%;
	-o-perspective-origin-y: 50%;
	perspective: 1200px;
	perspective-origin-x: 50%;
	perspective-origin-y: 50%;
}

/* fade */

.owl-fade-out {
	z-index: 10;
	-webkit-animation: fadeOut .7s both ease;
	-moz-animation: fadeOut .7s both ease;
	animation: fadeOut .7s both ease;
}

.owl-fade-in {
	z-index: 10;
	-webkit-animation: fadeIn .7s both ease;
	-moz-animation: fadeIn .7s both ease;
	animation: fadeIn .7s both ease;
}

/* backSlide */

.owl-backSlide-out {
	z-index: -10;
	-webkit-animation: backSlideOut 1s both ease;
	-moz-animation: backSlideOut 1s both ease;
	animation: backSlideOut 1s both ease;
}

.owl-backSlide-in {
	z-index: 10;
	-webkit-animation: backSlideIn 1s both ease;
	-moz-animation: backSlideIn 1s both ease;
	animation: backSlideIn 1s both ease;
}

/* goDown */

.owl-goDown-out {
	z-index: -10;
	-webkit-animation: scaleToFade .7s ease both;
	-moz-animation: scaleToFade .7s ease both;
	animation: scaleToFade .7s ease both;
}

.owl-goDown-in {
	z-index: 10;
	-webkit-animation: goDown .6s ease both;
	-moz-animation: goDown .6s ease both;
	animation: goDown .6s ease both;
}

/* scaleUp */

.owl-fadeUp-in {
	z-index: 10;
	-webkit-animation: scaleUpFrom .5s ease both;
	-moz-animation: scaleUpFrom .5s ease both;
	animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
	z-index: -10;
	-webkit-animation: scaleUpTo .5s ease both;
	-moz-animation: scaleUpTo .5s ease both;
	animation: scaleUpTo .5s ease both;
}

/* scaleDown */

.owl-scaleDown-in {
	z-index: 10;
	-webkit-animation: scaleDownFrom .7s ease both;
	-moz-animation: scaleDownFrom .7s ease both;
	animation: scaleDownFrom .7s ease both;
	-webkit-animation-delay: .3s;
	-moz-animation-delay: .3s;
	animation-delay: .3s;
}

.owl-scaleDown-out {
	z-index: -10;
	-webkit-animation: scaleDownTo .5s ease both;
	-moz-animation: scaleDownTo .5s ease both;
	animation: scaleDownTo .5s ease both;
}

/* scaleDownRight */

.owl-scaleDownRight-in {
	z-index: 10;
	-webkit-animation: scaleDownRightFrom .7s ease both;
	-moz-animation: scaleDownRightFrom .7s ease both;
	animation: scaleDownRightFrom .7s ease both;
}

.owl-scaleDownRight-out {
	z-index: -10;
	-webkit-animation: scaleDownRightTo .6s ease both;
	-moz-animation: scaleDownRightTo .6s ease both;
	animation: scaleDownRightTo .6s ease both;
}

/* scaleUpLeft */

.owl-scaleUpLeft-in {
	z-index: 10;
	-webkit-animation: scaleUpLeftFrom .7s ease both;
	-moz-animation: scaleUpLeftFrom .7s ease both;
	animation: scaleUpLeftFrom .7s ease both;
}

.owl-scaleUpLeft-out {
	z-index: -10;
	-webkit-animation: scaleUpLeftTo .6s ease both;
	-moz-animation: scaleUpLeftTo .6s ease both;
	animation: scaleUpLeftTo .6s ease both;
}

/* fadeTop */

.owl-fadeTop-in {
	z-index: 10;
	-webkit-animation: fadeTopFrom .7s ease both;
	-moz-animation: fadeTopFrom .7s ease both;
	animation: fadeTopFrom .7s ease both;
}

.owl-fadeTop-out {
	z-index: -10;
	-webkit-animation: fadeTopTo .7s ease both;
	-moz-animation: fadeTopTo .7s ease both;
	animation: fadeTopTo .7s ease both;
}

/* overlap */

.owl-overlap-in {
	z-index: 10;
	-webkit-animation: overlapFrom .6s ease both;
	-moz-animation: overlapFrom .6s ease both;
	animation: overlapFrom .6s ease both;
}

.owl-overlap-out {
	z-index: -10;
	-webkit-animation: overlapTo .7s ease both;
	-moz-animation: overlapTo .7s ease both;
	animation: overlapTo .7s ease both;
}

/* Keyframes */

/*empty*/

@-webkit-keyframes empty {
	0% {
		opacity: 1;
	}
}

@-moz-keyframes empty {
	0% {
		opacity: 1;
	}
}

@keyframes empty {
	0% {
		opacity: 1;
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-moz-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@-moz-keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@-webkit-keyframes backSlideOut {
	25% {
		opacity: .5;
		-webkit-transform: translateZ(-500px);
	}

	75% {
		opacity: .5;
		-webkit-transform: translateZ(-500px) translateX(-200%);
	}

	100% {
		opacity: .5;
		-webkit-transform: translateZ(-500px) translateX(-200%);
	}
}

@-moz-keyframes backSlideOut {
	25% {
		opacity: .5;
		-moz-transform: translateZ(-500px);
	}

	75% {
		opacity: .5;
		-moz-transform: translateZ(-500px) translateX(-200%);
	}

	100% {
		opacity: .5;
		-moz-transform: translateZ(-500px) translateX(-200%);
	}
}

@keyframes backSlideOut {
	25% {
		opacity: .5;
		transform: translateZ(-500px);
	}

	75% {
		opacity: .5;
		transform: translateZ(-500px) translateX(-200%);
	}

	100% {
		opacity: .5;
		transform: translateZ(-500px) translateX(-200%);
	}
}

@-webkit-keyframes backSlideIn {

	0%,
	25% {
		opacity: .5;
		-webkit-transform: translateZ(-500px) translateX(200%);
	}

	75% {
		opacity: .5;
		-webkit-transform: translateZ(-500px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateZ(0) translateX(0);
	}
}

@-moz-keyframes backSlideIn {

	0%,
	25% {
		opacity: .5;
		-moz-transform: translateZ(-500px) translateX(200%);
	}

	75% {
		opacity: .5;
		-moz-transform: translateZ(-500px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateZ(0) translateX(0);
	}
}

@keyframes backSlideIn {

	0%,
	25% {
		opacity: .5;
		transform: translateZ(-500px) translateX(200%);
	}

	75% {
		opacity: .5;
		transform: translateZ(-500px);
	}

	100% {
		opacity: 1;
		transform: translateZ(0) translateX(0);
	}
}

@-webkit-keyframes scaleToFade {
	to {
		opacity: 0;
		-webkit-transform: scale(.8);
	}
}

@-moz-keyframes scaleToFade {
	to {
		opacity: 0;
		-moz-transform: scale(.8);
	}
}

@keyframes scaleToFade {
	to {
		opacity: 0;
		transform: scale(.8);
	}
}

@-webkit-keyframes goDown {
	from {
		-webkit-transform: translateY(-100%);
	}
}

@-moz-keyframes goDown {
	from {
		-moz-transform: translateY(-100%);
	}
}

@keyframes goDown {
	from {
		transform: translateY(-100%);
	}
}

@-webkit-keyframes scaleUpFrom {
	from {
		opacity: 0;
		-webkit-transform: scale(1.5);
	}
}

@-moz-keyframes scaleUpFrom {
	from {
		opacity: 0;
		-moz-transform: scale(1.5);
	}
}

@keyframes scaleUpFrom {
	from {
		opacity: 0;
		transform: scale(1.5);
	}
}

@-webkit-keyframes scaleUpTo {
	to {
		opacity: 0;
		-webkit-transform: scale(1.5);
	}
}

@-moz-keyframes scaleUpTo {
	to {
		opacity: 0;
		-moz-transform: scale(1.5);
	}
}

@keyframes scaleUpTo {
	to {
		opacity: 0;
		transform: scale(1.5);
	}
}

@-webkit-keyframes scaleDownFrom {
	from {
		opacity: 0;
		-webkit-transform: scale(1.5);
	}
}

@-moz-keyframes scaleDownFrom {
	from {
		opacity: 0;
		-moz-transform: scale(1.5);
	}
}

@keyframes scaleDownFrom {
	from {
		opacity: 0;
		transform: scale(1.5);
	}
}

@-webkit-keyframes scaleDownTo {
	to {
		opacity: 0;
		-webkit-transform: scale(.8);
	}
}

@-moz-keyframes scaleDownTo {
	to {
		opacity: 0;
		-moz-transform: scale(.8);
	}
}

@keyframes scaleDownTo {
	to {
		opacity: 0;
		transform: scale(.8);
	}
}

@-webkit-keyframes scaleDownRightFrom {
	from {
		-webkit-transform: translateX(100%);
	}
}

@-moz-keyframes scaleDownRightFrom {
	from {
		-moz-transform: translateX(100%);
	}
}

@keyframes scaleDownRightFrom {
	from {
		transform: translateX(100%);
	}
}

@-webkit-keyframes scaleDownRightTo {
	to {
		opacity: 0;
		-webkit-transform: scale(.8);
	}
}

@-moz-keyframes scaleDownRightTo {
	to {
		opacity: 0;
		-moz-transform: scale(.8);
	}
}

@keyframes scaleDownRightTo {
	to {
		opacity: 0;
		transform: scale(.8);
	}
}

@-webkit-keyframes scaleUpLeftFrom {
	from {
		opacity: 0;
		-webkit-transform: scale(.8);
	}
}

@-moz-keyframes scaleUpLeftFrom {
	from {
		opacity: 0;
		-moz-transform: scale(.8);
	}
}

@keyframes scaleUpLeftFrom {
	from {
		opacity: 0;
		transform: scale(.8);
	}
}

@-webkit-keyframes scaleUpLeftTo {
	to {
		-webkit-transform: translateX(-100%);
	}
}

@-moz-keyframes scaleUpLeftTo {
	to {
		-moz-transform: translateX(-100%);
	}
}

@keyframes scaleUpLeftTo {
	to {
		transform: translateX(-100%);
	}
}

@-webkit-keyframes fadeTopFrom {
	from {
		opacity: 0.3;
		-webkit-transform: translateY(-100%);
	}
}

@-moz-keyframes fadeTopFrom {
	from {
		opacity: 0.3;
		-moz-transform: translateY(-100%);
	}
}

@keyframes fadeTopFrom {
	from {
		opacity: 0.3;
		transform: translateY(-100%);
	}
}

@-webkit-keyframes fadeTopTo {
	to {
		opacity: 0.3;
		-webkit-transform: translateY(100%);
	}
}

@-moz-keyframes fadeTopTo {
	to {
		opacity: 0.3;
		-moz-transform: translateY(100%);
	}
}

@keyframes fadeTopTo {
	to {
		opacity: 0.3;
		transform: translateY(100%);
	}
}

@-webkit-keyframes overlapFrom {
	from {
		-webkit-transform: translateX(100%);
	}
}

@-moz-keyframes overlapFrom {
	from {
		-moz-transform: translateX(100%);
	}
}

@keyframes overlapFrom {
	from {
		transform: translateX(100%);
	}
}

@-webkit-keyframes overlapTo {
	to {
		-webkit-transform: translateX(-25%);
	}
}

@-moz-keyframes overlapTo {
	to {
		-moz-transform: translateX(-25%);
	}
}

@keyframes overlapTo {
	to {
		transform: translateX(-25%);
	}
}

@-webkit-keyframes Rotate {
	from {
		transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
	}
}

/*----------------------------------------------------------------
    Layers CSS 1.0.2  responsive adjustments
    Released by Jerry J?ppinen under the MIT license
    http://eiskis.net/layers
    2013-10-25 14:56 Europe/Helsinki
----------------------------------------------------------------*/

@media handheld,
only screen and (max-width: 1200px) {
	.sevies-box .small-icon {
		text-align: center !important;
		padding: 40px 10px 10px 10px !important;
		height: auto !important;
		display: block !important;
		width: 70px !important;
		margin: 0px auto 0 auto !important;
		float: none !important;
	}

	.sevies-box .small-icon i {
		width: 100% !important;
		font-size: 50px !important;
		text-align: center !important;
	}

	.owl-wrapper-outer .column {
		width: 100%;
	}

	.owl-wrapper-outer .column {}

	.sevies-box {
		padding: 0px !important;
	}

	.sevies-box h4 {
		text-align: center
	}

	.sevies-box .small-icon-text {
		width: 100% !important;
		text-align: center !important;
		margin: 0 !important;
	}

	.column.two {
		width: 30%
	}

	.column.fifth {
		width: 31.5%
	}

	.column.fifth {
		margin-bottom: 20px;
	}

	.related .item {
		width: 50%
	}
}

@media handheld,
only screen and (max-width:48em) {

	/*sidebar*/
	.sidebar-c {
		position: fixed;
		width: 80px;
		bottom: 0px;
		left: -29px;
		z-index: 1000;
	}

	.sidebar-c a.side-btn {
		display: block;
		padding: 15px;
		background-color: #000;
		text-align: center;
	}

	.sidebar-c a:hover {
		background-color: #333;
	}

	.sidebar-c a.side-btn i {
		color: #fff;
	}

	.post-area .nine {
		padding-right: 0px;
	}

	.mydiv {
		background-color: #fff;
		text-align: center;
		line-height: 40px;
		z-index: 1001;
		left: 50%;
		/*FF IE7*/
		top: 50%;
		/*FF IE7*/
		margin-top: 0px;
		position: fixed !important;
		/*FF IE7*/
		position: absolute;
		/*IE6*/
		_top: expression(eval(document.compatMode && document.compatMode=='CSS1Compat') ? documentElement.scrollTop + (document.documentElement.clientHeight-this.offsetHeight)/2:
			/*IE6*/
			document.body.scrollTop + (document.body.clientHeight - this.clientHeight)/2);
		/*IE5 IE5.5*/
	}

	.mydiv,
	.mydiv2 {
		background-color: #fff;
		text-align: center;
		line-height: 40px;
		z-index: 1001;
		left: 50%;
		/*FF IE7*/
		top: 50%;
		/*FF IE7*/
		margin-top: 0px;
		position: fixed !important;
		/*FF IE7*/
		position: absolute;
		/*IE6*/
		_top: expression(eval(document.compatMode && document.compatMode=='CSS1Compat') ? documentElement.scrollTop + (document.documentElement.clientHeight-this.offsetHeight)/2:
			/*IE6*/
			document.body.scrollTop + (document.body.clientHeight - this.clientHeight)/2);
		/*IE5 IE5.5*/
	}

	.mydiv {
		width: 240px;
		height: 370px;
		margin-left: -120px !important;
		/*FF IE7 该值为本身宽的一半 */
		margin-top: -155px !important;
		/*FF IE7 该值为本身高的一半*/
	}

	.mydiv2 {
		width: 300px;
		height: 260px;
		margin-left: -150px !important;
		/*FF IE7 该值为本身宽的一半 */
		margin-top: -130px !important;
		/*FF IE7 该值为本身高的一半*/
	}

	.popdiv_l {
		margin: 20px 20px 0 20px;
		width: 200px;
	}

	.popdiv_r {
		font-size: 16px;
		margin: 0px auto;
		width: 100%;
		text-align: center;
		line-height: 30px;
	}

	.popdiv_c {
		font-size: 16px;
		margin: 40px auto;
		width: 100%;
		text-align: center;
		line-height: 30px;
	}

	.popdiv_r a,
	.popdiv_c a {
		display: block;
		width: 90px;
		margin: 20px auto;
		height: 40px;
		color: #37b5b6;
		background: #fff;
		border: solid 1px #37b5b6;
		font-size: 14px;
		text-align: center;
		line-height: 40px;
		border-radius: 4px;
		-webkit-transition: all .3s cubic-bezier(.16, .53, .15, .99);
		-moz-transition: all .3s cubic-bezier(.16, .53, .15, .99);
		transition: all .3s cubic-bezier(.16, .53, .15, .99);
	}

	.popdiv_r a:hover,
	.popdiv_c a:hover {
		background: #333;
		color: #fff;
	}

	.popdiv_r p {
		margin: 0;
	}

	/*sidebar*/
	#intro .intro-mockup img {
		margin-top: 2em;
	}

	#top-footer h4 {
		margin-top: 20px;
	}

	.blog.list-style article figure img,
	.blog-section.list-style article figure img,
	.search.list-style article figure img {
		width: 100%;
	}

	.blog.list-style article,
	.blog-section.list-style article,
	.search.list-style article {
		margin-right: 0px;
	}

	.page-wz h2 {
		margin-top: 30px;
	}

	.page-wz h2,
	.page-wz p {
		text-align: center;
	}

	.page-wz a.button {
		width: 100px;
		margin: 20px auto;
		display: block;
		text-align: center;
	}

	.owl-item {}

	.sevies-box-s-t .column.three {
		margin-bottom: 30px;
	}

	.sevies-box-s-t .column.three h4 {
		font-size: 20px;
	}

	.sevies-box-s .column.four {}

	.column.two {
		width: 48.5%
	}

	.column.one,
	.column.sixth,
	.column.three,
	.column.fourth,
	.column.four,
	.column.twosixths,
	.column.third,
	.column.five,
	.column.six,
	.column.half,
	.column.threesixths,
	.column.twofourths,
	.column.seven,
	.column.eight,
	.column.foursixths,
	.column.twothirds,
	.column.nine,
	.column.threefourths,
	.column.ten,
	.column.fivesixths,
	.column.eleven {
		float: none !important;
		clear: both !important;
		margin-right: 0 !important;
		margin-left: 0 !important;
		width: auto !important;
	}

	.caption-mockup.caption-left,
	.caption-mockup.caption-right {
		padding-left: 0;
	}

	#intro .intro-mockup-wrapper {
		margin-top: 10em;
	}

	.owl-wrapper-outer .column {
		width: 100%;
	}

	.owl-wrapper-outer .research-link h3 {
		padding-top: 20px;
	}

	.owl-wrapper-outer .research-link .more-btn {
		margin-bottom: 20px;
	}

	.related .item {
		width: 100%
	}

	.caption {
		padding-top: 30%;
	}


	.column.fifth {
		width: 48.5%
	}

	.caption h2 img {
		height: 50px;
	}

	.portfolio .caption h2,
	.page .caption h2,
	.list-style .caption h2 {
		margin-top: 30px;
	}

	.no-parallax header.transparent.light #brand a,
	.no-parallax header.transparent.light nav>ul>li>a {
		color: #000 !important;
		line-height: 40px;
		text-align: center;
	}

	.ge-team .imggg {
		margin-bottom: 100px;
	}

	.blog.masonry-style article.three .blog-excerpt h2,
	.blog.masonry-style article.four .blog-excerpt h2,
	.blog-section.masonry-style article.three .blog-excerpt h2,
	.blog-section.masonry-style article.four .blog-excerpt h2 {
		margin-top: 0;
		font-size: 1.5em;
		font-weight: 300;
		color: #000;
	}

	.sevies-box .small-icon {
		text-align: center !important;
		margin-top: 20px !important;
		padding: 0 !important;
	}

	.sevies-box .small-icon i {
		font-size: 60px !important;
	}

	.text-ds .small-icon {
		position: inherit;
	}

	.small-icon {
		margin-top: 0px !important;
	}

	/* header.fixed-header.transparent.light #brand a {
		background-image: url(/static/mobile/images/logo.png);
		background-size: 43px 46px;
		width: 43px;
		height: 46px;
	} */
	#BANVIDEO {
		display: none;
	}

	header.fixed-header.transparent.light #brand a,
	header.fixed-header.transparent.light nav>ul>li>a {
		color: #333;
		text-shadow: none;
	}

	header.fixed-header.transparent.light nav>ul>li:hover>a {
		border-bottom: 2px solid #333;
	}
}


@media handheld,
only screen and (max-width:48em) {
	body {
		font-size: 0.9em;
		-webkit-text-size-adjust: none;
	}

	/* 2.12 新闻资讯 */
	.news-banner {
		width: 100%;
		height: 200px !important;
		margin-top: 65px;
	}
}

.news-bgc {
	background: url(/static/mobile/images/news_banner.png) no-repeat center center;
	background-size: 100% 100%;
}

.newsInfor {
	width: 100%;
	height: 6em;
	border-bottom: 1px solid #dcdcdc;
	background-color: #fff;
	padding: 1em 1.27em 1em 1.27em;
	box-sizing: border-box;
	position: relative;
}

.new-title {
	font-size: 1.5em;
	color: #151e1e;
	position: absolute;
	left: 2.3em;
	top: 0.4em;
}

.eng-log {
	color: #000;
	font-size: 1em;
	position: absolute;
	left: 3.5em;
	top: 2.5em;
}

.less-pt {
	padding: 2em 0 !important;
	padding-bottom: 0px !important;
}

.artical-tit {
	font-size: 0.7em;
	color: #333 !important;
	font-weight: 500;
	margin-bottom: 0.2em !important;
}

.meta-post {
	float: right;
}

.meta-post>a {
	font-size: 1.2em;
	color: #666 !important;
	font-weight: normal !important;
}

.btn-more {
	text-align: left;
	padding-left: 0.8em;
	width: 7.2em;
	height: 2.4em;
	cursor: pointer;
	border-radius: 10px;
	border: solid 1px #37b5b6;
	font-size: 1em;
	color: #37b5b6;
	background-color: #fff;
	text-align: center;
}

/* 解决方案详情 */
.digital {
	width: 100%;
	height: 16.6rem;
	text-align: center;
	line-height: 16.6rem;
	color: #fff;
	font-size: 1.27rem;
	margin-top: 3.2rem;
	background: url(/static/mobile/images/ditigal_banner.png) no-repeat center center;
	background-size: 100% 100%;
}

.center-digital {
	width: 100%;
	height: 24.25rem;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 0.4rem 0 7.5rem 0;
}

.digital-font {
	color: #666;
	font-size: 1.2rem;
	font-weight: 500;
	text-align: center;
	margin-bottom: 1.5rem;
}

.digital_problem {
	width: 100%;
	padding: 0 2.8rem;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	flex-direction: row;
	flex-wrap: wrap;
}

.digital_problem>div {
	width: 45%;
	height: 8rem;
	border-radius: 10px;
	border: 1px solid #dcdcdc;
	box-sizing: border-box;
	/* padding: 1rem 1.5rem 2.5rem 1.8rem; */
}

.data_banner {
	width: 100%;
	height: 9.6rem;
	background: url(/static/mobile/images/data_banner.png) no-repeat center center;
	background-size: 100% 100%;
}

.our_support {
	width: 100%;
	/* height: 31rem; */
	box-sizing: border-box;
	padding-bottom: 4rem;
	background-color: #fff;
}

.centerOur {
	width: 100%;
	/* height: 31rem; */
	margin: 0 auto;
	box-sizing: border-box;
	padding: 0.5rem 2.5rem 1.4rem 3.5rem;
}

.support_type {
	color: #666;
	font-size: 1.2rem;
	text-align: center;
	margin-bottom: 1rem;
	font-weight: 500;
}

.support-con {
	color: #999;
	font-size: .9rem;
	margin-bottom: 0px;
}

.circle_tyle {
	width: 100%;
	box-sizing: border-box;
	padding: 0rem 1.25rem;
	display: flex;
	justify-content: space-between;
}

.circle_type1 {
	width: 3.5rem;
	height: 3.5rem;
}

.marginBot {
	margin-bottom: 1.5rem;
}

.digital_problem1>img {
	display: block;
	width: 4rem;
	height: 4rem;
	margin: 1.5rem auto;
	margin-bottom: 0;
}

.digital_problem1>p {
	margin: 0 !important;
	text-align: center;
	margin-top: 0.5rem !important;
}

.book1 {
	background: url(/static/mobile/images/type11.png) no-repeat center;
}

.book2 {
	background: url(/static/mobile/images/type22.png) no-repeat center;
}

.book3 {
	background: url(/static/mobile/images/type33.png) no-repeat center;
}

.book4 {
	background: url(/static/mobile/images/type44.png) no-repeat center;
}

.circle-con {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.02);
	position: relative;
}

.circle_text {
	color: #666;
	font-size: .8rem;
	font-weight: 500;
	text-align: center;
}

/*  新闻详情 */
/*  新闻资讯详情  */
.news-bgc2 {
	background: url(/static/mobile/images/news-bgc.png) no-repeat center;
	background-size: 100% 100%;
}

.news-bgc1 {
	background: url(/static/mobile/images/news-bgc.png) no-repeat center;
	background-size: 100% 100%;
}

.news-bgc3 {
	background: url(/static/mobile/images/news-bgc.png) no-repeat center;
	background-size: 100% 100%;
}

.banner-sol-bg {
	/* background: url(/static/mobile/images/bgc1.png) no-repeat center; */
	background-color: transparent;
	display: block;
}

.banner-sol {
	margin-top: 3.2rem;
	width: 100%;
	height: 15rem;
	overflow: hidden;
	box-sizing: border-box;
	padding: 0 1rem;
	/* background: #086cea no-repeat center bottom; */
}

.content_detail {
	width: 100%;

	box-sizing: border-box;
	padding: 0 1.5rem;
}

.detail-title {
	color: #000;
	font-weight: 500;
	font-size: 1.1rem;
	margin-bottom: 0 !important;
	margin-top: 0 !important;
}

.change-line {
	font-size: 0.85rem;
}

.detail-con {
	font-size: 1rem;
	color: #333;
}

.news-text {
	font-size: 1rem;
}

.product-bass-title {
	font-size: 1.2rem;
	color: #fff;
	text-align: center;
	margin-top: 6rem;
}

/* 区块链 CoBass平台 */
.solution-bgc {
	background: url(/static/mobile/images/solution-img.png) no-repeat center;
}

.product-bass-title {
	font-size: 1.5rem;
	font-weight: 500;
	color: #fff;
	text-align: center;
	margin-top: 6rem;
}

.bass-intro {
	width: 80%;
	height: 8rem;
	margin: 0 auto;
	margin-top: -2.5rem;
}

.bass-bgc-text {
	width: 100%;
	font-size: 0.9rem;
	color: #333;
	padding: 0.5rem 2rem 1.3rem 2rem;
}

.mt_none {
	margin-top: 0;
}

.content_detail {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: -1.5rem;
}

.product_show {
	width: 100%;
	height: 4rem;
	line-height: 4rem;
	border-bottom: 1px solid #dcdcdc;
}

.benben-icon {
	width: 1.2rem;
	height: 1.5rem;
	display: inline-block;
	position: relative;
	top: 0.3rem;
}

.show {
	margin-left: 0.3rem;
}

.small-mr {
	margin-right: 0.8rem;
}

.show {
	font-size: 1.2rem;
	color: #151e1e;
	display: inline-block !important;
	font-weight: 500;
}

.show-engglish {
	font-size: 12px;
	line-height: 48px;
	color: #666666;
	font-weight: 500;
}

.center-bass-man {
	width: 100%;
	min-height: 50rem;
	background: url(/static/mobile/images/bass-man.png) no-repeat center center;
	background-size: 100% 100%;
	box-sizing: border-box;
	padding: 0.5rem 0.5rem 1rem 0.5rem;
}

.center-bass-man ul {
	padding: 0 !important;
}

.center-bass-man ul li {
	list-style: none;
	width: 100%;
	min-height: 5.25rem;
	padding: 0.8rem;
	box-sizing: border-box;
	background-color: #fff;
	opacity: 0.8;
	margin-bottom: 1.2rem;
}

.bass-title {
	color: #333;
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 10px;
	margin: 0 !important;
}

.bass-title-int {
	color: #666;
	font-size: 0.8rem;
	font-weight: 500;
	/* line-height: 25px; */
	margin: 0 !important;
}

.bass-circle {
	width: 100%;
	background-color: #eee;
	box-sizing: border-box;
	padding-top: 1.3rem;
	padding-bottom: 2.8rem;
}

/* 产品服务 */
.banner-sol-bg2 {
	background: url(/static/mobile/images/bgc2.png) no-repeat center;
	background-color: transparent;
	background-size: 100% 100%;
	display: block;
}

.qukuailian {
	width: 100%;
	height: 4.5rem;
	box-sizing: border-box;
	padding: 0.5rem 1.5em 0.6rem 0rem;
	border-bottom: 1px solid #dcdcdc;
	margin-top: 1.5rem;
	position: relative;
}

.qukuailian img {
	display: inline-block;
	width: 1.2rem;
	height: 1.5rem;
	position: relative;
	top: 0.3rem;
}

.qukuailian a {
	font-size: 1.2rem;
	color: #151e1e;
	display: inline-block !important;
	font-weight: 500;
	margin-left: 0.3rem;
}

.eng-tro {
	font-size: 0.7rem;
	line-height: 48px;
	color: #000;
	font-weight: 500;
	position: absolute;
	top: 1.7rem;
	left: 1.8rem;
	margin: 0 !important;
}

.mb5 {
	margin-bottom: 1.5rem;
}

.product-detail {
	width: 100%;
	height: 5rem;
	box-sizing: border-box;
	padding: 0.5rem 1.8rem 0.5rem 1.5rem;
	border: 1px solid #37b5b6;
	margin-bottom: 1.5rem;
	background-color: #37b5b6;
}

.detail-title {
	color: #fff;
	font-size: 1.1rem;
}

.detail-cont {
	color: #fff;
	margin-top: 0.2rem;
	margin-bottom: 0 !important;
	font-size: 0.9rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

/* 解决方案 */
.banner-sol-bg {
	background: url(/static/mobile/images/bgc1.png) no-repeat center;
	background-color: transparent;
	background-size: 100% 100%;
	display: block;
}

.content_detail .copper {
	width: 95%;
	min-height: 18rem;
	box-sizing: border-box;
	padding: 1.3rem 1rem 1rem 1rem;
	border-radius: 10px;
	background-color: #fff;
	margin: 0 auto;
	margin-bottom: 2rem;

}

.top_img>img {
	width: 100%;
}

.company_name {
	color: #333333;
	font-size: 1rem;
	margin-top: 0.9rem;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.company_detail {
	font-size: 0.8rem;
	letter-spacing: 0.1rem;
	color: #666666;
	line-height: 1.3rem;
	overflow: hidden;
	position: relative;
	height: 3.8rem;
	position: relative;
}

.p-after:after {
	content: "...";
	position: absolute;
	bottom: 0;
	right: 0;
}

.copper:nth-child(1) {
	margin-top: -1.5rem;
}

/* 解决方案详情  */
.center-banner-pro {
	box-sizing: border-box;
	padding: 0rem 2rem 0rem 2rem;
}

.product-title {
	text-align: center;
	font-size: 1.4rem;
	color: #fff !important;
	margin-bottom: 0px;
}

.product-content {
	font-size: 1rem;
	color: #fff;
	line-height: 1.6rem;
	text-indent: 2.5rem;
}

.content_detail {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: -0.9rem;
}

.product_show {
	width: 100%;
	height: 3.8rem;
	line-height: 3.8rem;
	border-bottom: 1px solid #dcdcdc;
	margin-bottom: 0 !important;
}

.benben-icon {
	width: 1.2rem;
	height: 1.5rem;
	position: relative;
	top: 0.3rem;
	display: inline-block;
}

ul li {
	list-style: none;
}

.plan_serialize li {
	padding-left: 1rem;
	font-size: 0.9rem;
	padding-bottom: 10px;
	background: url(/static/mobile/images/ling.png) no-repeat 0px 14px;
	line-height: 1.5rem;
	background-position: 0px 9px;
}

.plan_serialize2 li {
	padding-left: 1rem;
	font-size: 0.9rem;
	padding-bottom: 10px;
	background: url(/static/mobile/images/ling.png) no-repeat 0px 14px;
	line-height: 1.5rem;
	background-position: 0px 9px;
}

.plan_serialize3 li {
	padding-left: 1rem;
	font-size: 0.9rem;
	padding-bottom: 10px;
	background: url(/static/mobile/images/ling.png) no-repeat 0px 14px;
	line-height: 1.5rem;
	background-position: 0px 9px;
}

.plan_serialize5 li {
	padding-left: 1rem;
	font-size: 0.9rem;
	padding-bottom: 10px;
	background: url(/static/mobile/images/ling.png) no-repeat 0px 14px;
	line-height: 1.5rem;
	background-position: 0px 9px;
}

.Representative-product {
	width: 100%;
	box-sizing: border-box;
	padding: 0px 1.8rem;
}

.product_normal {
	width: 100%;
	height: 4.3rem;
	border: 1px solid #dcdcdc;
	color: #fff;
	text-align: center;
	line-height: 4.3rem;
	font-size: 1rem;
	margin-right: 0.9rem;
	margin-bottom: 1.25rem;
	background-color: #37b5b6;
	font-weight: 500;
}

.product_show_normal {
	width: 100%;
	height: 4.8rem;
	line-height: 4.8rem;
	border-bottom: 1px solid #dcdcdc;
	margin-bottom: 1rem;
	font-weight: normal;
}

/* 关于我们 */
.about-content {
	box-sizing: border-box;
	overflow: hidden;
}

.company-manage {
	box-sizing: border-box;
	padding: 1rem 0.5rem;
}

.company-manage .company-people {
	width: 100%;
	min-height: 19rem;
	background-color: #ffffff;
	border-radius: 0.6rem;
	box-shadow: 0px 2px 10px 6px rgba(0, 0, 0, 0.08);
	box-sizing: border-box;
	padding-top: 1rem;
	padding-left: 1rem;
	padding-right: 1rem;
	padding-bottom: 0.5rem;
	margin-bottom: 2rem;
}

.flex {
	border-bottom: 1px solid #7acecf;
	box-sizing: border-box;
	padding-bottom: 0.5rem;
}

.company-manage .company-people .person-img {
	width: 7rem;
	height: 7rem;
	border-radius: 50%;

}

.person-name {
	font-size: 1.5rem;
	font-weight: 500;
	color: #333;
}

.text-center {
	text-align: center;
}

.person-position {
	font-size: 0.9rem;
	font-weight: 500;
	color: #333;
	margin-left: 0.5rem;
}

.actor-show {
	line-height: 3rem;
}

.flex {
	display: flex;
}

.company-manage .company-people .person-detail {
	width: 100%;
	min-height: 2.5rem;
	font-family: MicrosoftYaHei;
	font-size: 16px;
	font-weight: normal;
	color: #666666;
	margin: 1rem auto;
}

.company-manage .company-people .person-detail ul {
	padding-left: 0rem !important;
}

.company-manage .company-people .person-detail ul li {
	padding-left: 1rem;
	padding-bottom: 10px;
	background: url(/static/mobile/images/yuan.png) no-repeat 0px 14px;
	line-height: 1rem;
	line-height: 1.5rem;
	background-position: 0px 0.5rem;
}

#main {
	width: 100%;
	/* height: 100%; */
}

.banner-sol-bg1 {
	background: url(/static/mobile/images/line.png) no-repeat center;
	background-color: transparent;
	display: block;
	background-size: 100% 100%;
}

.title-center {
	text-align: center;
	color: #fff;
	font-size: 1.1rem;
	margin-top: 1.1rem;
	margin-bottom: 0;
}

.center-con {
	width: 100%;
	height: 10rem;
	margin: 0 auto;
	color: #fff;
	box-sizing: border-box;
	padding: 0 2rem 0.5rem 2rem;
}

/*   开始公司介绍  */
.about-center {
	box-sizing: border-box;
	padding: 0 1rem;
}

.company-content {


	width: 100%;
	background-color: #fff;
	overflow: hidden;
	margin-bottom: 0.8rem;
}

.company-content .company-mid {
	height: 30rem;
	width: 100%;
	background: url(/static/mobile/images/company-us.png) no-repeat center center;
	background-size: 100% 100%;
}

.mine-items {
	position: relative;
	margin: 0 auto;
	padding: 0 1rem;
	width: 100%;
	height: 22rem;
}

/* 文字  北京共识... */
.mine-items .text-s {
	width: 100%;
	height: 20rem;
	overflow: hidden;
	font-size: 1rem;
	color: #ffffff;
	box-sizing: border-box;
	padding-top: 0.3rem;
	padding: 1.5rem 1.5rem 0.1rem 1.5rem;
}

.mine-items .text-s .left_line {
	position: absolute;
	left: 4.5rem;
	top: 1rem;
	width: 18.75rem;
	height: 0.18rem;
	background: url(/static/mobile/images/across-line.png) no-repeat center;
	margin-left: -9.3rem;
}

.mine-items .text-s .bottom_line {
	position: absolute;
	top: 3.125rem;
	left: 1rem;
	width: 0.18rem;
	height: 18.75rem;
	background: url(/static/mobile/images/shu-line.png) no-repeat center;
	margin-top: -9.37rem;
}

.mine-items .text-s .right_line {
	position: absolute;
	top: 18rem;
	left: 21.3rem;
	width: 300px;
	height: 3px;
	background: url(/static/mobile/images/across-line.png) no-repeat center;
	margin-left: -150px;
}

.mine-items .text-s .top_line {
	position: absolute;
	top: 11rem;
	left: 22.4rem;
	width: 3px;
	height: 300px;
	background: url(/static/mobile/images/shu-line.png) no-repeat center;
	margin-top: -60px;
}

/*  我们的愿景  */
.company-center-box {
	width: 100%;
	margin-bottom: 0 !important;
	font-family: MicrosoftYaHei;
	font-size: 1.5rem;
	text-align: center;
	font-weight: 500;
	line-height: 1.8rem;
	color: #ffffff;

}

/*  TOP1 */
.company-center-title1 {

	width: 100%;
	margin-top: 1rem;
	font-size: 0.9rem;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 1.6px;
	color: #ffffff;
}

.company-center-title2 {
	width: 100%;
	font-size: 0.9rem;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 1.6px;
	color: #ffffff;
	margin-top: -1rem;
}

.activity-content,
.map-content-center {
	padding: 0rem 1rem;
	box-sizing: border-box;
}

/*  联系方式 */
#container {
	width: 100%;
	height: 21rem;
}

.map-mid {
	padding: 1rem 1rem 0rem 1rem;
}

.map-position {
	box-sizing: border-box;
	padding: 0rem 1rem 0rem 1rem;
	width: 100%;
}

.map-code {
	display: flex;
	margin-top: 1rem;
}

.map-img {
	width: 8rem;
	height: 8rem;
	margin-right: 1rem;
}

.mb-none {
	margin-bottom: 0 !important;
}

.concat-way p {
	color: #333;
	font-size: 1rem;
}

/*  首页  */
.line-text {
	font-weight: 500;
	color: #333;
}

.con-setting {
	width: 100%;
	height: 34rem;
	background: #eee;
}
.con1{
	width:100%;
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	flex-wrap: wrap;
	height: auto;
}
.con1 .coo:nth-child(1){
	 margin-right: 2%;
 }
.con1 .coo:nth-child(1){
	margin-top: 0.5rem;
}
.con1 .coo:nth-child(2){
	margin-top: 0.5rem;
}
.con1 .coos{
	width: 49%;
	height: 11rem;
	background-color: #fff;
	box-sizing:border-box;
	padding:2rem 2rem;
	margin-bottom: 0.5rem;
}

.con1 .coos p{
	text-align: center;
	color: #000!important;
}
.con1 .coos img{
	display: block;
	margin: 0 auto;
	width: 4.5rem;
	height: 4.25rem;
}
.marginB{
	margin-bottom: 0.5rem;
}
.product_solu {
	width: 100%;
	box-sizing: border-box;
	padding: 1rem 2rem;
	background-color: #fff;
}

.normal-height {
	height: auto !important;
}

.index_comMid {
	width: 100%;
	height: 25rem;
	background: url('/static/mobile/images/usBgc.png') no-repeat center;
	background-size: 100% 100%;
}

.news-lis {
	width: 100%;
	height: 19rem;
	background: url(/static/mobile/images/news-bg.png) no-repeat center;
	/* background-color: #fff; */
	box-sizing: border-box;
	padding: 1.5rem 1rem 0.5rem 1rem;
}

.news-lis ul {
	margin-top:-2rem;
	padding: 0 !important;
}

.news-lis ul li {
	display: flex;
	font-size: 0.8rem;
	justify-content: space-between;
	width: 100%;
	height: 3rem;
	line-height: 3rem;
	/* margin-left: 3rem; */
	border-bottom: 1px solid #55596d;
	color: #fff;
	cursor: pointer;
}

.Norbtn-more {
	text-align: left;
	padding-left: 0.8em;
	width: 7.2em;
	height: 2.4em;
	cursor: pointer;
	border-radius: 10px;
	border: solid 1px #37b5b6;
	font-size: 1em;
	color: #37b5b6;
	text-align: center;
}

.logo-box {
	width: 100%;
	height: 25rem;
	display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

}

.logo-box {
	width: 100%;
	box-sizing: border-box;
	padding: 1rem;
}

.customers-article .logo-box span {
	/* width: 46.3%;
	height: 3.5rem;
	display: inline-block;
	margin-bottom: 1.5rem;
	 */
	width:46.3%;
    height: 0.42rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0.16rem;
}
.customers-article .logo-box span:first-child {
	margin-top: 2rem;
}

.customers-article .logo-box span:nth-child(2) {
	margin-top: 2rem;
}


.customers-article .logo-box span img {
	width: 100%;
	height: 3.5rem;
	display: inline-block;
	box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.05);
}

/*  底部 */
.footer-box {
	width: 100%;
	box-sizing: border-box;
	padding: 1rem 1rem 1rem 1rem;
	background-color: #2d2d2d;
}

.footer-nav-list a {
	display: inline-block;
	color: rgba(255, 255, 255, 0.8);
	height: 0.9rem;
	line-height: 0.9rem;
	width: 5rem;
	margin: 1rem 0;
	text-align: center;
	border-right: 1px solid #fff;
}

.footer-nav-list:last-child a {
	border-right: none;
}

.footer-div {
	width: 87%;
	display: flex !important;
	flex-direction: row;
	margin: 0 auto;
}

.location {
	display: inline-block;
	position: relative;
	top: 4px;
	width: 0.7rem;
	height: 1.5rem;
	margin-right: 0.2rem;
	background: url(/static/mobile/images/location-icon.png) no-repeat 0px 8px;
}
 .phoneNum {
    display: inline-block;
    position: relative;
    top: 4px;
    width: 0.6rem;
	height: 1.5rem;
	margin-right: 0.6rem;
    background: url(/static/mobile/images/phone-num.png) no-repeat 0px 8px;
}

.footer-box p {
	height: 2rem;
	margin-bottom: 0.6rem;
	color:#aaa;
	font-size:0.7rem;
	font-family: MicrosoftYaHei;
}

.margin-none-top {
	margin-top: 0;
}

.margin-r55 {
	margin-right: 3.4rem;
	margin-bottom: 2.5rem !important;
}

.QEcode .code-img {
	text-align: center;
	width: 6.25rem;
	display:inline-block;
	height: 6.25rem;
	background: url(/static/mobile/images/qrcode.png) no-repeat center;
	background-size: 100%;
}
.darken{
	margin-top: -0.9rem;
}
/*  背景 */
.whiteBgc {
	width: 100%;
	height: 10rem;
	background-color: #fff;
}

.Parposition {
	position: absolute;
	top: -6.5rem;

}

.footer-flex {
	width: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
}
.news-video{
	width: 100%;
	height:11rem;
	box-sizing:border-box;
	padding-left:10%;
	padding-right:10%;
	position: relative;
	margin-top: 5%;
}
.video-click{
	position: relative;
	top:-.5rem;
}
.map-content{
	margin-top:2rem;
	margin-bottom:2rem;
}

.setHeight{
	height:7rem;
}
/*  galaxyS5  */
@media handheld,
only screen and (max-width:22.5em) {
	.Parposition {
		position: absolute;
		top: -3.5rem;
	}
	.whiteBgc {
		height: 12rem;
	}
	.content-center{
		margin-top:0.2rem;
	}
	.content_detail .copper {
		min-height: 18rem;
	}

	.data_banner {
		height: 8.6rem;
	}

	.digital_problem {
		padding: 0 1.9rem;
	}

	.easy-text {
		font-size: 0.8rem;
	}

	.concat-way p {
		font-size: 0.8rem;
	}

	.mine-items .text-s .top_line {
		left: 21rem;
	}

	.person-position {
		margin-left: 1.5rem;
		font-size:0.7rem;
	}
}

/*  iphone5s  */
@media handheld,
only screen  and (max-width:20em){
	#intro-wrap,
	#intro-large #intro-wrap,
	#intro-small #intro-wrap,
	#intro-idea #intro-wrap,
	#intro-mid #intro-wrap {
	height: 13rem!important;
	}
	#intro-large #intro-wrap,
	#intro-idea #intro-wrap {
	height: 13rem!important;
	margin-top:3.5rem;
	}
	.eng-tro{
		line-height:0px;
		position: absolute;
		top: 3.5rem;
		left: 0;
		width: 100%;
	}
	.changeHeight{
		height:12rem;
	}
	
	.normalTag{
		display:block;
		width:100%;
		font-size:0.14rem;
		text-align: center;
		color:#aaa;

	}
	.footer-div p{
		font-size:0.5rem;
		transform: scale(0.5)
	}
	.eng-tro{
		font-size:0.6rem;
	}
	.news-lis ul li{
		font-size:0.7rem;
	}

	.content_detail .copper {
		min-height: 17rem;
	}

	.product-bass-title {
		font-size: 1rem;
	}

	.content-center {
		font-size: 0.8rem;
	}

	.text-box-p {
		font-size: 0.9rem;
	}

	.mine-items .text-s .top_line {
		left: 18.5rem;
	}

	.company-center-box {
		font-size: 1.3rem;
	}

	.concat-way p {
		font-size: 0.8rem;
	}

}


/* iphone678 */
@media handheld,
only screen and (min-width:23.4em) {

	.person-position {
		margin-left: 2.5rem;
	}
}

/* iphone678plus */
@media handheld,
only screen and (min-width:25.8em) {
	#intro-wrap,
	#intro-large #intro-wrap,
	#intro-small #intro-wrap,
	#intro-idea #intro-wrap,
	#intro-mid #intro-wrap {
		height: 17rem!important;
	}
	#intro-large #intro-wrap,
	#intro-idea #intro-wrap {
		height: 17rem!important;
	}
	.person-position {
		margin-left: 2.5rem;
	}

	.mine-items .text-s .top_line {
		left: 24.5rem;
	}

	.mine-items .text-s {
		padding: 1.5rem 0.5rem 0.1rem 1.5rem;
	}
}

@media handheld,
only screen and (min-width:25.6875em) {

	#intro-wrap,
	#intro-large #intro-wrap,
	#intro-small #intro-wrap,
	#intro-idea #intro-wrap,
	#intro-mid #intro-wrap {
	height: 17rem!important;
	}
	#intro-large #intro-wrap,
	#intro-idea #intro-wrap {
	height: 17rem!important;
	}
}
/* ipad */
@media handheld,
only screen and (min-width:48em) {
	#intro-wrap,
	#intro-large #intro-wrap,
	#intro-small #intro-wrap,
	#intro-idea #intro-wrap,
	#intro-mid #intro-wrap {
		height: 28rem!important;
	}
	#intro-large #intro-wrap,
	#intro-idea #intro-wrap {
		height: 28rem!important;
	}
	.changeHeight{
		height:25rem;
	}
	body {
		font-size: 0.9em;
		-webkit-text-size-adjust: none;
	}
	.company-manage .company-people {
		width: 100%;
		min-height: 26rem;
		background-color: #ffffff;
		border-radius: 0.6rem;
		box-shadow: 0px 2px 10px 6px rgba(0, 0, 0, 0.08);
		box-sizing: border-box;
		padding-top: 1rem;
		padding-left: 10%;
		padding-right: 10%;
		margin-bottom: 2rem;
	}

	.center-con {
		width: 85%;
	}

	.mine-items .text-s {
		padding: 1.5rem 5.5rem 0.1rem 5.5rem;
	}

	.mine-items .text-s .top_line {
		left: 44.5rem;
		top: 3rem;
	}

	.mine-items .text-s .right_line {
		top: 11rem;
		left: 41.3rem;
	}

	.mine-items .text-s .bottom_line {
		left: 3rem;
	}

	.mine-items .text-s {
		height: 15rem;
	}

	.company-content .company-mid {
		height: 26rem;
	}

	.map-code {
		width: 50%;
		margin: 1rem auto;
	}
}

/*  ipad  */
@media handheld,
only screen and (min-width:48em) {
	.center-centerDiv {
		width: 55%;
	}

	.data_banner {
		width: 100%;
		height: 18.6rem;
	}

	.book1 {
		background: url(/static/mobile/images/type1.png) no-repeat center;
	}

	.book2 {
		background: url(/static/mobile/images/type2.png) no-repeat center;
	}

	.book3 {
		background: url(/static/mobile/images/type3.png) no-repeat center;
	}

	.book4 {
		background: url(/static/mobile/images/type4.png) no-repeat center;
	}

	.circle_tyle {

		box-sizing: border-box;
		padding: 0rem 3.5rem;

	}

	.circle_type1 {
		width: 6rem;
		height: 6rem;
	}

	.circle-con {
		width: 6rem;
		height: 6rem;
	}

	.circle_text {
		font-size: 1rem;

	}

	.change-line {
		font-size: 1rem;
	}
}

#intro-wrapp {
	width: 100%;
	height: 18.75rem;
}
/* 底线 */
.last-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}
.line1 {
    width: 35%;
}
.line {
    width: 100%;
    background-color: #E6E6E6;
    height: 1px;
}
.line-mt {
	/* margin-top: -0.5rem; */
	display: flex;
	justify-content: space-between;
}
.b-line {
    color: #9B9B9B;
    font-size: 0.6rem;
    display: inline-block;
    margin-left: .5rem;
    margin-right: .3rem;
}
.changeHeight{
	height:14rem;
	margin-top:3.8rem;
}

.product-line {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin: 0 auto;
}
.product-line {
	height: 5rem;
	background: #eee;
}

.line-text {
	font-weight: 500;
	color: #333;
}

.line-text-en {
	font-size: 12px;
	font-weight: normal;
	font-stretch: normal;
	padding-top: 38px;
	letter-spacing: 0px;
	padding-left: 10px;
	color: #666666;
}

.line-bg {
	display: inline-block;
	width: 18em;
	height: 11px;
	background: url(/static/mobile/images/line-bg.png) no-repeat center;
}


