* {
	-webkit-transition: all .4s linear;
	-moz-transition: all .4s linear;
	-o-transition: all .4s linear;
	-ms-transition: all .4s linear;
	transition: all .4s linear;
}
html, body, div, span, applet, object, iframe, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { border: 0; font-size: 100%; font: inherit; vertical-align: baseline; margin: 0; padding: 0; outline: 0 }
body {
	font-family: 'Rubik', sans-serif;
	background-color: #fff;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Poppins', sans-serif;
	margin: 0;
	padding: 0;
}

a,a:hover,a:focus,a:active {
	color: #fff;
	text-decoration: none;
}
.L { float: left }

.R { float: right }

.C { clear: both }

ul {
	margin-bottom: 0;
}/*=========== Typography ============*/h1 {
	font-size: 60px;
	font-weight: 800;
}

h2 {
	font-size: 40px;
	font-weight: 700;
}

h3 {
	font-size: 20px;
	font-weight: 600;
}

h4 {
	font-size: 18px;
	font-weight: 400;
}

h5 {
	font-size: 16px;
	font-weight: 400;
}

h6 {
	font-size: 15px;
	font-weight: 400;
}/*=========== My Classes ============*/.main-title {
	margin-bottom: 60px;
	text-align: center;
	position: relative;
}

.main-title .separator {
	position: relative;
	width: 160px;
	display: inline-block;
}

.main-title .separator:before,	.main-title .separator:after {
	content: '';
	position: absolute;
	top: 50%;
	margin-top: -1px;
	height: 2px;
	width: 50px;
	background: #d9261f;
}

.main-title .separator:before {
	left: 3px;
}

.main-title .separator:after {
	right: 3px;
}

.main-title .separator .flaticon-chakra:before {
	font-size: 40px;
	color: #d9261f;
	margin-left: 0;
}

.main-title h2 {
	font-size: 28px;
	letter-spacing: .4px;
	line-height: 1.3;
	color: #323232;
	font-weight: 700;
	margin: 0;
	margin-top: 5px;
	text-transform: capitalize;
}

.display-table {
	display: table;
	width: 100%;
}

.display-table-cell {
	display: table-cell;
	vertical-align: middle;
	min-height: 100%;
	height: 100vh;
	text-align: center;
}

.main-btn {
	position: relative;
	background: #d9261f;
	color: #fff;
	min-width: 150px;
	border-radius: 4px;
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1.1px;
	text-align: center;
	padding: 15px 20px;
	border: 2px solid #d9261f;
	outline: none;
	cursor: pointer;
	margin-right: 14px;
	overflow: hidden;
}

.main-btn span {
	position: relative;
	z-index: 2;
}

.main-btn:before {
	content: '';
	background-color: #604dd6;
	position: absolute;
	top: 0;
	left: -25%;
	height: 104%;
	width: 0;
	-webkit-transform: skew(-22deg);
	-moz-transform: skew(-22deg);
	-ms-transform: skew(-22deg);
	-o-transform: skew(-22deg);
	transform: skew(-22deg);
	transition-duration: .6s;
	z-index: 1;
}

.main-btn:hover:before {
	width: 190%;
}

.main-btn:hover,.custom-btn:hover {
	border: 2px solid #604dd6;
}

.custom-btn {
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
	margin-right: 0;
}

#particles-js {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
}/* --------------------------------------   2. Loading-----------------------------------------*/.loading {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 9999999;
	background-color: #fff;
}

.loading .loading-content {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200px;
	height: 50px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.loading .loading-content .inner-item {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 50px;
	background-color: #d9261f;
	border-radius: 50%;
	-webkit-transform: scale(.1);
	-moz-transform: scale(.1);
	-ms-transform: scale(.1);
	-o-transform: scale(.1);
	transform: scale(.1);
	-webkit-transform-origin: center left;
	-moz-transform-origin: center left;
	-ms-transform-origin: center left;
	-o-transform-origin: center left;
	transform-origin: center left;
	-webkit-animation: loading 4s infinite;
	animation: loading 4s infinite;
}

.loading .loading-content .inner-item:nth-of-type(2) {
	-webkit-animation-delay: .3s;
	animation-delay: .3s;
}

.loading .loading-content .inner-item:nth-of-type(3) {
	-webkit-animation-delay: .6s;
	animation-delay: .6s;
}

.loading .loading-content .inner-item:nth-of-type(4) {
	-webkit-animation-delay: .9s;
	animation-delay: .9s;
}

.loading .loading-content .inner-item:nth-of-type(5) {
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
}

@-webkit-keyframes loading {
	0% {
		-webkit-transform: scale(.1);
		-moz-transform: scale(.1);
		-ms-transform: scale(.1);
		-o-transform: scale(.1);
		transform: scale(.1);
	}

	45% {
		left: 120px;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}

	90% {
		left: 294px;
		-webkit-transform: scale(.1);
		-moz-transform: scale(.1);
		-ms-transform: scale(.1);
		-o-transform: scale(.1);
		transform: scale(.1);
	}
}

@keyframes loading {
	0% {
		-webkit-transform: scale(.1);
		-moz-transform: scale(.1);
		-ms-transform: scale(.1);
		-o-transform: scale(.1);
		transform: scale(.1);
	}

	45% {
		left: 120px;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}

	90% {
		left: 294px;
		-webkit-transform: scale(.1);
		-moz-transform: scale(.1);
		-ms-transform: scale(.1);
		-o-transform: scale(.1);
		transform: scale(.1);
	}
}/* --------------------------------------   3. Upperbar-----------------------------------------*/.upper-bar {
	background-color: #fff;
}

.upper-bar .inner-bar {
	background-color: #d9261f;
	color: #f1f3f1;
	padding: 10px 15px;
	border-radius: 0 0 8px 8px;
}

.upper-bar .inner-bar .contact-bar li {
	display: inline-block;
	font-size: 14px;
	margin-right: 15px;
}

.upper-bar .inner-bar .contact-bar li a {
	color: #f1f3f1;
}

.upper-bar .inner-bar .contact-bar li i {
	margin-right: 5px;
}

.upper-bar .inner-bar .social-media-bar li {
	display: inline-block;
	font-size: 14px;
	margin-right: 15px;
}

.upper-bar .inner-bar .social-media-bar li a {
	color: #f1f3f1;
}/* --------------------------------------   4. Navbar-----------------------------------------*/
.header-inner {
	background: #fff;
	z-index: 999;
}





.headnav{background:#404144;}
.header-inner.active-nav {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	border-bottom: rgba(0, 0, 0, .1);
	box-shadow: 0 0 15px rgba(0, 0, 0, .05);
}

.header-inner .my-logo {
	position: relative;
	color: #323232;
	font-size: 22px;
	font-weight: 700;
	display: inline-block;
}

.header-inner .my-logo .flaticon-chakra:before {
	margin-left: 0;
	font-size: 40px;
	color: #d9261f;
	margin-right: 8px;
	position: relative;
	top: 8px;
}

.header-inner .menu-toggle {
	background: #d9261f;
	border-radius: 3px;
	float: right;
	padding: 8px;
	margin: 20px 0;
	border: none;
	outline: none;
	cursor: pointer;
	display: none;
	z-index: 2;
}

.header-inner .menu-toggle .bar {
	display: block;
	width: 25px;
	height: 2px;
	background-color: #fff;
}

.header-inner .menu-toggle .bar:nth-child(2) {
	margin: 6px 0;
}

.header-inner.menu-active .menu-toggle .bar:nth-child(2) {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

.header-inner.menu-active .menu-toggle .bar:first-child {
	-webkit-transform: translateY(8px) rotate(45deg);
	-moz-transform: translateY(8px) rotate(45deg);
	-ms-transform: translateY(8px) rotate(45deg);
	-o-transform: translateY(8px) rotate(45deg);
	transform: translateY(8px) rotate(45deg);
}

.header-inner.menu-active .menu-toggle .bar:last-child {
	-webkit-transform: translateY(-8px) rotate(-45deg);
	-moz-transform: translateY(-8px) rotate(-45deg);
	-ms-transform: translateY(-8px) rotate(-45deg);
	-o-transform: translateY(-8px) rotate(-45deg);
	transform: translateY(-8px) rotate(-45deg);
}

.header-inner .main-menu {
	position: relative;
}

.header-inner .nav-search {
	float: right;
	line-height: 78px;
	margin-left: 10px;
	padding-left: 0;
}

.header-inner .nav-search li {
	display: inline-block;
	margin-right: 10px;
}

.header-inner .nav-search li:last-child {
	margin-right: 0;
}

.header-inner .nav-search li a {
	color: #323232;
	font-size: 15px;
	font-weight: 700;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.header-inner .nav-search li a.fa-search {
	font-weight: 400;
}

.header-inner .nav-search li a:hover {
	color: #d9261f;
}

.header-inner .search-form {
	position: absolute;
	top: 79px;
	right: 0;
	width: 295px;
	padding: 12px;
	background: #fff;
	border-top: 2px solid #d9261f;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
	transform: scaleY(0);
	opacity: 0;
	visibility: hidden;
	z-index: 9999;
}

.header-inner .search-form.active {
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	transform: scaleY(1);
	opacity: 1;
	visibility: visible;
}

.header-inner .search-form input[type="search"] {
	background: #f7f7fb;
	color: #353535;
	width: 100%;
	height: 50px;
	padding: 0 50px 0 18px;
	border: none;
	outline: none;
	font-size: 14px;
	font-weight: 600;
}

.header-inner .search-form .search-btn {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 50px;
	height: 50px;
	background: #d9261f;
	color: #fff;
	cursor: pointer;
	outline: none;
	border: none;
}

.header-inner .search-form .search-btn:hover {
	background: #604dd6;
}

.header-inner .navbar {
	float: right;
	padding: 0;
	width: 100%;
}

.header-inner .navbar-nav{width: 100%;}
.header-inner .navbar .nav >li {
	position: relative;
	margin-right: 0;
	width: 10%;
	text-align: center;
}
.header-inner .navbar .nav >li.navlistl{
	width: 20%;
}

.header-inner .navbar .nav li:last-child {
	margin-right: 0;
}

.header-inner .navbar .nav li a {
	display: block;
	color: #fff;
	padding: 15px 8px;
	font-size: 17px;
	text-transform: uppercase;
}

.header-inner .navbar .nav li.active a,.header-inner .navbar .nav li:hover a {
	background: #d9261f;
}

.header-inner .navbar .nav li a:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: #d9261f;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.header-inner .navbar .nav li:hover a:before,.header-inner .navbar .nav li.active a:before {
	width: 100%;
}

.header-inner .navbar .nav li a i {
	margin-left: 24px;
	font-weight: 600;
	display: none;
}
.header-inner .navbar .nav >li.navlistl a i{display: inline-block;}

.header-inner .navbar .nav .dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	padding: 0;
	background: #fff;
	border-bottom: 3px solid #d9261f;
	list-style: none;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
	transform: scaleY(0);
	transform-origin: 0 0;
}

.header-inner .navbar .nav li:hover .dropdown {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	transform: scaleY(1);
}
.header-inner .navbar .nav li.navlistl .dropdown {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	transform: scaleY(1);
	background: none;
	    border: none;
}
.header-inner .navbar .nav li.navlistl .dropdown li a{
	padding:0;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.header-inner .navbar .nav li .dropdown li a {
	background: transparent;
	color: #8e8d8d;
	padding: 10px 15px;
	/* border-bottom: 1px solid #f3f1f1; */
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.header-inner .navbar .nav li .dropdown li a:hover {
	background: #efefef;
	padding-left: 18px;
}

.header-inner .navbar .nav li .dropdown li a:before {
	display: none;
}/* --------------------------------------   5. Side Menu-----------------------------------------*/.side-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 320px;
	height: 100vh;
	padding: 30px 20px;
	background-color: #fff;
	color: #323232;
	box-shadow: 0 0 10px rgba(0, 0, 0, .2);
	z-index: 99999;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}




.header-fixed { top: 36px; background: #FFFFFF; height: 128px; width: 100%; }

.header-fixed .logo-box { position: relative; height: 100%; overflow: hidden;}

.header-fixed .logo { margin-top: 48px; width: 180px; text-align: center; }
.header-fixed .logo img{width: 100%;}
.header-fixed .logotxt {padding-left: 14px;    margin-left: 10px;margin-top: 36px;position: relative;}
.header-fixed .logotxt:before{
    position: absolute;
    left: 0;
    bottom: 12px;
    content: "";
    width: 1px;
    height: 38px;
    background:#e4e2e2;
}
.header-fixed .logotxt p { font-size: 18px;color: #3a3a3a; text-align: left; width: 100%; line-height: 34px; }

.header-fixed .phone { width: 310px; text-align: left; margin-top: 36px; background: url(../images/phone.png) left center no-repeat; }

.header-fixed .phone dt { color: #b1b1b1; line-height: 24px; font-size: 16px; color: #555; padding-left: 58px;}

.header-fixed .phone dd { height: 42px; line-height: 40px; font-size: 34px; font-family: "impact"; font-weight: bold; color: #f20303; padding-left: 58px; }

/* nav*/

.fixed { width: 100%; z-index: 100; }

.nav-box { height: 50px; line-height: 50px; background: #404144; }

.nav-box .nav-tit { width: 238px; height: 50px; background: #f20303; cursor: pointer; }

.nav-box .nav-tit p { font-size: 18px; color: #ffffff; line-height: 50px; text-indent: 23px; position: relative; }

.nav-box .nav-tit p>span.circle { display: inline-block; width: 13px; height: 13px; border-radius: 50%; background: #eae4e1 url(../images/bg-jt.png) no-repeat 3px 4px; position: absolute; top: 20px; *top: 10px;
    left: 166px; }

/*下拉框*/

.tit-list { border: 1px solid #e1e1e3; width: 100%; height: 460px; background: #fff; filter: alpha(opacity=80); -moz-opacity: 0.8; opacity: 0.8; padding: 4px 5px 0 5px; position: absolute; z-index: 999; text-align: left;}

.tit-list h6 { color: #444; font-size: 16px;  line-height: 24px; margin-top: 10px; }
.tit-list h6 .iconfont{font-size: 20px;    margin-right: 6px;}

/* .tit-list h6.jcy { background: url(../images/tit_menu_bg.png) no-repeat 2px 0px; }

.tit-list h6.jjy { background: url(../images/tit_menu_bg.png) no-repeat 2px -90px; }

.tit-list h6.zly { background: url(../images/tit_menu_bg.png) no-repeat 2px -178px; }

.tit-list h6.bgh { background: url(../images/tit_menu_bg.png) no-repeat 2px -217px; } */

.tit-list .project_menu { margin-top: 5px; /*height: 67px;*/height: auto; }

/*.tit-list .project_menu li{ display:block; float: left; }*/

.tit-list .project_menu li{ height:32px; line-height:32px;}

.tit-list .project_menu li a { color: #666666; padding: 1px 4px; height: 30px; line-height: 30px; display: block; /*text-align: center;*/ font-size: 13px; }

.tit-list .project_menu li a:hover { color: #f00; }

.nav-c .nav>li { float: left; }

.pl27 { padding-left: 27px; }

.nav-c .nav>li>a { display: block; padding: 0 23px; font-size: 16px; color: #FFFFFF; height: 50px; line-height: 50px; }

.nav-c .nav>li>a:hover { background: #f00; color: #fff; }

/*banner图样式*/










.side-menu.open {
	right: 0;
}

.side-menu .side-menu-close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 32px;
	height: 32px;
	line-height: 31px;
	text-align: center;
	border-radius: 50%;
	font-size: 17px;
	background: transparent;
	color: #d9261f;
	border: 1px solid #d9261f;
	-webkit-transition: all .01s ease-in-out;
	-moz-transition: all .01s ease-in-out;
	-o-transition: all .01s ease-in-out;
	-ms-transition: all .01s ease-in-out;
	transition: all .01s ease-in-out;
}

.side-menu .side-menu-close:hover {
	background: #d9261f;
	color: #fff;
	border: 1px solid #d9261f;
}

.side-menu .my-logo {
	color: #323232;
	font-size: 22px;
	font-weight: 700;
	display: inline-block;
	padding-top: 30px;
}

.side-menu .my-logo .flaticon-chakra:before {
	margin-left: 0;
	font-size: 40px;
	color: #d9261f;
	margin-right: 8px;
	position: relative;
	top: 8px;
}

.side-menu .side-nav {
	margin: 30px 0;
}

.side-menu .side-nav li a {
	display: block;
	padding: 8px 0;
	color: #323232;
	font-size: 15px;
	font-weight: 500;
	border-bottom: 1px solid #f3f1f1;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.side-menu .side-nav li a:hover,.side-menu .side-nav li a.active {
	color: #d9261f;
}

.side-menu .side-info h4 {
	font-size: 17px;
	font-weight: 600;
}

.side-menu .side-info p {
	font-size: 14px;
	line-height: 1.8;
	margin: 30px 0;
}

.side-menu .social-icons li {
	display: inline-block;
	margin-right: 10px;
}

.side-menu .social-icons li:last-child {
	margin-right: 0;
}

.side-menu .social-icons li a {
	display: inline-block;
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	border-radius: 50%;
	font-size: 16px;
	font-weight: 600;
	background: transparent;
	color: #d9261f;
	border: 1px solid #d9261f;
	-webkit-transition: all .01s ease-in-out;
	-moz-transition: all .01s ease-in-out;
	-o-transition: all .01s ease-in-out;
	-ms-transition: all .01s ease-in-out;
	transition: all .01s ease-in-out;
}

.side-menu .social-icons li a:hover {
	background: #d9261f;
	color: #fff;
}
/* ----- 19. Scroll To Top-----------*/
.page-slide { bottom: 200px; z-index: 999; right: 25px; position: fixed; z-index: 9999; }
.page-slide li { font-size: 0; position: relative; transition: 0.3s linear 0s; cursor: pointer; margin-bottom: 5px; display: block; 
	width: 52px;
    height: 52px;
    line-height: 52px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    font-size: 18px;
    white-space: nowrap; }
.page-slide span,.page-slide a { vertical-align: top; display: inline-block; }
.page-slide .slide-img { 
	transition: 0.3s linear 0s;    
	width: 100%;
    height: 100%;
    line-height: 45px;
    font-size: 18px;
    text-align: center;
    color: #fff;
    background: #d9261f;
    border: 2px solid #d9261f;
    border-radius: 4px;}
.page-slide .slide-img img{vertical-align: middle;}
.page-slide .slide-text { opacity: 0; transition: 0.3s linear 0s; background: #7f7f7f; color: #fff; font-size: 20px; width: 160px; text-align: left; }
.page-slide .slide-text a { display: block; font-size: 18px; line-height: normal; padding: 3px 0; }
.page-slide li:nth-child(1) .slide-text{width: 100px;}
.page-slide li:nth-child(1) { transform: translateX(0px); }
.page-slide li:nth-child(1):hover{ transform: translateX(-100px); }
.page-slide li:nth-child(2) { transform: translateX(0px); }
.page-slide li:nth-child(2):hover{ transform: translateX(-160px); }
.page-slide li:hover, .page-slide li:hover .slide-img, .page-slide li:nth-child(1):hover span.slide-text, .page-slide li:nth-child(2):hover span.slide-text { opacity: 1; background: #d9261f; }
.scroll-top {
	position: fixed;
	bottom: 107%;
	right: 25px;
	width: 52px;
	height: 52px;
	line-height: 48px;
	font-size: 18px;
	text-align: center;
	color: #fff;
	background: #d9261f;
	border: 2px solid #d9261f;
	border-radius: 4px;
	z-index: 999;
	-webkit-transition: all .7s linear;
	-moz-transition: all .7s linear;
	-o-transition: all .7s linear;
	-ms-transition: all .7s linear;
	transition: all .7s linear;
	overflow: hidden;
}

.scroll-top.active {
	bottom: 148px;
}

.scroll-top:hover {
	-webkit-transform: translateY(-2px);
	-moz-transform: translateY(-2px);
	-o-transform: translateY(-2px);
	-ms-transform: translateY(-2px);
	transform: translateY(-2px);
	border: 2px solid #f25755;
}

.scroll-top span {
	position: relative;
	z-index: 2;
}
.scroll-top span .iconfont{font-size: 26px;}
.scroll-top:before {
	content: '';
	background-color: #f25755;
	position: absolute;
	top: 0;
	left: -25%;
	height: 104%;
	width: 0;
	-webkit-transform: skew(-22deg);
	-moz-transform: skew(-22deg);
	-ms-transform: skew(-22deg);
	-o-transform: skew(-22deg);
	transform: skew(-22deg);
	transition-duration: .6s;
	z-index: 1;
}

.scroll-top:hover:before {
	width: 190%;
}
/* --------------------------------------   20. Media Queries-----------------------------------------*//* Extra Large Devices */
@media (min-width: 1200px) {
}/* Large devices (desktops, less than 1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    /*=========== Navbar ============*/	
    .header-inner .my-logo {
		font-size: 19px;
	}

	.header-inner .my-logo .flaticon-chakra:before {
		font-size: 39px;
		margin-right: 5px;
	}

	.header-inner .navbar .nav >li {
		margin-right: 10px;
	}
}/* Medium devices (tablets, less than 992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
        
    /*=========== Upper bar ============*/	
    .upper-bar .social-media-bar {
		margin-top: 5px;
	}	    
	/*=========== Navbar ============*/	
	.header-inner .nav-search {
		line-height: 68px;
	}

	.header-inner .search-form {
		top: 69px;
	}

	.header-inner .navbar {
		float: left;
	}

	.header-inner .navbar-nav {
		flex-direction: row;
	}

	.header-inner .navbar .nav >li {
		margin-right: 18px;
	}

	.header-inner .navbar .nav li a {
		padding: 25px 0;
		font-weight: 600;
	}
}
	body.main .container{padding:0;}
@media (max-width: 767.98px) {
	.row {
    margin: 0;
	}
	.fa-angle-down:before{
	    content: "";
    background: url(../images/tmb.png) no-repeat center;
    background-size: 100% auto;
    width: 16px;
    height: 20px;
    display: block;
    position: absolute;
    right: 0;
    top: 14px;
	}
	.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto, .container{padding:0;}
	html, body{    min-width: inherit;}
	.container{padding:0;}
	.containerr{padding:0 14px;}
	.main-title {
		margin-bottom: 55px;
	}		/*=========== Upper bar ============*/	
	.upper-bar .social-media-bar {
		display: none;
	}        /*=========== Navbar ============*/	
	/* .ggtop{height: 120px;    overflow: hidden;} */
	.ggtop img{height:  120px;min-width: 100%;}
	.ggtop .ttoppic{display: block;width: 100%;}
	.header-inner .menu-toggle {
		display: block;
		border: 1px solid #fff;
		position: absolute;
		right: 0;
		top: -74px;
	}
	.header-fixed{height: 80px;}
	.header-inner .nav-search {
		display: none;
	}
	.header-fixed .logo{width: 100px;    margin-top: 30px;margin-left: 10px;}
	.header-fixed .phone{background-size: 24px;    width: 44%;    margin-right: 70px;margin-top: 26px;}
	.header-fixed .logotxt{display: none;}
	.header-fixed .phone dt{    padding-left: 32px;font-size: 12px;line-height: 16px;}
	.header-fixed .phone dd{    padding-left: 32px;height: 24px;}



	.header-inner .navbar {
		float: none;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		background-color: #fff;
		z-index: 99999;
		opacity: 0;
		visibility: hidden;
		-webkit-transform: scaleY(0);
		-moz-transform: scaleY(0);
		-ms-transform: scaleY(0);
		-o-transform: scaleY(0);
		transform: scaleY(0);
		transform-origin: 0 0;
	}

	.header-inner.menu-active .navbar {
		opacity: 1;
		visibility: visible;
		-webkit-transform: scaleY(1);
		-moz-transform: scaleY(1);
		-ms-transform: scaleY(1);
		-o-transform: scaleY(1);
		transform: scaleY(1);
		overflow-y: auto;
		overflow-x: hidden;
	}

	.header-inner .navbar .nav >li {
		margin-right: 0;
		width: 100%;
		text-align: left;
	}
	.header-inner .navbar .nav >li.navlistl{width: 100%;}
	.header-inner .navbar .nav li.active a, .header-inner .navbar .nav li:hover a{background: #fff;}

	.header-inner .navbar .nav li a {
		padding: 12px 8px;
		border-bottom: 1px solid #eee;
		color: #333;
		    font-size: 15px;
	}

	.header-inner .navbar .nav li a:before {
		content: none;
	}

	.header-inner .navbar .nav li a i {
		position: absolute;
		right: 11px;
		top: 0;
		font-size: 15px;
		line-height: 44px;
		display: block;
	}

	.header-inner .navbar .nav .dropdown {
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		opacity: 1;
		visibility: visible;
		-webkit-transform: scaleY(1);
		-moz-transform: scaleY(1);
		-ms-transform: scaleY(1);
		-o-transform: scaleY(1);
		transform: scaleY(1);
		display: none;
		transition: none;
	}
	.tit-list{opacity: 1;}
	.header-inner .navbar .nav li.navlistl .dropdown{border-bottom: 3px solid #d9261f;}

	.header-inner .navbar .nav li .dropdown li a {
		padding-left: 25px;
	}
	.header-inner .navbar .nav >li.navlistl .dropdown li a{padding-left: 25px;}

	.header-inner .navbar .nav li .dropdown li a:hover {
		padding-left: 28px;
	}

	/*=========== Services ============*/	.services {
		padding-top: 80px;
		padding-bottom: 50px;
	}






}/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
	/*=========== Upper bar ============*/	
	.upper-bar .container {
		padding: 0;
	}

	.upper-bar .inner-bar {
		border-radius: 0;
	}
	.header-inner .my-logo {
		padding-left: 15px;
	}

	.header-inner .menu-toggle {
		margin-right: 15px;
	}
}


.banner .owl-carousel {
	height: 460px;
}
.banner .display-table-cell{
	height: 460px;
	justify-content: center;
	display: flex;
	overflow: hidden;
}
.banner .owl-carousel.abban{
	height: 700px;
}
.banner .owl-carousel.abban .display-table-cell{
	height: 700px;
}
.banner .display-table-cell img{height: 100%;max-width: initial;
    width: auto;}
.banner .display-table-cell .mbox{display: none;}
.banner .bg-cover {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	height: 100%;
	width: 100%;
}

.banner .owl-carousel .animated {
	animation-duration: 1s;
	animation-fill-mode: both;
}

.banner .owl-carousel .owl-nav .owl-next,.banner .owl-carousel .owl-nav .owl-prev {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 24px;
	color: #fff;
	width: 45px;
	height: 45px;
	line-height: 36px;
	text-align: center;
	background-color: rgba(23, 24, 25, .5);
	border-radius: 3px;
	outline: none;
	z-index: 999;
	display: none;
}

.banner .owl-carousel .owl-nav .owl-next {
	right: 10px;
}

.banner .owl-carousel .owl-nav .owl-prev {
	left: 10px;
}

.banner .owl-carousel .owl-nav .owl-next:hover,.banner .owl-carousel .owl-nav .owl-prev:hover {
	background-color: #d9261f;
}


/*foot*/


.foot { width: 100%; background-color: #2f3033; margin:80px auto 0px; }

.footer ul { width: 220px;  padding-left: 80px;margin-top: 20px;}

.footer ul.mid{ border-right: 1px solid #6d6d6d; border-left: 1px solid #6d6d6d;}
.footer ul li {  }

.footer ul h3 { margin-bottom: 10px; color: #fff; font-weight: normal; font-size: 18px; }

.footer ul a { color: #e5e5e5; font-size: 14px; display: block; line-height: 32px; }
.footer .contact_us { display: inline-block; width: 320px; padding: 0 0 0 60px;  }

.footer .contact_us .text-cont { color: #fff; }
.footer .contact_us .text-cont i{font-size: 50px;display: inline-block;    vertical-align: middle;}
.footer .contact_us .text-cont .contact_phone{display: inline-block;    vertical-align: middle;}
.footer .contact_us .text-cont .contact_phone p{font-size: 14px;    line-height: 24px;}
.footer .contact_us .text-cont .contact_phone h6{font-size: 24px;font-weight: bold;}
.footer .contact_us .link { display: inline-block; width: 140px; vertical-align: text-top; float: right; background: url(../images/af4923c032a84529f9d13a00409aac3b00d682f2.png); position:relative;}

.ewm{margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;}
.ewm>div{width: 100px;text-align: center;}
.ewm>div h5{font-size: 14px;color: #e5e5e5;    line-height: 40px;}
.footer .contact_us .link a { display: inline-block; width: 40px; height: 40px; cursor: pointer; }

.footer .row3 { display: inline-block; width: 100%; vertical-align: text-top; float: left; margin-top: 20px; }

.footer .row3 a { display: inline-block; width: 98px; height: 36px; cursor: pointer; float: left; }

.footer h3 { margin-bottom: 10px; color: #fff; font-weight: normal; font-size: 18px; }

.footer h4 { font-size: 40px; font-family: "impact"; color: #fff; line-height: 50px; }

.footer .btn { border: 1px solid #fff; padding: 3px 8px; color: #fff; font-size: 14px; display: inline-block; margin: 10px 13px 0 0; }

.footer .all_rights { /*width: 100%;*/width: 1100px; border-top: 1px solid #666; color: #9e9e9e; margin: 25px 0 0px; display: block; padding: 10px 0 0 0; text-align: center; font-size: 14px; line-height: 30px; }

.footer .all_rights a { color: #9e9e9e!important; }
.footlogo{width: 100px;    margin-right: 60px;}
.footlogo img{width: 100%;}
.foot-b{background: #262627;    overflow: hidden;}
.foot-b p{color: #9f9f9f;font-size: 15px;line-height: 50px;}
.foot-b a{color: #9f9f9f;font-size: 15px;}
.foot a:hover{color: #fff;}



#sanli_foot{ width:100%; height:105px; background-color:#ececec;}
#Badges_tllm { margin:0px auto; padding-top:35px; }

#Badges_tllm li { display: inline-block; width: 220px; float: left; }

#Badges_tllm li:hover h3,#Badges_tllm li:hover i, .Badges li:hover h5 { color: #f20303; }
#Badges_tllm li:hover i{transform: rotateY(180deg);}
#Badges_tllm li .text-cont { display: inline-block; vertical-align: middle;text-align: left; }

#Badges_tllm h3 { color: #555; font-size: 20px; font-weight: normal; line-height: 30px; }

#Badges_tllm h5 { color: #666; font-size: 14px; font-weight: normal; }

#Badges_tllm li i {  display: inline-block;  vertical-align: middle;font-size: 40px;    margin-right: 4px;transition: .6s;}

.footer .all_rights a{ padding:0px 15px;}
#fot_fixed_0927{ padding: 50px 0 30px;}



img{max-width: 100%;vertical-align: top;}
.mbox{display: none;}
.page-slide li.mbox{display: none;}
.mbox.seemore{display: none;}
@media (max-width: 1200px){
.pbox{display: none;}
.mbox{display: block;}
.page-slide li.pbox{display: none;}
.page-slide li.mbox{display: block;}
.mbox.seemore{display: block;}
.banner .display-table-cell .pbox{display: none;}
.banner .display-table-cell .mbox{display: block;}
.banner .display-table-cell,.banner .owl-carousel{height: 260px;}
.scroll-top.active{bottom: 85px;}
.scroll-top{width: 44px;height: 44px;line-height:40px;    right: 14px;}
.page-slide{bottom: 130px;right: 14px; }
.page-slide li {   width: 44px;
    height: 44px;
    line-height: 40px;}   
.page-slide .slide-img img{    width: 18px; }
.page-slide .slide-img{line-height: 36px;}


#Badges_tllm h3{font-size: 14px;line-height: 32px;text-align: center;}
#Badges_tllm h5{font-size: 12px;display: none;}
#Badges_tllm li i{    font-size: 26px;    display: block;}
#Badges_tllm li{    text-align: center;    width: auto;}
#Badges_tllm ul{    display: flex;justify-content: space-around;}
#sanli_foot{height: 80px;}
#Badges_tllm{    padding-top: 20px;}
.foot-b p{font-size: 14px;    line-height: 22px;float: none;}
.foot-b a{font-size: 14px;}
.foot-b{    padding: 10px;    text-align: center;}
.footer ul{width: 33.3333%;padding-left: 0;text-align: center;}
.footer ul a{    line-height: 28px;}
.footlogo{float: none;margin:0 auto;}
.footer .contact_us{width: 100%;padding:0 10px;    margin-top: 20px;display: none;}
.footer .contact_us .text-cont .contact_phone h6{font-size: 20px;}
.ewm{display: block;text-align: center;}
.ewm>div{    float: none;display: inline-block;}
.footlogo{width: 66px;}
#fot_fixed_0927{    padding: 30px 0 20px;}

}




footer .top {
  background-color: #2F3033;
  padding: 20px 0;
}
footer .top .left {
  width: 89px;
  margin-top: 40px;
}
footer .top .center {
  width: calc(100% - 89px - 305px);
  overflow: hidden;
  font-size: 14px;
  position: relative;
  margin-top: 40px;
}
footer .top .center::before, footer .top .center::after {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  height: 100%;
  content: "";
  top: 0;
  position: absolute;
}
footer .top .center::before {
  left: 33.333%;
}
footer .top .center::after {
  left: 66.666%;
}
footer .top .center .item {
  width: 33.33333%;
  float: left;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #E5E5E5;
  line-height: 33px;
  text-align: center;
}
footer .top .right {
  width: 305px;
}
footer .top .right .top-container img {
  vertical-align: middle;
  margin-right: 12px;
}
footer .top .right .top-container img + div {
  display: inline-block;
  color: #fff;
  vertical-align: middle;
}
footer .top .right .top-container img + div .t1 {
  font-size: 14px;
}
footer .top .right .top-container img + div .t2 {
  font-size: 26px;
  font-family: inherit;
}
footer .top .right .bottom-container {
  margin-top: 20px;
}
footer .top .right .bottom-container .item {
  width: 100px;
  display: inline-block;
  text-align: center;
  color: #fff;
}
footer .top .right .bottom-container .item .text {
  margin-top: 6px;
  font-size: 12px;
}
footer .top .right .bottom-container .item + .item {
  margin-left: 30px;
}
footer .bottom {
  background: #262627;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
footer a{
	    color: inherit;
}
.fl {
  float: left;
}

.fr {
  float: right;
}

.cb::before, .cb::after {
  display: block;
  content: "";
  clear: both;
}
@media screen and (max-width: 750px){
	footer .top .left {
    width: 100%;
    text-align: center;
    margin-top: 0;
  }
  footer .top .right {
    width: 100%;
    float: left;
  }
  footer .top .center {
    float: right;
    width: 100%;
    margin: 20px 0;
  }
  footer .top-container,
footer .bottom-container {
    text-align: center;
  }
  footer .bottom .fl,
footer .bottom .fr {
    display: inline;
    float: none;
  }
}