@font-face {
	font-family: '微软雅黑' “microsoft yahei”;
}
:root {
--bgcolor:#e12a3e;
--bgshadowcolor:linear-gradient(90deg, #e12a3e, #f66f35);
--bgscolor:#0870d7;
--bgsshadowcolor:linear-gradient(90deg, #0870d7, #2394df);
--fttcolor:#222;
--ftstscolor:#333;
--ftcolor:#666;
--titlecolor:#242424;
--white:#fff
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}
body {
	font-style: normal;
	line-height: unset;
	font-size: 16px;
	overflow-x: hidden
}
h1, h2, h3 {
	font-weight: normal
}
h1, h2, h3, h4, h5, h6, span, p, a, li {
	line-height: 1
}
a:link, a:visited {
	text-decoration: none;
	color: unset
}
a {
	text-decoration: none;
	cursor: pointer;
	outline: 0;
	border: 0
}
ol, ul {
	margin: 0
}
table {
	border-spacing: 0;
	border-collapse: collapse;
	text-indent: initial
}
ul, li {
	list-style-type: none
}
.clearfix::before, .clearfix::after {
	clear: both;
	display: block;
	visibility: hidden;
	height: 0;
	content: ""
}
.clear {
	clear: both;
	height: 0;
	line-height: 0;
	font-size: 0
}
img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	border: 0;
	object-fit: cover;
}
video {
	outline: 0;
	border: 0
}
input, select, textarea {
	border: 0
}
input:focus, textarea:focus, select:focus {
	outline: 0
}
textarea {
	resize: none
}
input[type=button], input[type=reset], input[type=submit] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer
}
.container {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto
}
.mt90 {
	margin-top: 90px
}
.mb70 {
	margin-bottom: 70px
}
.pt90 {
	padding-top: 90px
}
.pt70 {
	padding-top: 70px
}
.pb70 {
	padding-bottom: 70px
}
.smBlock {
	display: none!important
}
.btn {
	display: inline-block;
	width: 170px;
	height: 46px;
	background: var(--bgshadowcolor);
	border-radius: 23px;
	color: var(--white)!important;
	line-height: 46px;
	text-align: center;
	font-family: 'RobotoBold'
}
.btnLight {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	z-index: 1;
	width: 170px;
	height: 46px;
	background: var(--bgshadowcolor);
	border-radius: 23px;
	color: var(--white)!important;
	line-height: 46px;
	text-align: center;
	font-family: 'RobotoBold'
}
.btnLight>i {
	font-size: 18px;
	margin-left: 5px;
	margin-top: 0;
	transition: all linear .4s
}
.btnLight::before {
	content: "";
	position: absolute;
	left: -160%;
	right: 0;
	bottom: 0;
	top: 0;
	width: 160%;
	transition: all linear .4s;
	z-index: -1;
	background-image: linear-gradient(to right, #ea4546, #e97778, rgba(233,119,120,0))
}
.btnLight2 {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	width: 172px;
	height: 40px;
	border-radius: 20px;
	border: 1px solid #e3e3e3;
	font-size: 16px;
	color: #f2f4f8;
	line-height: 40px;
	font-family: 'RobotoMedium'
}
.btnLight>i, .btnLight2>i {
	display: inline-block;
	font-size: 18px;
	margin-left: 5px;
	margin-top: -2px
}
.btnLight2::before {
	position: absolute;
	content: "";
	background: var(--bgshadowcolor);
	left: -100%;
	right: 0;
	bottom: 0;
	top: 0;
	width: 100%;
	transition: all linear .4s;
	z-index: -1
}
.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}
.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite
}
.animated.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s
}
.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn
}
@-webkit-keyframes fadeIn {
0% {
opacity:0
}
to {
opacity:1
}
}
@keyframes fadeIn {
0% {
opacity:0
}
to {
opacity:1
}
}
.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp
}
@-webkit-keyframes fadeInUp {
0% {
opacity:0;
-webkit-transform:translate3d(0, 100%, 0);
transform:translate3d(0, 100%, 0)
}
100% {
opacity:1;
-webkit-transform:none;
transform:none
}
}
@keyframes fadeInUp {
0% {
opacity:0;
-webkit-transform:translate3d(0, 100%, 0);
transform:translate3d(0, 100%, 0)
}
100% {
opacity:1;
-webkit-transform:none;
transform:none
}
}
.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown
}
@-webkit-keyframes fadeInDown {
0% {
opacity:0;
-webkit-transform:translate3d(0, -100%, 0);
transform:translate3d(0, -100%, 0)
}
to {
opacity:1;
-webkit-transform:translateZ(0);
transform:translateZ(0)
}
}
@keyframes fadeInDown {
0% {
opacity:0;
-webkit-transform:translate3d(0, -100%, 0);
transform:translate3d(0, -100%, 0)
}
to {
opacity:1;
-webkit-transform:translateZ(0);
transform:translateZ(0)
}
}
.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft
}
@-webkit-keyframes fadeInLeft {
0% {
opacity:0;
-webkit-transform:translate3d(-100%, 0, 0);
transform:translate3d(-100%, 0, 0)
}
to {
opacity:1;
-webkit-transform:translateZ(0);
transform:translateZ(0)
}
}
@keyframes fadeInLeft {
0% {
opacity:0;
-webkit-transform:translate3d(-100%, 0, 0);
transform:translate3d(-100%, 0, 0)
}
to {
opacity:1;
-webkit-transform:translateZ(0);
transform:translateZ(0)
}
}
.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight
}
@-webkit-keyframes fadeInRight {
0% {
opacity:0;
-webkit-transform:translate3d(100%, 0, 0);
transform:translate3d(100%, 0, 0)
}
to {
opacity:1;
-webkit-transform:translateZ(0);
transform:translateZ(0)
}
}
@keyframes fadeInRight {
0% {
opacity:0;
-webkit-transform:translate3d(100%, 0, 0);
transform:translate3d(100%, 0, 0)
}
to {
opacity:1;
-webkit-transform:translateZ(0);
transform:translateZ(0)
}
}
.swiper {
	width: 100%;
	height: 100%
}
.swiper-slide {
	text-align: center;
	font-size: 18px;
	display: flex;
	justify-content: center;
	align-items: center
}
.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover
}
header {
	width: 100%;
	height: 100px;
	position: fixed;
	top: 0;
	z-index: 99999;
	background: linear-gradient(to bottom, rgba(1,45,94,.5), rgba(1,45,94,0))
}
header .header_flex {
	width: 100%;
	display: flex;
	justify-content: space-between
}
header .logo {
	padding: 16px 0;
	width: 15%;
	max-width: 183px;
	display: flex;
	align-items: center
}
.navs {
	position: relative
}
.navs>ul {
	display: flex;
	justify-content: space-between;
	align-items: center
}
.navs>ul>li {
	position: relative;
	margin-right: 50px
}
.navs ul li:last-child {
	margin-right: 0
}
.navs>ul>li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	background: var(--bgshadowcolor);
	height: 4px;
	border-radius: 0 0 4px 4px;
	transition: all ease-in-out .5s;
	width: 0
}
.navs>ul>li>a {
	display: flex;
	align-items: center;
	height: 100px;
	font-size: 18px;
	color: var(--white);
	
	text-transform: uppercase;
	position: relative
}
.navs>ul>li.active>a {
	color: transparent!important;
	background: var(--bgshadowcolor);
	-webkit-background-clip: text
}
.navs ul li.active:before {
	width: 100%
}
.navs ul li span {
	display: inline-block;
	margin-left: 6px;
	font-weight: 600;
	transition: transform linear .5s
}
.navs>ul>li.active>a span {
	color: transparent;
	background: var(--bgshadowcolor);
	-webkit-background-clip: text
}
.navs .droplists {
	position: absolute;
	left: 0;
	top: 100px;
	width: max-content;
	background: var(--white);
	border-radius: 0 0 12px 12px;
	padding: 20px;
	display: none
}
.navs .droplists ol li {
	margin-right: 0;
	margin-bottom: 10px
}
.navs .prodrop { width:460px;}
.navs .prodrop ol li{
    margin: 0 20px 0 10px;float:left;padding:0 10px; min-width:150px; line-height:32px;
}
.navs .droplists li:last-child {
	margin-bottom: 0
}
.navs .droplists ol li a {
	font-size: 16px;
	color: var(--ftcolor);
	line-height: 21px;
	font-family: 'RobotoMedium'; position: relative;
}
.navs .droplists ol li a:before {content: "";
    height: 2px;
    width: 12px;
    border-radius: 0;
    background-color: #F35C27;
    position: absolute;
    bottom: 44px;
    left: -22px;
    transition: transform 500ms ease;
    transform: scale(0, 1);
    transform-origin: left center;
    z-index: 1;}
.quote {
	display: flex;
	justify-content: space-between;
	align-items: center
}
.quote .quote_lang span {
	display: inline-block;
	width: 40px;
	height: 40px;
	background: var(--bgsshadowcolor);
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	color: #fff;
	font-size: 22px
}
.quote .quote_lang {
	height: 100px;
	margin-right: 16px;
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer
}
.quote .quote_lang .lan-menu {
	display: none;
	position: absolute;
	left: 0;
	top: 100px;
	width: 140px;
	background: var(--white);
	border-radius: 0 0 12px 12px;
	padding: 10px
}
.quote .quote_lang .lan-menu li {
	margin-bottom: 10px;
	text-align: center
}
.quote .quote_lang .lan-menu a {
	font-size: 14px;
	color: var(--ftcolor);
	line-height: 21px;
	text-transform: uppercase;
	font-family: 'RobotoMedium'
}
.quote .whatsApp {
	padding: 10px;
	background: #25d366;
	border-radius: 50%;
	margin-right: 20px;
	position: relative;
	overflow: hidden;
	transition: all .4s ease-in
}
.quote .whatsApp::before {
	content: '';
	position: absolute;
	background: #fff;
	width: 25px;
	height: 50px;
	top: 0;
	left: -45px;
	opacity: .3;
	-webkit-transition: all .4s ease-out;
	transition: all .4s ease-out;
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg)
}
.quote .quote_whatsapp {
	font-size: 20px;
	color: #fff
}
.headerFixed {
	background: var(--white);
	box-shadow: 0px 5px 10px 0px rgba(1, 45, 94, .1);
	transition: all linear .5s
}
.headerFixed .navs>ul>li>a {
	color: var(--fttcolor)
}
.header_sm {
	display: none
}
.footer-huatai {
	width: 100%;
	padding: 100px 0 70px;
	background: url('/static/images/huatai-bg.webp') no-repeat;
	background-size: 100% 100%
}
.footer-huatai .img {
	width: 80%;
	max-width: 620px;
	margin: 0 auto
}
.footer-huatai p {
	font-size: 22px;
	color: var(--white);
	line-height: 38px;
	width: 52%;
	text-align: center;
	margin: 40px auto 0
}
footer {
	width: 100%;
	background-color: #05042e;
}
footer .contact-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 55px 12.3% 60px;
	border-bottom: 1px solid #2d537e
}
footer .contact-info li a {
	display: flex;
	align-items: center
}
footer .contact-info li {
	width: calc(25% - 40px)
}
footer .contact-info li a>span {
	display: inline-block;
	width: 44px;
	height: 44px;
	background: var(--bgshadowcolor);
	border-radius: 50%;
	text-align: center;
	line-height: 44px
}
footer .contact-info li span i {
	display: inline-block;
	font-size: 24px;
	color: var(--white);
	transition: transform linear .5s
}
footer .contact-info li div {
	color: var(--fttcolor);
	
	margin-left: 15px
}
footer .contact-info li div span {
	font-size: 14px
}
footer .contact-info li div p {
	margin-top: 8px;
	transition: all linear .4s
}
footer .footer-main {
	display: flex; padding-top: 70px;
}

footer .footer-main .left {
	width: 20%;
	max-width: 300px;
	margin-right: 90px
}
footer .footer-main p { color: #F1F1F1 }
footer .footer-main ul {
	width: 74%;
	display: flex;
	justify-content: space-between
}
footer .footer-main ul>li {
	width: 25%
}
footer .footer-main .left a {
	display: block;
	width: 60%;
	max-width: 175px;
	margin-bottom: 20px
}
footer .footer-main .left p {
	font-size: 16px;
	color: #f1f1f1;
	line-height: 24px;
}
footer .footer-main ul>li>span {
	display: inline-block;
	font-size: 22px;
	color: #f1f1f1;
	
	margin: 20px 0 30px
}
footer .footer-main ul>li ol li {
	margin-bottom: 10px
}
footer .footer-main ul>li ol li:last-child {
	margin-bottom: 0
}
footer .footer-main ul>li ol li a {
	font-size: 16px;
	line-height: 22px;
	color: #f1f1f1;
	transition: all linear .4s
}
footer .footer-main ul>li:nth-child(3) {
	padding-top: 72px
}
footer .footer-main ul>li:last-child li {
	display: flex
}
footer .footer-main ul>li:last-child li i {
	font-size: 18px;
	color: #f1f1f1; line-height: 28px;
}
footer .footer-main ul>li:last-child li p {	margin-left: 15px;font-size:16px; line-height: 28px;}
footer .footer-main ul>li:last-child li p a {}
footer .footer-main ul>li:last-child li p a, footer .footer-main ul>li:last-child li p span {
	line-height: 22px;
	transition: all linear .4s
}
footer .footer-main ul>li:last-child ol:last-child {
	display: flex;
	justify-content: space-between;
	margin-top: 25px
}
footer .footer-main ul>li:last-child ol:last-child li {
	margin-bottom: 0
}
footer .footer-main ul>li:last-child ol:last-child a {
	display: inline-block;
	width: 44px;
	height: 44px;
	border: 1px solid #0d2d55;
	border-radius: 50%;
	text-align: center;
	line-height: 44px;
	transition: all linear .5s
}
footer .footer-main ul>li:last-child ol:last-child a i {
	display: inline-block;
	font-size: 22px;
	color: #0d2d55;
	transform: rotateY(0);
	transition: all linear .5s
}
.copy-right { border-top: 1px solid #6E6C9B; padding: 10px 0;}
.copy-right p {
	font-size: 16px;
	color: #f1f1f1;
	line-height: 40px;
	text-align: center
}
#return_top {
	position: fixed;
	right: 5%;
	top: 0;
	width: 54px;
	height: 54px;
	background: var(--bgsshadowcolor);
	border-radius: 20px 20px 20px 0;
	line-height: 54px;
	text-align: center;
	cursor: pointer;
	opacity: 0;
	box-shadow: 0 0 12px 0 rgba(8,112,215,.2);
	z-index: 99999
}
#return_top i {
	display: inline-block;
	color: var(--white);
	font-size: 22px;
	transform: rotate(90deg)
}
.footer-form {
	width: 100%;
	background: #f7f7f7;
	position: relative
}
.footer-form::before {
	content: '';
	width: 33%;
	max-width: 635px;
	height: 100%;
	background: url("/static/images/footer-form-bg.webp") no-repeat;
	background-size: 100% 100%;
	position: absolute;
	left: 0;
	top: 0
}
.footer-form .container {
	display: flex;
	justify-content: space-between
}
.footer-form .left {
	width: 37%;
	max-width: 560px;
	height: fit-content;
	padding: 55px 40px 60px;
	background: rgba(8,112,215,.7);
	border-radius: 10px;
	position: relative;
	margin-top: 30px
}
.footer-form .left span {
	display: inline-block;
	position: relative;
	color: var(--white);
	font-size: 36px;
	
	padding-bottom: 10px;
	margin-bottom: 20px
}
.footer-form .left span::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 30%;
	height: 5px;
	background: var(--bgshadowcolor)
}
.footer-form p {
	
	font-size: 20px;
	color: var(--white);
	line-height: 28px
}
.footer-form ul {
	background: rgba(238,238,238,.8);
	border-radius: 10px;
	margin-top: 25px;
	padding: 30px
}
.footer-form ul li {
	display: flex;
	align-items: center;
	margin-bottom: 10px
}
.footer-form ul li i {
	font-size: 18px;
	margin-right: 12px;
	color: transparent;
	background: var(--bgshadowcolor);
	-webkit-background-clip: text
}
.footer-form ul li p {
	font-size: 18px;
	line-height: 26px;
	color: var(--ftcolor)
}
.footer-form ul li p a {
	transition: all linear .5s
}
.footer-form ul li:last-child {
	align-items: flex-start;
	margin-bottom: 0
}
.footer-form ul li:last-child i {
	font-size: 22px;
	margin: 3px 10px 0 -2px
}
.footer-form ol {
	display: flex;
	align-items: center
}
.footer-form ol li {
	margin-right: 10px
}
.footer-form ol li:last-child {
	margin-right: 0
}
.footer-form ol li a {
	display: block;
	width: 60px;
	height: 60px;
	background: rgba(82,152,226,.8);
	border-radius: 50%;
	color: var(--white);
	text-align: center;
	line-height: 60px
}
.footer-form ol li a i {
	display: inline-block;
	font-size: 24px;
	transition: all linear .5s
}
.footer-form ol li:nth-child(3) i {
	font-size: 26px
}
.footer-form .right {
	width: 64%;
	margin-left: 80px
}
.footer-form .top {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 35px;
	padding-bottom: 0
}
.footer-form .top img {
	width: 31px;
	margin-right: 15px
}
.footer-form h2 {
	
	font-size: 36px;
	color: var(--fttcolor)
}
.footer-form form {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap
}
.footer-form .form-item {
	width: calc(50% - 25px);
	position: relative;
	margin-bottom: 18px
}
.footer-form .form-item input, .footer-form .form-item textarea {
	width: 100%;
	height: 60px;
	background: var(--white);
	border: 1px solid #e3e3e3;
	border-radius: 6px;
	padding-left: 20px;
	
	font-size: 20px;
	line-height: 60px;
	color: #999
}
.footer-form .form-item span {
	font-size: 22px;
	position: absolute;
	left: 125px;
	top: 13px;
	color: var(--bgcolor)
}
.footer-form .phone span {
	left: 185px
}
.footer-form .country span {
	left: 145px
}
.footer-form .form-item:nth-child(5) {
	width: 100%;
	margin-bottom: 5px
}
.footer-form .form-item textarea {
	padding-top: 15px;
	height: 180px;
	line-height: 26px;
	resize: none
}
.footer-form p.note {
	font-size: 16px;
	color: #adafb3;
	line-height: 24px;
	margin-bottom: 40px;
	font-family: 'RobotoRegular'
}
.footer-form p.note>span {
	color: var(--bgcolor)
}
.footer-form .btnLight {
	width: 20%;
	height: 54px;
	border-radius: 27px;
	margin: 0 auto
}
.footer-form .btnLight input {
	width: 100%;
	height: 100%;
	background: unset;
	font-size: 18px;
	color: var(--white);
	text-align: left;
	padding: 0 28px;
	font-family: 'RobotoMedium'
}
.footer-form .btnLight i {
	position: absolute;
	right: 28px;
	margin: auto;
	font-size: 22px
}
.banner-inner {
	width: 100%;
	height: 500px;
	background: url('/static/images/banner/banner-news.webp') no-repeat;
	background-size: 100% 100%
}
.banner-inner span, .banner-inner h1 {
	display: block;
	font-size: 36px;
	color: var(--white);
	
	padding: 210px 0 30px
}
.breadcrumb {
	display: flex
}
.breadcrumb>i {
	font-size: 18px;
	color: #e14a1c;
}
.breadcrumb ul {
	display: flex;
	align-items: center;
	justify-content: space-between
}
.breadcrumb a {
	transition: all linear .5s
}
.breadcrumb li {
	font-size: 18px;
	color: #e3e3e3
}
.breadcrumb li i {
	font-size: 14px;
	display: inline-block;
	margin: 0 6px
}
.breadcrumb li:last-child {
	color: #e14a1c;
}
.breadcrumb li:first-child {
	margin-left: 10px
}
#epages {
	width: fit-content;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between
}
#epages b {
	display: inline-block;
	width: 36px;
	height: 36px;
	font-size: 20px;
	line-height: 36px;
	background: var(--bgshadowcolor);
	color: var(--white)!important;
	text-align: center;
	border-radius: 50%;
	margin-right: 30px
}
#epages a {
	display: inline-block;
	font-size: 20px;
	color: var(--fttcolor);
	margin-right: 30px
}
#epages a:first-child {
	display: none
}
#epages a:last-child {
	margin-top: -5px
}
#cta_sm {
	display: none
}
.service .container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap
}
.service .img {
	width: 45%
}
.service .text {
	width: 50%;
	margin-top: 100px
}
.service h2 {
	
	font-size: 30px;
	color: var(--fttcolor);
	line-height: 42px;
}
.service ol {
	display: flex;
	align-items: center;
	margin: 15px 0 35px
}
.service ol li:first-child {
	padding-right: 20px
}
.service ol li {
	color: var(--bgcolor);
	
	font-size: 22px;
	line-height: 28px;
	border-bottom: 1px solid var(--bgcolor)
}
.service .text>p {
	width: 95%;
	font-size: 20px;
	color: var(--fttcolor);
	line-height: 32px
}
.service .btnLight2 {
	width: 198px;
	height: 48px;
	border: 2px solid var(--bgcolor);
	font-size: 16px;
	border-radius: 24px;
	color: var(--bgcolor);
	margin: 40px 0 50px
}
.service ul {
	display: flex;
	justify-content: space-between
}
.service ul li {
	width: calc(50% - 35px)
}
.service ul li .top {
	display: flex;
	align-items: center;
	margin-bottom: 15px
}
.service ul li img {
	width: 62px;
	height: 62px;
	margin-right: 15px
}
.service ul li span {
	
	font-size: 22px;
	color: var(--bgcolor)
}
.service ul li p {
	font-size: 16px;
	color: var(--fttcolor);
	line-height: 30px
}
.sidebar {
	width: 35%;
	max-width: 510px
}
.sidebar .top {
	width: 100%;
	height: 80px;
	background: url("/static/images/side-tit-bg.webp") no-repeat;
	background-size: 100% 100%;
	border-radius: 30px 15px 0 0;
	display: flex;
	justify-content: center;
	align-items: center
}
.sidebar .top img {
	width: 29px
}
.sidebar .top h2 {
	display: inline-block;
	
	font-size: 22px;
	color: var(--white);
	margin-left: 15px
}
.sidebar ul {
	display: flex;
	flex-wrap: wrap;
	padding: 40px 50px;
	background: #f7f7f7
}
.sidebar ul li {
	width: 100%;
	margin-bottom: 30px;
	box-shadow: 0 2px 5px 0 rgba(34,34,34,0.15);
	border-radius: 0 30px 0 30px
}
.sidebar ul li:last-child {
	margin-bottom: 0
}
.sidebar ul li .img {
	width: 100%;
	border-top-right-radius: 30px;
	overflow: hidden
}
.sidebar ul li img {
	border-top-right-radius: 30px;
	transition: all linear .5s
}
.sidebar ul li .txt {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 60px;
	background: var(--white);
	border-bottom-left-radius: 30px;
	padding: 0 24px;
	position: relative;
	z-index: 1
}
.sidebar ul li .txt::before {
	content: '';
	position: absolute;
	left: 24px;
	top: -3px;
	width: 21%;
	max-width: 85px;
	height: 6px;
	background: var(--bgshadowcolor);
	border-radius: 3px;
	z-index: 2
}
.sidebar ul li p {
	
	font-size: 18px;
	color: var(--fttcolor);
	text-transform: capitalize;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color linear .5s
}
.sidebar .txt .btnLight2 {
	width: 28px;
	height: 28px;
	border: 1px solid var(--bgcolor);
	border-radius: 50%;
	text-align: center;
	line-height: 28px;
	color: var(--bgcolor);
	z-index: 0
}
.sidebar .txt .btnLight2>i {
	display: inline-block;
	margin-left: 0
}
#cbl_sm, #cbl {
	display: none
}
#cbl {
	position: fixed;
	right: 0;
	top: 30%;
	border-radius: 12px;
	box-shadow: 0 4px 8px 1px rgba(0,0,0,.08);
	z-index: 999;
	height: fit-content
}
#cbl li {
	background: var(--white);
	padding: 10px;
	text-align: center;
	position: relative
}
#cbl li a {
	display: block
}
#cbl li i {
	font-size: 24px;
	color: var(--bgscolor)
}
#cbl li:nth-child(1) i {
	font-size: 28px
}
#cbl li:nth-child(3) i {
	font-size: 26px
}
#cbl li:first-child {
	border-radius: 12px 12px 0 0
}
#cbl li:last-child {
	padding: 12px 20px;
	margin-top: 2px;
	background: var(--bgsshadowcolor);
	border-radius: 0 0 12px 12px;
	cursor: pointer
}
#cbl li:last-child i {
	color: var(--white);
	font-size: 22px
}
#cbl li .cbl_line {
	display: block;
	width: 20px;
	height: 1px;
	background: rgba(0,0,0,.1);
	margin: 0 auto;
	margin-top: 20px
}
#cbl li .cbl_hd_desc {
	display: none;
	font-size: 14px;
	font-weight: 400;
	color: var(--ftcolor);
	line-height: 21px;
	margin-top: 9px
}
#cbl li .cbl_line {
	width: 40px
}
#cbl li .cbl_email_hd {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 270px;
	height: 64px;
	background: var(--white);
	padding: 0 20px;
	box-shadow: -2px 2px 4px 1px rgba(0,0,0,.08);
	line-height: 64px;
	z-index: -1
}
#cbl li .cbl_email_hd span {
	font-size: 16px;
	font-weight: 700;
	color: var(--bgscolor);
	line-height: 64px
}
#LRdiv0 {
	display: none!important
}

@media(any-hover:hover) {
.btnLight:hover::before, .btnLight2:hover::before {
	left: 0
}
.btnLight2:hover {
	border: 0;
	transition: all .3s
}
.btnLight2:hover {
	color: var(--white)!important
}
a:hover {
	cursor: pointer
}
.quote .whatsApp:hover:before {
	width: 45px;
	left: 205px
}
.navs>ul>li:hover>a {
	color: transparent;
	background: var(--bgshadowcolor);
	-webkit-background-clip: text
}
.navs ul li:hover:before {
	width: 100%
}
.navs>ul>li:hover span {
	transform: rotate(180deg);
	color: transparent;
	background: var(--bgshadowcolor);
	-webkit-background-clip: text
}
.navs .droplists ol li:hover>a {
	color: var(--fttcolor)
}
.quote .quote_lang .lan-menu li:hover>a {
	color: var(--fttcolor)
}
footer .contact-info li:hover p {
	color: var(--bgcolor)
}
footer .contact-info li:hover span i {
	transform: rotateY(360deg)
}
footer .footer-main ul>li ol li:hover a {
	color: var(--bgcolor)
}
footer .footer-main ul>li:last-child ol:last-child li:hover a {
	background: #0d2d55
}
footer .footer-main ul>li:last-child ol:last-child li:hover i {
	color: var(--white);
	transform: rotateY(360deg)
}
.breadcrumb a:hover, #epages a:hover {
	color: var(--bgcolor)
}
.footer-form ol li:hover i {
	transform: rotateY(360deg)
}
.footer-form ul li p a:hover {
	color: var(--bgcolor)
}
.sidebar ul li:hover p {
	color: var(--bgcolor)
}
.sidebar ul li:hover img {
	transform: scale(1.1)
}
.sidebar ul li:hover .btnLight2 {
	border: 0;
	color: var(--white)
}
.sidebar ul li:hover .btnLight2::before {
	left: 0
}
.sidebar ul li:hover img {
	transform: scale(1.1)
}
.sidebar ul li:hover h3 {
	color: var(--bgcolor)
}
#cbl li .cbl_email_hd:hover span {
	color: var(--bgcolor)
}
#cbl li:last-child:hover, #return_top:hover {
	background: var(--bgshadowcolor)
}
}

@media screen and (max-width:1680px) {
.container {
	padding: 0 80px
}
.banner-inner {
	height: 430px
}
.banner-inner span, .banner-inner h1 {
	padding: 160px 0 30px
}
.navs>ul>li {
	margin-right: 30px
}
.footer-form ul li p {
	font-size: 16px;
	line-height: 24px
}
.footer-form .right {
	margin-left: 5%
}
.footer-form .btnLight {
	width: fit-content;
	padding-right: 25px
}
footer .contact-info {
	padding: 55px 3% 60px
}
.service .text {
	margin-top: 0
}
.service h2 {
	font-size: 30px;
	line-height: 38px
}
.service ol {
	margin: 10px 0 30px
}
.service ol li {
	font-size: 22px;
	line-height: 28px
}
.service .text>p {
	font-size: 18px;
	line-height: 26px
}
.service .btnLight2 {
	margin: 30px 0 40px
}
.sidebar ul {
	padding: 40px 45px
}
.sidebar .top h2 {
	font-size: 28px
}
.sidebar ul li p {
	font-size: 20px
}
}

@media screen and (max-width:1440px) {
.container {
	padding: 0 60px
}
.mt90 {
	margin-top: 70px
}
.mb70 {
	margin-bottom: 50px
}
.pt90 {
	padding-top: 70px
}
.pb70 {
	padding-bottom: 50px
}
.banner-inner {
	height: 400px
}
.navs>ul>li {
	margin-right: 20px
}
.navs>ul>li>a {
	font-size: 16px
}
.footer-form p {
	font-size: 18px;
	line-height: 26px
}
.footer-form .left {
	padding: 50px 30px 60px
}
.footer-form ul {
	padding: 20px
}
footer .contact-info {
	padding: 40px 0 50px
}
footer .footer-main .left {
	margin-right: 45px
}
footer .contact-info li a>span {
	width: 38px;
	height: 38px;
	line-height: 38px
}
footer .contact-info li div {
	margin-left: 10px
}
footer .contact-info li span i {
	font-size: 18px
}
footer .footer-main ul>li:last-child ol:last-child a {
	width: 36px;
	height: 36px;
	line-height: 36px
}
footer .footer-main ul>li:last-child ol:last-child a i {
	display: inline-block;
	font-size: 18px
}
footer .footer-main {
	padding-bottom: 50px
}
footer .contact-info li {
	width: 25%
}
.service .btnLight2 {
	margin: 20px 0 30px
}
.service ul li p {
	font-size: 16px;
	line-height: 24px
}
.sidebar ul {
	padding: 35px 40px
}
.sidebar .top h2 {
	font-size: 26px
}
.sidebar ul li p {
	font-size: 18px
}
}

@media screen and (max-width:1280px) {
.container {
	padding: 0 50px
}
.quote .btn_quote {
	display: none
}
.banner-inner {
	height: 380px
}
.navs>ul>li {
	margin-right: 15px
}
.footer-form ul li p {
	font-size: 14px;
	line-height: 22px
}
.footer-form .left {
	padding: 25px 20px 30px
}
.footer-form ul {
	padding: 15px
}
.footer-form .form-item {
	width: calc(50% - 10px);
	margin-bottom: 12px
}
.footer-form h2 {
	font-size: 30px
}
.footer-form .form-item input, .footer-form .form-item textarea {
	height: 50px;
	border-radius: 5px;
	padding-left: 15px;
	font-size: 18px;
	line-height: 50px
}
.footer-form .form-item textarea {
	height: 120px;
	line-height: 24px
}
.footer-form p.note {
	font-size: 14px;
	line-height: 21px;
	margin-bottom: 20px
}
.footer-form .btnLight input {
	font-size: 14px
}
.footer-form .btnLight {
	height: 45px
}
footer .footer-main ul>li:last-child li p {
	margin-left: 5px
}
footer .contact-info li div span {
	font-size: 12px
}
footer .contact-info li div p {
	font-size: 14px;
	margin-top: 6px
}
.sidebar .top h2 {
	font-size: 22px;
	margin-left: 10px
}
.sidebar ul {
	padding: 25px 30px
}
.sidebar ul li .txt {
	height: 50px
}
.sidebar ul li p {
	font-size: 16px
}
}

@media screen and (max-width:1024px) {
.container {
	padding: 0 30px
}
.banner-inner {
	height: 320px
}
.banner-inner span, .banner-inner h1 {
	padding: 120px 0 30px
}
.navs>ul>li>a {
	font-size: 14px
}
.quote {
	display: none
}
.footer-form h2 {
	font-size: 26px
}
.footer-form p {
	font-size: 14px;
	line-height: 22px
}
.footer-form ul li p {
	font-size: 13px;
	line-height: 17px
}
.footer-huatai p {
	font-size: 20px;
	line-height: 28px;
	width: 80%
}
footer .contact-info li {
	width: 50%;
	margin-bottom: 20px
}
footer .contact-info {
	flex-wrap: wrap;
	padding: 30px 0 20px
}
.service .img, .service .text {
	width: 100%
}
.service .text {
	margin-top: 30px
}
}

@media screen and (max-width:768px) {
.container {
	padding: 0 15px
}
.mt90 {
	margin-top: 50px
}
.mb70 {
	margin-bottom: 40px
}
.pt90 {
	padding-top: 50px
}
.pb70 {
	padding-bottom: 40px
}
.smBlock {
	display: block!important
}
.smHide {
	display: none!important
}
.btnLight, .btnLight2 {
	width: 51%!important;
	max-width: 160px;
	height: 40px!important;
	border-radius: 20px!important;
	font-size: 16px!important;
	line-height: 40px!important;
	border: 0;
	color: var(--white)!important
}
.btnLight2::before {
	left: 0
}
.header-sm {
	display: block;
	width: 100%;
	height: 44px;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999
}
.header-sm .container {
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: space-between
}
.header-sm .container .header-sm-logo img {
	width: 55%
}
.header-sm .navs-icon {
	display: flex;
	align-items: center;
	justify-content: space-between
}
.header-sm .navs-icon .whatsapp-sm {
	display: inline-block;
	width: 22px;
	height: 22px;
	background: #2ab43f;
	border-radius: 50%;
	text-align: center;
	margin-right: 10px
}
.header-sm .navs-icon .whatsapp-sm i {
	line-height: 22px;
	color: var(--white)
}
.header-sm .navs-icon .menu-sm i {
	color: var(--white);
	font-size: 24px
}
.smheaderFixed {
	background: var(--white)
}
.smheaderFixed .navs-icon .menu-sm i {
	color: var(--fttcolor)
}
.navs-sm {
	position: fixed;
	right: -100%;
	top: 0;
	z-index: 10000;
	width: 69%;
	height: 100vh;
	padding-top: 30px;
	background: var(--white);
	overflow-y: scroll;
	overflow-x: hidden
}
.navs-sm i.close {
	font-size: 30px;
	position: absolute;
	right: 12px;
	top: 15px;
	color: var(--bgcolor)
}
.navs-sm .navs-lists ul>li {
	border-bottom: 1px solid #eaeaea
}
.navs-sm .navs-lists ul>li>a {
	padding: 0 15px
}
.navs-sm .navs-lists ul li span {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px
}
.navs-sm .navs-lists ul li .hidden span {
	padding-left: 25px
}
.navs-sm .navs-lists ul li .hidden li {
	border-bottom-style: dashed
}
.navs-sm .navs-lists ul li .hidden i {
	color: #6c7684
}
.navs-sm .navs-lists ul li .hidden a {
	color: #6c7684;
	font-size: 16px;
	text-transform: capitalize
}
.navs-sm .navs-lists li a {
	display: inline-block;
	width: 100%;
	font-size: 18px;
	color: var(--titlecolor);
	line-height: 35px
}
.navs-sm .navs-lists li i {
	display: inline-block;
	color: var(--titlecolor);
	font-size: 24px;
	transform: rotate(-90deg);
	transition: all .3s linear
}
.iActive {
	transform: rotate(0deg)!important;
	color: var(--bgscolor)!important
}
.aActive {
	color: var(--bgscolor)!important
}
.navs-sm .navs-lists ul.hidden {
	display: none;
	background: #fcfcfc
}
.navs-sm .navs-lists ul li .hidden li:last-child {
	border-bottom: 0
}
.navs-sm .navs-lists ul.hidden>li {
	padding: 0
}
.navs-sm .navs-lists ul.hidden>li a>i {
	transform: rotate(-90deg);
	left: 0;
	top: 0;
	right: unset
}
.navs-sm .navs-lists li.active a {
	color: var(--bgscolor)
}
.navs-sm .navs-bottom {
	padding: 50px 15px;
	text-align: center
}
.navs-sm .navs-bottom span a {
	font-size: 18px;
	
	color: var(--bgscolor);
	line-height: 27px
}
.navs-sm .navs-bottom p {
	font-size: 16px;
	font-weight: 400;
	color: #999;
	line-height: 22px;
	margin: 8px 0 20px
}
.navs-sm .navs-bottom a.light {
	display: inline-block;
	margin: 0 auto;
	width: 162px;
	height: 45px;
	line-height: 45px;
	border-radius: 22px;
	background: var(--bgshadowcolor);
	font-size: 16px;
	color: var(--white)
}
#navs_zzc {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	background: rgba(0,0,0,.3);
	display: none
}
.footer-huatai {
	padding: 50px 0 40px
}
.footer-huatai p {
	font-size: 18px;
	line-height: 22px;
	width: 100%;
	margin: 15px auto 0
}
footer .contact-info {
	display: none;
	flex-wrap: wrap;
	padding: 40px 0 30px
}
footer .contact-info li {
	width: calc(50% - 10px)
}
footer .footer-main {
    margin-top: 0;
    flex-wrap: wrap;
    padding-bottom: 30px;
    padding-top: 45px;
}
footer .footer-main .left {
	width: 100%;
	max-width: unset;
	margin-right: 0
}
footer .footer-main .left a {
	margin-bottom: 15px;
}
footer .footer-main ul {
	width: 100%;
	flex-wrap: wrap
}
footer .footer-main ul>li {
	width: 50%
}
footer .footer-main ul>li>span {
	font-size: 20px;
	margin: 25px 0 15px
}
footer .footer-main ul>li ol li {
	margin-bottom: 6px
}
footer .footer-main ul>li ol li a {
	font-size: 16px
}
footer .footer-main ul>li:nth-child(3) {
	display: none
}
footer .footer-main ul>li:last-child {
	width: 100%
}
footer .footer-main ul>li:last-child ol:last-child {
	width: 65%;
	margin-top: 20px
}
footer .footer-main ul>li:last-child ol:last-child a {
	width: 38px;
	height: 38px;
	line-height: 38px
}
footer .footer-main ul>li:last-child ol:last-child a i {
	font-size: 18px
}
.copy-right p {
	font-size: 14px;
	line-height: 21px
}
#return_top {
	display: none!important
}
.footer-form::before {
	display: none
}
.footer-form .container {
	flex-wrap: wrap
}
.footer-form .left {
	display: none
}
.footer-form .right {
	margin-left: 0;
	width: 100%
}
.footer-form .top {
	margin: 0 auto 30px
}
.footer-form .top img {
	width: 20px;
	margin-right: 5px
}
.footer-form h2 {
	font-size: 22px;
	text-align: center
}
.footer-form h2::before {
	left: 10px
}
.footer-form .form-item {
	width: 100%;
	margin-bottom: 15px
}
.footer-form .form-item input, .footer-form .form-item textarea {
	height: 45px;
	border-radius: 5px;
	padding-left: 15px;
	font-size: 16px;
	line-height: 45px
}
.footer-form .form-item span {
	font-size: 18px;
	left: 96px;
	top: 10px
}
.footer-form .phone span {
	left: 145px
}
.footer-form .country span {
	left: 113px
}
.footer-form .form-item textarea {
	padding-top: 15px;
	height: 150px;
	line-height: 20px
}
.footer-form p.note {
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 20px
}
.footer-form .btnLight {
	font-size: 16px
}
.footer-form .btnLight input {
	height: 40px;
	font-size: 16px;
	line-height: 40px;
	padding: 0 20px
}
.footer-form .btnLight i {
	right: 20px;
	font-size: 20px
}
.banner-inner {
	height: 300px!important;
	background: url('/static/images/banner/banner-news-sm.webp') no-repeat;
	background-size: 100% 100%
}
.banner-inner span, .banner-inner h1 {
	font-size: 28px!important;
	line-height: 36px!important;
	padding: 120px 0 20px!important
}
.banner-inner .breadcrumb>i, .breadcrumb li {
	font-size: 16px
}
.breadcrumb li:first-child {
	margin-left: 6px
}
.breadcrumb li i {
	font-size: 14px;
	margin: 0 2px
}
#epages b {
	width: 25px;
	height: 25px;
	line-height: 25px;
	border-radius: 50%;
	margin-right: 12px;
	font-size: 16px
}
#epages a {
	font-size: 18px;
	margin-right: 12px
}
#epages a:last-child {
	margin-right: 0
}
#cta_sm {
	display: block;
	width: 100%;
	padding: 35px 0;
	background: url("/static/images/cta-bg.webp") no-repeat;
	text-align: center
}
#cta_sm .container>span {
	font-size: 16px;
	
	color: #a7b1f1
}
#cta_sm p {
	margin: 10px 0 20px;
	font-size: 20px;
	line-height: 28px;
	
	color: var(--white)
}
#cta_sm p span {
	color: var(--bgcolor)
}
#cta_sm .cta-sm-btns {
	display: flex;
	justify-content: center;
	align-items: center
}
#cta_sm .cta-sm-btns a {
	display: inline-block;
	width: 42%;
	height: 40px;
	background: var(--bgshadowcolor);
	border-radius: 20px;
	color: var(--white);
	font-size: 18px;
	line-height: 40px
}
.service .container>div {
	width: 100%!important
}
.service h2 {
	font-size: 22px;
	line-height: 34px
}
.service .text {
	margin-top: 25px;
	margin-bottom: 30px;
	order: 2
}
.service ol {
	margin: 10px 0 20px
}
.service ol li {
	font-size: 16px;
	line-height: 24px
}
.service .text>p {
	width: 100%;
	font-size: 18px;
	line-height: 26px
}
.service .btnLight2 {
	border: 0;
	margin: 20px 0 25px
}
.service ul li {
	width: calc(50% - 10px)
}
.service ul li img {
	width: 46px;
	height: 46px;
	margin-right: 10px
}
.service ul li span {
	font-size: 18px
}
.service ul li p {
	font-size: 16px;
	line-height: 24px
}
.sidebar {
	margin-top: 45px
}
.sidebar .top {
	height: 50px;
	border-radius: 15px 8px 0 0
}
.sidebar .top img {
	width: 22px
}
.sidebar .top h2 {
	font-size: 20px;
	margin-left: 10px
}
.sidebar ul {
	padding: 15px
}
.sidebar ul li {
	margin-bottom: 20px;
	border-radius: 0 15px 0 15px
}
.sidebar ul li .img, .sidebar ul li img {
	border-top-right-radius: 15px
}
.sidebar ul li .txt {
	padding: 0 15px;
	height: 48px;
	border-bottom-left-radius: 15px
}
.sidebar ul li .txt::before {
	left: 15px;
	top: -2px;
	max-width: 60px;
	height: 4px;
	border-radius: 2px
}
.sidebar ul li p {
	font-size: 18px
}
.sidebar ul li .img, .sidebar ul li .txt {
	width: 100%
}
.sidebar .txt .btnLight2 {
	width: 24px!important;
	height: 24px!important;
	border-radius: 50%!important;
	line-height: 24px!important;
	border: 0
}
.sidebar ul li {
	width: 100%;
	margin-bottom: 20px
}
.sidebar ul li:last-child {
	margin-bottom: 0
}
.sidebar ul li a>img {
	top: 20%;
	margin: 0 auto;
	width: 28px;
	height: 27px
}
.sidebar ul li h3 {
	width: 100%;
	font-size: 18px;
	line-height: 22px;
	margin: 15px auto 0
}
#cbl, #return_top, #LRfloater0 {
	display: none!important
}
#cbl_sm {
	display: block;
	width: 50px;
	position: fixed;
	right: 15px;
	bottom: 15%;
	margin: auto;
	z-index: 9999
}
#cbl_sm li {
	width: 50px;
	height: 50px;
	line-height: 50px;
	display: block;
	border-radius: 50%;
	background: var(--bgsshadowcolor);
	box-shadow: 0 4px 10px 3px rgba(55,99,170,.2);
	margin-bottom: 20px;
	text-align: center
}
#cbl_sm li:last-child {
	background: #25d366;
	margin-bottom: 0;
	font-size: 26px;
}
#cbl_sm li a {
	display: block
}
#cbl_sm li i {
	color: var(--white);
	font-size: 28px;
	line-height: 50px
}
}
