@import url("./iconfont.css");

/* CSS Reset */
html {
    -webkit-text-size-adjust: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: PingFang SC, Microsoft Yahei, Helvetica Neue, Arial;
}

img {
    max-width: 100%;
    max-height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    width: 100%;
    height: auto;
    display: block;
}

ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
span,
i,
em,
dl {
    list-style: none;
    margin: 0;
    padding: 0;
}

header,
nav,
section,
article,
aside,
footer {
    display: block;
}

a {
    text-decoration: none;
    color: #222;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}

a * {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}

a:hover {
    color: var(--primary);
}

.clamp{
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.clamp2{
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.clamp3{
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.fullscreen,
.fullscreen body {
    height: 100%;
    overflow: hidden
}

.alltransition {
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
}

.table {
    display: table;
    width: 100%;
    height: 100%;
}

.table-cell {
    display: table-cell;
    vertical-align: middle;
}

.pcshow {
    display: block;
}

.mbshow {
    display: none !important;
}

.left {
    float: left;
}

.right {
    float: right;
}

.clear {
    clear: both;
}

.img {
    position: relative;
    overflow: hidden;
}

.img-center {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    width: auto !important;
    height: auto !important;
    z-index: 1;
	object-fit: cover;
}

.img-block {
    display: block;
    width: 100%;
    height: auto;
}

.img-inline {
    display: inline-block;
    width: auto;
    height: auto;
}

.img-cover {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-box {
    position: relative;
    overflow: hidden;
}

.img-box img {
    transition: .4s ease;
    -webkit-transition: .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

a:hover .img-box img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.no-images{
	border:1px solid #eee;
	z-index: 99;
	width: calc( 100% - 3px)!important;
}

::-webkit-scrollbar {
    height: 4px;
    width: 0px;
    background: #ccc;
}

::-webkit-scrollbar-button {
    height: 0;
    width: 0
}

input,
select,
textarea {
    -webkit-appearance: none;
    border-radius: 0;
    outline: none
}

input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="text"],
input[type="password"] {
    -webkit-appearance: none;
}

.container {
    width: 90%;
    margin: auto;
    position: relative;
}

.clearfix {
    *zoom: 1;
}

.clearfix::after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
    font-size: 0;
}

.mlr30 {
    margin: 0 30px;
}

.flex-box {
    display: flex;
    justify-content: space-between;
}

.pd030 {
    padding: 0 30px;
}

:root {
    --primary: #f00;
    --white: #fff;
}

/* header */
.aiw-header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 900;
    width: 100%;
    transition: all 0.9s ease;
}

.header-container {
    z-index: 999;
    padding: 0 2%;
    transition: all 0.9s ease;
}

.logo {
    position: absolute;
    left: 2%;
    top: 50%;
    z-index: 11;
    transform: translate(0, -50%);
}

.logo a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.logo a img {
    width: 212px;
    height: auto;
}

.logo a:hover {
    cursor: pointer;
}

.menu {
    width: 100%;
    text-align: right;
    /* position: relative; */
    float: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menu .nav {
    display: inline-block;
}

.nav>ul>li {
    float: left;
    transition: all 0.5s;
    position: relative;
    margin: 0 5px;
}

.nav>ul>li>a {
    display: block;
    position: relative;
    color: #fff;
    height: 90px;
    line-height: 90px;
    margin: 0 15px;
    transition: all 0.5s;
    font-size: 15px;
}

.nav>ul>li>a::after {
    content: '';
    width: 0;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.5s;
}

.nav>ul>li>a.on::after {
    width: 100%;
}

.nav ul li.full-item {
    position: static;
}

.submenus {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 999;
    min-width: 140px;
    height: auto;
    background-color: #f2f2f2;
    text-align: center;
    display: none;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
    padding: 20px 0;
}

.nav ul li:hover>ul.submenus {
    display: block;
}

.submenus .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.submenus>li {
    width: 100%;
    margin: 0 !important;
}

.submenus>li>a {
    height: 50px !important;
    line-height: 50px !important;
    text-align: center !important;
    display: block;
    font-size: 15px;
}

.submenus>li>a:hover {
    color: var(--primary) !important;
}

.sub-product {
    width: 33.33%;
    background-color: #fff;
    padding: 20px;
    border-right: 1px solid #f2f2f2;
    box-sizing: border-box;
}

.sub-product .sub-protxt {
    margin-top: 15px;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.sub-product .sub-protxt h2 {
    font-weight: 400;
    font-size: 15px;
    background: #f8f8f8;
}

.sub-product .sub-protxt h3 {
    background-color: var(--primary);
    color: #fff;
    font-size: 15px;
    font-weight: 400;
}

.sub-product .sub-protxt h3 i {
    display: inline-block;
    margin-left: 10px;
}

.sub-product a:hover .sub-textbox {
    -webkit-transform: translateY(-50%);
}

.aiw-header.cur,
.aiw-header.current,
.aiw-header:hover {
    background-color: #fff;
    box-shadow: 0 2px 20px 0 rgba(10, 25, 51, 0.08);
}

.aiw-header.cur .nav ul li a,
.aiw-header.current .nav ul li a,
.aiw-header:hover .nav ul li a {
    color: #333;
}

.aiw-header.cur .nav ul li a.on::after,
.aiw-header.current .nav ul li a.on::after,
.aiw-header:hover .nav ul li a.on::after {
    background: var(--primary);
}

.aiw-header.cur .nav ul li:hover a:after,
.aiw-header.current .nav ul li:hover a:after,
.aiw-header:hover .nav ul li:hover a:after {
    width: 100%;
    background: var(--primary);
}

.full-item .submenus {
    width: 100%;
}

.top-btns {
    margin-left: 40px;
}

.top-btns a {
    display: inline-block;
    vertical-align: middle;
    color: #111;
    padding: 6px 15px;
    border-radius: 30px;
    margin-left: 15px;
    font-size: 14px;
}

.top-btns a i {
    display: inline-block;
    font-size: 20px;
    vertical-align: top;
    margin-left: 10px;
}

.top-btns a.top-tel {
	background: #f12711;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to left, #f5af19, #f12711);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to left, #f5af19, #f12711); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	color: var(--white);
}

.aiw-header.cur .top-btns a.top-online,
.aiw-header.current .top-btns a.top-online,
.aiw-header:hover .top-btns a.top-online {
    border: 1px solid #999;
    color: #666;
}

.lang{
	background: #f12711;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to left, #f5af19, #f12711);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to left, #f5af19, #f12711); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	color: #fff!important;
}

.header-tabs {
    width: 260px;
    height: 324px;
    margin-left: 30px !important;
}

.header-tabs .swiper-slide {
    display: block;
    text-align: left;
}

.header-tabs .swiper-slide a {
    display: block;
    padding: 20px;
    background-color: #fff;
}

.header-tabs .swiper-slide a h3 {
    font-weight: 400;
    font-size: 15px;
    height: 30px;
    line-height: 30px;
}

.header-tabs .swiper-slide i {
    display: inline-block;
    width: 34px;
    height: 34px;
    font-size: 34px;
}

.header-tabs .swiper-slide-thumb-active a {
    background-color: var(--primary);
}

.header-tabs .swiper-slide-thumb-active a * {
    color: #fff;
}

.header-thumbs {
    width: calc(100% - 320px);
    margin-right: 30px !important;
}

.header-product {
    display: flex;
    justify-content: flex-start;
    margin-left: 5%;
    box-sizing: border-box;
}


/* banner */
.banner {
    height: 100vh;
    position: relative;
    background: #111;
    overflow: hidden;
}

.banner-container {
    height: 100%;
}

.banner-slider {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-img {
    height: 100%;
    overflow: hidden;
}

.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-tags {
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #666;
    font-family: 'Barlow-Bold';
    transition: all .4s;
}

.banner-text {
    z-index: 999;
    position: absolute;
    left: 5%;
    top: 50%;
    width: 360px;
    transform: translateY(-30%);
}

.banner-title {
    font-size: 30px;
    color: #1230ff;
    transition: all .6s;
}

.banner-title1 {
    font-size: 24px;
    color: #444;
    padding: 10px 0;
    margin-bottom: 20px;
    transition: all .8s;
}

.banner-text a.banner-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 120px;
    height: 46px;
    line-height: 46px;
    border: 1px solid #fff;
    padding: 0 30px;
    position: relative;
    text-align: left;
    color: #fff;
    border-radius: 50px;
    transition: all .9s;
	background: #f12711;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to left, #f5af19, #f12711);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to left, #f5af19, #f12711); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.swiper-pagination {
    bottom: 40px !important;
    text-align: left !important;
    box-sizing: border-box;
    padding: 0 5%;
}

.swiper-pagination-bullet {
    opacity: .5 !important;
    width: 40px !important;
    height: 30px !important;
    position: relative;
    color: #111;
    background: none !important;
    font-family: 'Barlow-Light', 'Microsoft Yahei', Arial !important;
    font-size: 14px !important;
    outline: none;
}

.swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #111 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: none !important;
    color: #111 !important;
}

.banner-cover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.banner-tags,
.banner-title,
.banner-title1,
.banner-text a.banner-btn {
    opacity: 0;
    transform: translateY(200px);
}

.swiper-slide-active .banner-tags,
.swiper-slide-active .banner-title,
.swiper-slide-active .banner-title1,
.swiper-slide-active .banner-text a.banner-btn {
    opacity: 1;
    transform: translateY(0);
}

/* index products */
.index-products {
    background: url(../images/probg.jpg) no-repeat center;
    background-size: cover;
    padding: 80px 0;
    overflow: hidden;
}

.product-category {
    display: flex;
    justify-content: space-between;
}

.pro-categorys {
    margin-right: 30px;
}

.pro-categorys h3 {
    text-align: right;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 0 20px 0;
    position: relative;
}

.pro-categorys h3 i {
    display: inline-block;
    width: 115px;
    height: 1px;
    background-color: #ccc;
    vertical-align: middle;
    margin-right: 10px;
}

.category-item a {
    display: inline-block;
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 10px 25px;
    background-color: #fff;
}

.product-lists {
    margin: 0 30px;
}

.product-lists ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 60px 0 0;
    overflow: hidden;
	box-sizing: border-box;
	margin: 0 -10px;
}

.product-lists ul li {
    width: 33.33%;
	padding: 0 10px;
    margin-bottom: 10px;
	box-sizing: border-box;
}

.product-lists ul li:nth-of-type(3n) {
    margin-right: 0!important;
}

.product-text {
    padding: 15px 0;
}

.product-text h3 {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 5px;
}

.product-text p {
    font-size: 15px;
    color: #999;
}




/* index about */
.index-about {
    position: relative;
    overflow: hidden;
    background-color: #f2f4f7;
}

.about-left {
    position: absolute;
    left: 5%;
    top: 15%;
    z-index: 10;
    width: 55%;
}

.side-title {
    position: relative;
}

.title-en i {
    display: inline-block;
    width: 25px;
    height: 17px;
    position: absolute;
    left: 0;
    top: 10px;
    background: url(../images/ti1.png) no-repeat;
}

.title-en {
    font-size: 44px;
    line-height: 44px;
    font-family: 'Barlow-Bold', 'PingFang SC', 'Microsoft Yahei', Arial;
    padding-left: 30px;
}

.title-ch {
    font-size: 30px;
    color: #26334c;
    padding: 5px 0 0 30px;
}

.about-content {
    width: 70%;
    padding: 30px;
    font-size: 14px;
    line-height: 28px;
    overflow: hidden;
}

.about-content p {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 36px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-btn {
    padding: 10px 30px;
    overflow: hidden;
}

.about-btn a {
    padding: 17px 20px;
	background: #f12711;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to left, #f5af19, #f12711);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to left, #f5af19, #f12711); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    display: inline-block;
	border-radius: 100px;
}

.about-btn a span {
    font-family: 'Barlow-Bold', 'PingFang SC', 'Microsoft Yahei', Arial;
    color: #fff;
    letter-spacing: 1px;
    margin-right: 40px;
}

.about-btn a i {
    display: inline-block;
    vertical-align: middle;
    width: 22px;
    height: 8px;
    background: url(../images/jt-r1.png) center no-repeat;
}

.about-btn a:hover span {
    letter-spacing: 0.5px;
}

.about-item {
    background-color: #fff;
    margin: 30px 30px 0 30px;
    overflow: hidden;
}

.about-item li {
    float: left;
    width: 23%;
    position: relative;
    padding: 2% 5%;
}

.about-item li::after {
    content: '';
    width: 1px;
    height: 100%;
    background: #e6e8ed;
    position: absolute;
    right: 0;
    top: 0;
}

.about-item li:last-child::after {
    width: 0;
}

.about-item li h2 {
    margin: 0;
    padding: 0;
}

.about-item li i {
    display: inline-block;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 10%;
    top: 25%;
}

.about-item li h2 strong {
    font-family: 'Barlow-Regular', 'Microsoft Yahei', Arial;
    font-size: 44px;
}

.about-item li h2 sup {
    font-size: 30px;
}

.about-item li p {
    color: #a1a7b2;
    font-size: 14px;
    margin: 5px 0;
}

.about-right {
    width: 50%;
    float: right;
    overflow: hidden;
    background: #111;
}

/* index customer */
.customer {
    background: #f5f7f7;
    padding: 80px 0;
    overflow: hidden;
}

.customer-container {
    margin: 40px 30px 0 30px;
    overflow: hidden;
}

.customer-container .swiper-slide {
    background: #fff;
}

.customer-container .swiper-slide .img-center {
    max-width: 50%;
    max-height: 70%;
}

.customer-imgbox {
    padding: 20px;
    box-sizing: border-box;
}


/* index news */
.index-news {
    padding: 80px 0;
    overflow: hidden;
}

.news-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.tab-buttons {
    margin-right: 30px;
    position: relative;
}

.tab-buttons::after {
    content: '';
    height: 2px;
    width: 100%;
    background-color: #e6e8ed;
    position: absolute;
    left: 0;
    bottom: 0;
}

.tab-buttons .tab-button {
    float: left;
    text-align: center;
    margin-left: 30px;
    font-size: 20px;
    color: #999;
    position: relative;
    cursor: pointer;
    height: 82px;
    line-height: 82px;
}

.tab-buttons .tab-button:first-child {
    margin-left: 0;
}

.tab-buttons .tab-button.cur {
    background-color: #fff;
    color: #333
}

.tab-buttons .tab-button.cur:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    z-index: 99;
}

.tabs {
    overflow: hidden;
}

.tabs .tab-item {
    padding: 50px 30px;
    display: none
}

.tabs .tab-item.active {
    display: block
}

.index-newsbox {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

/* index news left */
.index-news-left {
    width: 50%;
    padding-right: 85px;
    box-sizing: border-box;
}

.news-img {
    height: 220px;
    position: relative;
}

.news-text {
    padding: 20px 0;
}

.news-text h2 {
    font-weight: 400;
    font-size: 20px;
    padding: 2% 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.news-text p {
    color: #999;
    font-size: 15px;
}

.news-more {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    padding: 10px 0;
}

.news-more span {
    color: #106ecb;
}

.news-more a {
    font-family: 'Barlow-Regular', PingFang SC, Microsoft Yahei, Helvetica Neue, Arial;
    display: inline-block;
    position: relative;
    padding: 5px;
}

.news-more a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #e6e8ed;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
}

.news-more a:hover {
    color:var(--primary);
}

.news-more a:hover::after {
    background-color: var(--primary);
}

/* index news right */
.index-news-right {
    width: 50%;
    padding-left: 85px;
    box-sizing: border-box;
}

.news-hotline {
    border-bottom: 1px dashed #e1e1e1;
    padding-bottom: 20px;
    overflow: hidden;
}

.news-hotline a:hover h2,
.news-text a:hover h2 {
    color: var(--primary);
    transform: translateX(5px);
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
}

.news-hotline h2 {
    font-weight: 400;
    font-size: 20px;
}

.news-hotline p {
    font-size: 15px;
    color: #999;
    line-height: 24px;
    margin: 2% 0;
}

.news-lists {
    overflow: hidden;
}

.news-lists a {
    display: block;
    font-size: 20px;
    padding: 20px 0;
    border-bottom: 1px dashed #e1e1e1;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}

.news-lists a:last-child {
    border-bottom: none;
}

.news-lists a:hover {
    color: var(--primary);
    transform: translateX(5px);
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
}

.index-news-all {
    padding: 0 30px;
    overflow: hidden;
}

.index-news-all a {
    display: block;
    width: 100%;
    border: 1px solid #e6e8ed;
    color: #666e80;
    font-size: 15px;
    padding: 25px 0;
    overflow: hidden;
    text-align: center;
}

.index-news-all i {
    display: inline-block;
    vertical-align: middle;
    background: url(../images/imore.png) no-repeat;
    width: 10px;
    height: 10px;
    margin-left: 10px;
}

.index-news-all a:hover {
    border: 1px solid var(--primary);
    color: var(--primary);
}


/* footer */
.footer {
    background: #f2f4f7;
    padding-top: 80px;
    overflow: hidden;
    color: #111;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    padding-bottom: 30px;
}

.footer-left {
    width: 70%;
    margin-left: 30px;
}

.footer-left ul {
    margin-right: 4%;
    float: left;
}

.footer-left ul h3 {
    color: #26334c;
    font-size: 16px;
    font-weight: normal;
    border-bottom: 1px solid #d9dbde;
    padding-bottom: 20px;
}

.footer-left ul li {
    font-size: 14px;
    padding: 6px 0;
}

.footer-left ul li a {
    color: #666e80;
}

.footer-right {
    width: 22%;
    text-align: right;
    margin-right: 30px;
}

.footer-ti {
    font-size: 14px;
    color: #666e80;
    padding: 10px 0;
}

.footer-tel {
    font-family: 'Barlow-Bold';
    font-size: 30px;
    color: #26334c;
}

.footer-btn {
    margin-top: 10px;
}

.footer-btn a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #a1a7b3;
    margin-left: 5px;
    position: relative;
    vertical-align: middle;
}

.footer-btn a>img {
    width: 60% !important;
}

.footer-btn a:hover {
    background-color: var(--primary);
}

.footer-copyright {
    border-top: 1px solid #d9dbde;
    font-size: 14px;
    color: #a1a7b2;
    padding: 30px 0 30px;
    margin: 30px;
}

.footer-copyright a {
    font-family: 'Barlow-Regular', Arial, 'Microsoft Yahei';
    color: #a1a7b2;
}

.design {
    float: right;
}

/* online service */
@font-face {
    font-family: 'fontello';
    src: url('../fonts/fontello.eot?83928082');
    src: url('../fonts/fontello.eot?83928082#iefix') format('embedded-opentype'), url('../fonts/fontello.woff?83928082') format('woff'), url('../fonts/fontello.ttf?83928082') format('truetype'), url('../fonts/fontello.svg?83928082#fontello') format('svg');
    font-weight: normal;
    font-style: normal;
}

.demo-icon {
    font-family: "fontello" !important;
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cndns-right *:hover {
    text-decoration: none;
}

.cndns-right * {
    text-decoration: none;
}

.cndns-right li {
    list-style: none;
}

.cndns-right #zixunUl {
    margin: 0;
    padding: 0;
}

.cndns-right {
    position: fixed;
    right: 10px;
    top: 60%;
    margin-top: -100px;
    z-index: 100;
    font-family: Arial, "Microsoft YaHei" !important;
    background: #f1f1f1;
    border: 1px solid #e0e0e0;
    filter: alpha(opacity=9);
    -moz-opacity: 0.9;
    -khtml-opacity: 0.9;
    opacity: 0.9;
    z-index: 99999;
}

.cndns-right i {
    font-style: normal !important;
}

.cndns-right-meau {
    position: relative;
}

.cndns-right-btn {
    width: 55px;
    height: 60px;
    text-align: center;
    position: relative;
    text-decoration: none;
    border-top: 1px solid #e0e0e0;
	display: block;
	box-sizing: border-box;
	padding-top: 5px;
}

.cndns-right-btn:hover {
    background: #fff;
}

.cndns-right-btn span {
    color: #333;
    font-size: 24px !important;
    line-height: 32px;
	
}

.cndns-right-btn sup {
    display: block;
    min-width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    color: #fff;
    border-radius: 50%;
    background-color: #333;
    position: absolute;
    left: -12px;
    top: -12px;
}

.cndns-right-btn p {
    color: #333;
    font-size: 12px;
    line-height: 18px;
    padding-top: 0px;
    margin: 0;
    text-decoration: none;
    padding-bottom: 10px;
}

.cndns-right-meau:hover .cndns-right-btn p {
    display: block;
    text-decoration: none;
}

.meau-car .cndns-right-btn {
    border-color: #333;
    margin-bottom: 20px;
    text-decoration: none;
}

.meau-car .cndns-right-meau:hover .cndns-right-btn {
    background-color: #333;
    text-decoration: none;
}

.meau-car .cndns-right-meau:hover .cndns-right-btn span {
    color: #fff;
    display: block;
    text-decoration: none;
}

.meau-code .sev-t img {
    margin: 0;
    padding: 0;
}

.meau-car .cndns-right-btn span {
    color: #333;
}

.meau-top .cndns-right-btn span {
    font-size: 24px !important;
    line-height: 32px;
}

.meau-top .cndns-right-btn i {
    display: block;
    color: #333;
    font-size: 12px;
}

.meau-top.cndns-right-meau:hover .cndns-right-btn {}

.cndns-right-box {
    position: absolute;
    top: -15px;
    right: 62px;
    padding-right: 25px;
    display: none;
}

.cndns-right-box .box-border {
    border-top: 4px solid #333;
    border-left: 1px solid #f1f1f1;
    border-right: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    padding: 20px;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
    box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
    position: relative;
    overflow: hidden;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.cndns-right-box .box-border .arrow-right {
    display: block;
    width: 13px;
    height: 16px;
    background: url(../images/arrow.png) no-repeat;
    position: absolute;
    right: -13px;
    top: 26px;
}

.cndns-right-box .box-border .sev-t span {
    font-size: 42px;
    float: left;
    display: block;
    line-height: 56px;
    margin-right: 12px;
    color: #d3d3d3;
}

.cndns-right-box .box-border .sev-t p {
    float: left;
    color: #333;
    font-size: 22px;
    line-height: 28px;
    padding: 0;
    margin: 0;
}

.cndns-right-box .box-border .sev-t p i {
    display: block;
    font-size: 14px;
    color: #888;
    font-style: normal !important;
}

.cndns-right-box .box-border .sev-b {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #e4e4e4
}

.cndns-right-box .box-border .sev-b h4 {
    color: #666;
    font-size: 14px;
    font-weight: normal;
    padding-bottom: 15px;
}

.cndns-right-box .box-border .sev-b li {
    float: left;
    width: 50%;
}

.cndns-right-box .box-border .sev-b li a {
    display: inline-block;
    color: #888;
    font-size: 14px;
    padding-left: 43px;
    background: url(../images/zxqq.png) no-repeat left 3px;
    line-height: 36px;
}

.cndns-right-box .box-border .sev-b li a:hover {
    color: #333
}

.meau-sev .cndns-right-box .box-border {
    width: 300px;
}

.meau-contact .cndns-right-box .box-border {
    width: 230px;
}

.cndns-right-meau:hover .cndns-right-box {
    display: block
}

.meau-code .cndns-right-box {
    top: inherit;
    bottom: -35px;
}

.meau-code .cndns-right-box .box-border {
    width: 156px;
    text-align: center;
}

.meau-code .cndns-right-box .box-border i {
    display: block;
    color: #666;
    font-size: 14px;
    line-height: 22px;
}

.meau-code .cndns-right-box .box-border .arrow-right {
    top: inherit;
    bottom: 50px;
}

.meau-zs .cndns-right-btn {
    background-color: #333;
    color: #fff;
    margin-top: 80px;
    border-color: #333;
}

.meau-zs .cndns-right-btn span {
    color: #fff;
}

.meau-zs .cndns-right-btn p {
    color: #fff;
}

.sev-t {
    overflow: hidden;
}

.cndns-right-btn span.icon-qq {
    color: #e69c28;
    animation: shadow .5s linear infinite;
    animation: rotate .5s linear infinite;
}


/* -----------------------------------------------------------------------------------------------------------
page css 
data:2022-01-17
--------------------------------------------------------------------------------------------------------------*/
.page-banner {
    height: 550px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.page-banner .text {
    position: absolute;
    left: 5%;
    top: 50%;
    width: 40%;
    z-index: 10;
    color: #fff;
    margin-left: 30px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
}

.bn-title {
    font-size: 36px;
}

.bn-entitle {
    font-size: 30px;
    font-family: 'Montserrat-Bold', 'Microsoft Yahei', Arial;
	text-transform: uppercase;
}

.banner-nav {
    position: absolute;
    width: 100%;
    bottom: 10%;
    z-index: 99;
}

.banner-navbox {
    margin-left: 30px;
    margin-right: 30px;
}

.banner-navbox a {
    display: inline-block;
    font-size: 16px;
    margin-right: 3%;
    position: relative;
    padding-bottom: 20px;
    color: #fff;
    opacity: .6;
    transition: all .4s;
    z-index: 999;
}

.banner-navbox a.cur,
.banner-navbox a:hover {
    opacity: 1;
    cursor: pointer;
}

.banner-navbox a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #fff;
}

.banner-navbox a.cur::after,
.banner-navbox a:hover::after {
    width: 100%;
}

.banner-contact {
    position: absolute;
    right: 5%;
    bottom: 10%;
    width: 240px;
    padding: 30px 20px;
    border: 2px solid rgba(255, 255, 255, .3);
    z-index: 99;
    text-align: right;
    color: #fff;
}

.banner-contact p {
    font-size: 14px;
    opacity: .8;
    padding-bottom: 5px;
}

.banner-contact h3 {
    font-size: 16px;
    font-family: 'Montserrat-Bold', 'Microsoft Yahei', Arial;
}

.banner-tel {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}

/* page main */
.page-main {
    padding: 60px 0;
}

.page-products {
    padding-top: 150px;
    background-color: #f8f8f8;
}

/* article list */
.page-position {
    margin: 0px 30px 50px;
    display: flex;
    align-items: center;
}

.page-position i {
    font-size: 20px;
    display: inline-block;
    margin-right: 10px;
}

.page-position a {
    position: relative;
    display: inline-block;
    margin-right: 22px;
}

.page-position a::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: url(../images/position.png) no-repeat center;
    background-size: 40%;
}

.page-position a:last-child::after {
    display: none;
}

.main-left {
    margin-left: 30px;
    float: left;
    width: calc( 100% - 480px );
}

.article-list li {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    margin-bottom: 60px;
}

.article-list li .a-lt {
    width: 80%;
}

.article-list li .a-lt h2 {
    font-weight: 400;
}

.article-list li .a-lt h2 a:hover {
    color: #f30000;
}

.article-list li .a-gt {
    margin-left: 40px;
    width: 365px;
}

.a-author {
    font-size: 14px;
    color: #999;
    padding: 20px 0 0;
}

.a-author span {
    display: inline-block;
    margin-right: 5px;
}

.a-note {
    font-size: 15px;
    line-height: 26px;
    margin: 30px 0 20px;
    color: #666;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.a-more span a {
    color: #f30000;
    text-decoration: underline;
}


.main-right {
    margin-right: 30px;
    float: right;
    width: 350px;
}

.side-box {
    background: #f5f5f5;
    padding: 50px 40px;
    margin-bottom: 20px;
}

.side-title {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 18px;
}

.side-list li {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    line-height: 30px;
    margin-bottom: 15px;
}

.side-list li a {
    color: #666;
}

.side-list li a:hover {
    color: #C00
}

.side-list li:last-child {
    margin-bottom: 0;
}


/* article content */
.article {
    overflow: hidden;
}

.article-title {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
}

.article-info {
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #dfdfdf;
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.article-info span {
    display: inline-block;
    margin-right: 15px;
}

.contents {
    color: #333;
    line-height: 2;
    margin-bottom: 50px;
}

.contents p {
    margin-bottom: 20px;
}

.contents img {
    display: block;
    text-align: center;
    width: 100% !important;
    height: auto !important;
}

.article-copy {
    background: #f6f6f6;
    overflow: hidden;
    border-radius: 5px;
    padding: 20px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 15px;
}

.article-copy a {
    color: #666;
}

.article-copy a:hover {
    color: #106ecb;
}

.article-prev {
    display: flex;
    justify-content: space-between;
}

.article-prev ul li {
    margin-bottom: 10px;
}

.back-btn a {
    display: inline-block;
    border: 1px solid #808080;
    color: #808080;
    width: 140px;
    text-align: center;
    padding: 10px 0;
    transition: all .5s;
}

.back-btn a:hover {
    border: 1px solid #106ecb;
    background-color: #106ecb;
    color: #fff;
}


/* product list */
.product-banner {
    height: 650px;
    position: relative;
    background-position: center;
    background-size: cover;
}

.product-slogan {
    position: absolute;
    top: 50%;
    text-align: center;
    width: 100%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.product-slogan h2 {
    font-size: 26px;
    font-weight: 400;
    color: #fff;
    line-height: 50px;
    padding: 0 80px;
}


.product-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.product-box .product-categoty {
    width: 40%;
    margin-left: 30px;
    position: sticky;
    top: 120px;
}

.product-categoty>dl {
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.product-categoty>dl>dt {
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product-categoty>dl>dt a.cur {
    color: var(--primary);
}

.product-categoty>dl>dd {
    padding: 15px 0 15px 20px;
    margin: 0;
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.product-side {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product-side>li {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border: 1px solid #eee;
    overflow: hidden;
    width: 48%;
    margin-bottom: 4%;
}

.p-sidetext {
    padding: 30px;
}

.p-sidetext h2 {
    font-size: 20px;
}

.p-sidetext h3 {
    font-size: 15px;
    font-weight: 400;
    color: #666;
    padding: 10px 0 0;
}

.p-sidemore {
    border-top: 1px solid #ddd;
    width: 100%;
    display: inline-block;
    margin-top: 30px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
}

.product-info {
    width: 55%;
    overflow: hidden;
}

.product-title {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    margin-bottom: 20px;
}

.product-title i {
    color: #111;
    display: inline-block;
    margin-left: 10px;
    font-style: normal;
    font-weight: 400;
}

.product-point {
    margin-bottom: 30px;
    color: var(--primary);
}

.product-desc {
    line-height: 1.6;
    margin-bottom: 40px;
    color: #666;
}

.details-text>ol>li {
    position: relative;
    padding-left: 20px;
    line-height: 32px;
}

.details-text>ol>li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 13px;
}

.product-btn a {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    margin-right: 10px;
    padding: 0 40px;
    color: #fff;
}

.product-btn a i {
    display: inline-block;
    margin-left: 10px;
}

.product-btn a.more {
    background: #e63939;
}

.product-btn a.more:hover {
    background: #c43131;
}

.product-btn a.online {
    background: var(--primary);
}

.product-btn a.online:hover {
    background: #4d4dbb;
}

.aiw_pages {
    position: relative;
    width: 100%;
}

.aiw_pages ul.pagination {
    display: flex;
    justify-content: center;
}

.aiw_pages ul.pagination li {
    border: 1px solid #ddd;
    margin: 0 5px;
    width: 55px;
    height: 45px;
    line-height: 45px;
    text-align: center;
}

.aiw_pages ul.pagination li a {
    display: block;
}

.aiw_pages ul.pagination li:hover,
.aiw_pages ul.pagination li.active {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
}

.aiw_pages ul.pagination li:hover * {
    color: #fff;
}

.aiw_pages ul.pagination li.disabled {
    display: none;
}


/* product content */
.product-content {
    overflow: hidden;
    margin: 0 30px;
}

.product-content .pro-gallery {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.product-pics {
    width: 20%;
    height: 0;
    padding-bottom: 44.56%;
    position: relative;
}

.product-thumbs {
    width: 100%;
    height: 100%;
    position: absolute !important;
    left: 0;
    top: 0;
}

.product-gallery {
    margin-right: 20px !important;
    width: calc(80% - 20px);
}

.product-gallery .swiper-slide img {
    border: 1px solid #eee;
    box-sizing: border-box;
}

.product-thumbs .swiper-slide {
    cursor: pointer;
    box-sizing: border-box;
    border: 1px solid #ddd;
    display: flex;
}

.product-thumbs .swiper-slide-thumb-active {
    border: 1px solid #7effc9;
}

.swiper-button-next,
.swiper-button-prev {
    outline: none;
}

.details-prev {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.details-prev ul {
    width: calc(100% - 140px);
}

.details-prev .back-btn a {
    width: 140px;
    background-image: -webkit-linear-gradient(58deg, rgb(168, 255, 120) 0%, rgb(120, 255, 214) 100%);
    border: none;
}

.details-prev .back-btn a:hover {
    color: #111;
}

/* right */
.product-rm {
    font-size: 15px;
    color: #999;
}

.product-rt {
    font-size: 36px;
}

.product-rdesc {
    line-height: 1.6;
    padding: 20px 0;
}

.product-video {
    display: flex;
    align-items: center;
    border-top: 1px dashed #e7e7e7;
    border-bottom: 1px dashed #e7e7e7;
    padding: 15px 0;
    cursor: pointer;
}

.product-video:hover .product-vtxt {
    transform: translateX(5px);
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
}

.product-vtxt {
    margin-left: 20px;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

.product-vtxt .product-vt1 {
    font-size: 15px;
    color: #999;
    text-transform: uppercase;
}

.product-vtxt .product-vt2 {
    font-size: 22px;
    color: #333;
}

.product-buy {
    display: flex;
    margin-top: 30px;
    margin-bottom: 20px;
}

.product-buy a {
    border: 1px solid #999;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-right: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    position: relative;
}

.product-lx {
    height: 70px;
    line-height: 70px;
    width: 100%;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

.product-lxbox {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-buy a.zx-btn i {
    font-size: 20px;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    display: inline-block;
    position: relative;
}

.product-buy a.zx-btn:hover i {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.product-buy a.order-btn {
    flex: 1;
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 70px;
    margin-right: 0;
    background-color: #106ecb;
    color: #fff;
    border: 1px solid #106ecb;
    font-size: 20px;
}

.product-buy a.order-btn i {
    font-size: 30px;
    margin-right: 10px;
}

.product-buy a.order-btn:hover .product-lx {
    transform: translateY(-70px);
    -webkit-transform: translateY(-70px);
    -moz-transform: translateY(-70px);
    -ms-transform: translateY(-70px);
    -o-transform: translateY(-70px);
}


.product-buy a.chat-show:hover .wechat-box {
    opacity: 1;
}

.wechat-box {
    position: absolute;
    top: -140px;
    background-color: #fff;
    padding: 5px;
    box-shadow: 0 0 5px rgb(0 0 0 / 15%);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    opacity: 0;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    width: 120px;
}

.product-order {
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.product-order a {
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 20px;
    height: 70px;
}

.product-order a:hover span {
    transform: translateX(5px);
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
}

.product-order i {
    font-size: 30px;
    display: inline-block;
    margin-right: 20px;
}

.order-l {
    display: flex;
    align-items: center;
}

.order-r>i {
    background-color: #fff;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 100%;
    color: #666;
    margin-right: 0;
    font-size: 22px;
}

.share {
    margin-top: 20px;
    position: relative;
    display: flex;
    align-items: center;
}

.share i {
    display: inline-block;
    font-size: 25px;
    margin-right: 5px;
}

.share-box {
    width: 140px;
    height: 140px;
    position: absolute;
    top: 35px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .15);
    z-index: 5;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
    display: none;
}

.share:hover .share-box {
    display: block;
}

.share:hover i {
    color: var(--primary);
}

/* product details */
.product-details {
    padding: 30px;
    background-color: #fff;
    margin-top: 50px;
}

.details-title {
    margin-bottom: 20px;
}

.details-info {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.details-info ul {
    width: 80%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.details-info ul li {
    width: 33.33%;
    margin: 5px 0;
    font-size: 15px;
}

.details-info ul li label {
    color: #999;
}

.detail-tel {
    text-align: center;
    font-size: 20px;
    line-height: 1.6;
}

.detail-tel span {
    display: block;
    font-size: 16px;
    color: #666;
}

.detail-tel span i {
    display: inline-block;
    margin-right: 10px;
}

.details-content {
    border-top: 1px solid #ddd;
    margin-top: 20px;
    padding-top: 20px;
}

.details-contact {
    margin-bottom: 45px;
    background-color: #f8f8f8;
}

.dc-box {
    padding: 35px;
}

.dc-text {
    font-size: 26px;
    font-weight: bold;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
}

.dc-box p {
    font-family: 'Barlow-Bold';
    font-size: 20px;
    padding: 5px 0;
    overflow: hidden;
}

.dc-box p i {
    font-size: 20px;
    margin-right: 15px;
}

.dc-box a.to-message {
    margin-top: 30px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}


/* details common */
.details-advtitle h2 {
    font-size: 50px;
    color: #333;
    font-weight: 700;
    padding: 50px 0 15px;
    line-height: 1;
    text-align: center;
}

.details-advtitle p {
    text-align: center;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 50px;
    font-size: 20px;
}

.details-advbox {
    background-color: #f8f8f8;
    padding: 80px 0 50px 0;
    margin-bottom: 45px;
    position: relative;
}

.details-advbox::after {
    content: '';
    height: 10px;
    background-color: var(--primary);
    width: 75%;
    position: absolute;
    top: 0;
    left: 0;
}

.details-advbox::before {
    content: '';
    height: 10px;
    background-color: #141414;
    width: 25%;
    position: absolute;
    top: 0;
    right: 0;
}

.deco-title {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    padding: 50px 0;
    position: relative;
    border-bottom: 1px solid #ddd;
}

.details-advbox ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.details-advbox ul li {
    width: 50%;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
}

.details-advbox ul li h3 {
    font-size: 40px;
}

.details-advbox ul li span {
    color: #666;
    display: inline-block;
    padding: 10px 0;
}

.details-advbox ul li .dadvtext {
    text-align: left;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.choose-item {
    display: flex;
    background-color: #f8f8f8;
    padding: 50px;
    box-sizing: border-box;
}

.choose-item:nth-of-type(2) {
    background-color: #fff;
}

.choose-left {
    width: 25%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-right: 1px solid #ddd;
}

.cl-icons i {
    font-size: 55px;
    margin-right: 20px;
    color: var(--primary);
}

.cl-text {
    font-size: 40px;
    font-weight: bold;
    display: flex;
    align-items: center;
    color: var(--primary);
}

.choose-right {
    font-size: 26px;
    padding: 20px 0 20px 50px;
    line-height: 1.6;
    box-sizing: border-box;
    width: 75%;
}

/* related product */
.related-product {
    margin-top: 75px;
}

.related-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.related-title .rpt-l {
    font-size: 40px;
}

.related-title .rpt-l span {
    font-size: 20px;
    color: #777;
    display: inline-block;
    margin-left: 10px;
    font-family: 'ProximaNova-Regular', 'Microsoft Yahei';
}

.related-title .rpt-r a {
    position: relative;
    border-bottom: 1px solid #106ecb;
    display: inline-block;
    padding: 5px 0;
}

.related-box a {
    border: 1px solid #eee;
    display: block;
    text-align: center;
    padding: 0 0 20px;
    box-sizing: border-box;
}

.related-img {
    margin-bottom: 20px;
}

.related-text {
    margin-bottom: 5px;
}

.related-text1 {
    font-size: 14px;
    color: #999;
}

.related-contorl {
    position: relative;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.related-contorl i {
    font-size: 30px;
}

.related-button-prev,
.related-button-next {
    outline: none;
    cursor: pointer;
}

.related-contorl .related-pagination {
    position: static;
    width: auto !important;
    padding: 0 30px;
}

.related-contorl .related-pagination .swiper-pagination-bullet {
    border: 3px solid #ccc !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 100% !important;
    outline: none;
}

.related-contorl .related-pagination .swiper-pagination-bullet::after {
    height: 0;
}

.related-contorl .related-pagination .swiper-pagination-bullet-active {
    border: 3px solid var(--primary) !important;
}

/* online order */
.online-order {
    margin: 0 30px;
    overflow: hidden;
    padding: 80px 0 30px;
}

.order-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
}

.order-title p {
    font-size: 20px;
    color: #777;
    font-family: 'ProximaNova-Regular';
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

.order-item .ipt-text {
    width: 49%;
    padding: 20px 15px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.order-item .ipt-area {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px 15px;
    box-sizing: border-box;
    font-family: "Microsoft Yahei";
}

.order-item .ipt-btn {
    width: 49%;
    padding: 20px 15px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #eee;
    cursor: pointer;
    font-size: 16px;
}

.ipt-submit {
    background-image: -webkit-linear-gradient(58deg, rgb(120, 255, 214) 0%, rgb(168, 255, 120) 100%);
    color: #111;
    border: 1px solid #95ff9f !important;
}

.verif-code {
    width: 49%;
    display: flex;
    justify-content: space-between;
}

.verif-code .ipt-text {
    width: 60%;
}

.order-tips {
    font-size: 14px;
    color: #777;
}

.ipt-text:focus,
.ipt-area:focus {
    border: 1px solid #106ecb;
}

.noEdit {
    color: #999;
}

.noEdit:focus {
    border: 1px solid #ccc;
}

/* page guide */
.page-guide {
    display: flex;
    justify-content: space-between;
    margin: 30px;
    flex-wrap: wrap;
}

.page-guide a {
    width: 49%;
    height: 270px;
    display: inline-block;
    background-size: cover;
    background-position: center;
}

.guide-item {
    display: inline-block;
    padding: 50px;
    box-sizing: border-box;
    width: 100%;
}

.page-guide a:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
}

.guide-text {
    text-align: left;
}

.guide-text h5 {
    font-size: 30px;
    text-transform: uppercase;
    color: #fff;
}

.guide-text p {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
}

.guide-text p i {
    font-size: 30px;
    display: inline-block;
    margin-right: 5px;
}

/* contact css */
.single-box {
    margin: 0 30px;
}

.contact-box {
    display: flex;
    justify-content: space-between;
}

.contact-text {
    padding: 50px;
}

.contact-title {
    margin-bottom: 40px;
}

.contact-title h3 {
    font-size: 40px;
    font-weight: 400;
    font-family: 'ProximaNova-Regular';
}

.contact-title h4 {
    font-size: 26px;
    position: relative;
    font-weight: 400;
}

.contact-title h4::after {
    content: '';
    position: absolute;
    left: 28%;
    top: 50%;
    width: 20px;
    height: 3px;
    background-color: #106ecb;
}

.contact-left {
    width: 45%;
    background-color: #f5f5f5;
}

.contact-name {
    font-size: 24px;
    border-bottom: 2px solid #eee;
    padding: 20px 0;
    display: flex;
    align-items: center;
}

.contact-name i {
    color: var(--primary);
    font-size: 36px;
    display: inline-block;
    margin-right: 15px;
}

.contact-tels {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    overflow: hidden;
}

.contact-tels li {
    width: 45%;
}

.contact-tels li p {
    font-size: 16px;
    color: #666;
    margin: 5px 0;
}

.contact-tels li strong {
    font-size: 22px;
    color: #222;
    font-family: 'Barlow-Bold';
}

.contact-other {
    color: #666;
    font-size: 15px;
    line-height: 30px;
    overflow: hidden;
}

.to-message {
    background-color: #ddd;
    padding: 20px 40px;
    display: inline-block;
    margin-top: 50px;
}

.to-message i {
    display: inline-block;
    background-color: #fff;
    border-radius: 100%;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    margin-left: 20px;
    color: #666;
}

.to-message:hover {
    color: #fff;
    background-color: #106ecb;
}

.contact-right {
    background-color: #eee;
    width: 55%;
}

.contact-map {
    height: 500px;
}


/* message */
.contact-message {
    display: flex;
    justify-content: space-between;
    padding: 90px 0;
    overflow: hidden;
}

.message-tips {
    border-top: 2px solid #ddd;
    padding: 20px 0;
    margin-left: 27px;
    line-height: 36px;
}

.message-tips strong {
    font-family: 'Barlow-Bold';
    font-size: 26px;
}

.message-right {
    width: 55%;
    overflow: hidden;
}

.message-item {
    margin-bottom: 40px;
}

.message-box ul {
    display: flex;
    justify-content: space-between;
}

.message-box ul li {
    width: 45%;
}

.message-box ul li label,
.message-item>label {
    display: block;
    font-size: 14px;
    color: #26334c;
    padding: 10px 0;
}

.message-box ul li .msg-input {
    display: block;
    width: 100%;
    border: none;
    background: none;
    border-bottom: 1px solid #e6e8ed;
    padding: 20px 0;
    box-sizing: border-box;
    font-size: 16px;
}

.msg-area {
    display: block;
    width: 100%;
    border: none;
    background: none;
    border-bottom: 1px solid #e6e8ed;
    padding: 20px 0;
    box-sizing: border-box;
    font-family: 'Microsoft Yahei';
    font-size: 16px;
}

.message-box ul li .msg-input:focus,
.msg-area:focus {
    border-bottom: 1px solid #106ecb;
}

.msg-btn {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
    padding: 15px 60px;
    font-size: 18px;
    cursor: pointer;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
}

.msg-btn:hover {
    background-color: var(--primary);
    border: 1px solid var(--primary);
}

.bg-gray{
	background-color: #ccc;
	border: 1px solid #ccc;
	color: #666;
}


/* join us */
.recruit {
    background-color: #f7f8fa;
    padding: 80px 0;
    overflow: hidden;
}

.recruit-box {
    margin: 0 30px;
}

.recruit-list {
    margin-top: 40px;
}

.recruit-side {
    margin-bottom: 20px;
}

.recruit-side a {
    display: block;
    transition: all 0s;
}

.recruit-side a * {
    transition: all 0s;
}

.rec-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 2% 5%;
    cursor: pointer;
}

.rec-title h3 {
    font-weight: 400;
    width: 35%;
}

.rec-info span {
    display: inline-block;
    font-size: 14px;
    color: #999;
}

.rec-info span::after {
    content: '/';
    display: inline-block;
    padding: 0 15px;
}

.rec-info span:last-child::after {
    content: '';
}

.rec-title h5 {
    font-weight: 400;
    display: flex;
    align-items: center;
}

.rec-title h5 em {
    font-style: normal;
    font-size: 15px;
    margin-right: 15px;
}

.rec-title h5 i {
    font-size: 18px;
}

.recruit-side .children {
    background-color: #fff;
    border-top: 1px solid #ededed;
    padding: 3% 5%;
    font-size: 14px;
    line-height: 24px;
    color: #666;
    display: none;
}

.recruit-side .children.toggleShow {
    display: block;
}

/* about us */
.section-box {
    border-top: 1px solid #ddd;
    text-align: center;
    padding: 110px 0;
    overflow: hidden;
}

.about-info {
    text-align: center;
}

.about-title{
	text-align: center;
}

.about-title h2 {
    font-size: 36px;
    text-transform: uppercase;
}

.about-title h3 {
    font-size: 30px;
}

.about-title h3 i {
    display: inline-block;
    height: 1px;
    width: 28px;
    background-color: #ccc;
    vertical-align: middle;
    margin: 0 20px;
}

.company-content {
    margin: 50px 30px 0;
}

.company-text {
    width: 70%;
    text-align: left;
    margin: 0 auto;
    overflow: hidden;
}

.company-text p {
    margin-bottom: 20px;
    line-height: 35px;
    font-size: 18px;
}

.about-banner {
    background-color: #eee;
    background-size: cover;
    background-position: center;
    height: 650px;
    position: relative;
}

.about-banner::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/wenli.png) center;
    opacity: .5;
}

.about-slogan {
    text-align: center;
    padding: 30px 0;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 9;
}

.about-slogan h2 {
    font-size: 40px;
    font-weight: 400;
    color: #fff;
	padding: 0 15%;
}

.about-slogan h3 span {
    font-size: 50px;
    position: relative;
    color: #fff;
}

.about-slogan h3 span::after {
    content: ' ';
    height: 35px;
    width: 100%;
    background: var(--primary);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -10;
}

.about-side {
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    display: flex;
    margin-left: 30px;
    margin-right: 30px;
}

.about-sidebox {
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    overflow: hidden;
}


.company-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-item li {
    width: 25%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    vertical-align: middle;
    height: 160px;
}

.company-num {
    display: inline-block;
    vertical-align: middle;
}

.company-item li h4 {
    display: flex;
    align-items: flex-start;
}

.company-item li h4 strong {
    font-size: 50px;
    color: #141414;
    font-weight: 400;
    font-family: 'Barlow-Bold', 'Microsoft Yahei', Arial;
}

.company-item li h4 sup {
    margin-left: 10px;
    font-weight: 400;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    background-color: var(--primary);
    border-radius: 100%;
}

.company-item li p {
    color: #111;
    padding: 10px 0;
    font-size: 18px;
}

.company-pic {
    display: flex;
    justify-content: space-between;
    margin: 50px 30px;
    box-sizing: border-box;
}

.company-left,
.company-right {
    width: 50%;
}

.company-left ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.company-left ul li {
    margin-right: 20px;
    margin-bottom: 20px;
    width: calc(50% - 20px);
}

.company-left ul li h4 {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 400;
    background-color: rgba(0, 0, 0, .5);
    color: #fff;
    text-align: center;
    width: 100%;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

.company-left ul li:hover h4 {
    background-color: var(--primary);
}

.company-go {
    position: absolute;
    right: 0;
    bottom: 20%;
    display: flex;
    height: 110px;
    background-color: rgba(0, 0, 0, .8);
}

.go-text {
    width: 270px;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.go-text h5 {
    font-size: 20px;
    margin-bottom: 5px;
}

.go-text p {
    font-size: 16px;
}

.go-icon {
    background-color: rgba(16, 110, 203, .8);
    width: 110px;
    height: 110px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.go-icon i {
    font-size: 50px;
    color: #fff;
}

.history {
    background: url(../images/history.jpg) center no-repeat;
    background-size: cover;
    ;
}

.history .about-title {
    color: #fff;
}

.history-swiper {
    color: #fff;
    background: url(../images/line.png) repeat-x left 88px;
    text-align: left;
    margin-top: 50px;
}

.history-data span {
    display: block;
    font-size: 40px;
    font-family: 'Barlow-Regular', 'Microsoft Yahei', Arial;
}

.history-data i {
    position: relative;
    display: block;
    width: 2px;
    height: 30px;
    background-color: #666;
    margin: 20px 0 0 3px;
}

.history-data i::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 100%;
    position: absolute;
    left: -3px;
    bottom: 0;
    background-color: #666;
}

.history-swiper .swiper-slide:hover .history-text {
    border: 2px solid #08d8e5;
}

.history-swiper .swiper-slide:hover .history-data {
    color: #08d8e5;
}

.history-swiper .swiper-slide:hover .history-data i,
.history-swiper .swiper-slide:hover .history-data i::before {
    background-color: #08d8e5;
}

.history-swiper .swiper-slide:hover .history-text li {
    color: #08d8e5;
    border-bottom: 1px solid #08d8e5;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary) !important;
}

.history-text {
    margin-top: 19px;
    padding: 5%;
    position: relative;
    border: 2px solid #6f7483;
}

.history-text li {
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.history-text li:last-child {
    border-bottom: none !important;
}

.history-text li span {
    display: block;
    margin-bottom: 10px;
    font-family: 'Barlow-Regular', 'Microsoft Yahei', Arial;
}

.history-text li p {
    font-size: 14px;
    line-height: 24px;
}

.move-tips {
    color: #999;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.move-tips i {
    font-size: 30px;
    margin-right: 10px;
}

.honor-box {
    margin: 50px 30px 0;
    overflow: hidden;
}

.honor-box .honor-swiper .swiper-slide img {
    border: 1px solid #ddd;
    box-sizing: border-box;
}

/* page area */
#page-area {
    background-color: #151515;
}

#page-area .about-title * {
    color: #fff;
}

.area-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 50px;
}

.area-left {
    width: 50%;
}

.area-text {
    font-size: 20px;
    color: #fff;
    text-align: left;
    line-height: 2;
    padding: 50px 0 100px 0;
    margin-left: 50px;
}

.area-right {
    width: 50%;
    position: relative;
}

.area-map {
    position: absolute;
    width: 100%;
    top: 0;
}

.p-customerbox {
    display: flex;
    margin: 50px 30px 0;
}

.p-customerlist li {
    float: left;
    width: calc(14.28% - 1px);
    border: 1px solid #ddd;
    padding: 15px 0;
    overflow: hidden;
    margin-left: -1px;
    margin-top: -1px;
    display: inline-block;
    text-align: center;
}

.p-customerlist li img {
    vertical-align: middle;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.p-customerlist li:hover img {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
}


/* work station */
.station {
    padding: 60px 0;
    box-sizing: border-box;
}

.station-box {
    padding: 0 30px;
}

.titles{
    text-align: center;
    font-size: 22px;
    margin-bottom: 40px;
}

.pain-spot{
    padding: 0 30px;
    box-sizing: border-box;
}

.pain-spot ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 0 -15px;
}

.pain-spot ul li{
    width: 50%;
    box-sizing: border-box;
    padding: 0 15px;
	margin-bottom: 30px;
}

.pain-item{
    border: 1px solid #ddd;
    box-sizing: border-box;
    padding: 20px;
    height: 100%;
    border-radius: 8px;

}

.pain-spot ul li h3{
    margin-bottom: 20px;
    text-align: left;
}

.adv-spot{
    background: url(../images/webpic3.png) center;
	background-size: cover;
    overflow: hidden;
    padding: 80px 0;
}

.adv-items{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: stretch;
	margin-top: 50px;
}

.adv-items li{
	width: 50%;
	box-sizing: border-box;
	padding: 0 30px;
	margin-bottom: 30px;
}

.adv-box{
	padding: 20px;
	-webkit-box-shadow: 8px 0 8px 0 rgba(0, 104, 171, .1);
	box-shadow: 8px 0 8px 0 rgba(0, 104, 171, .1);
	height: 100%;
	box-sizing: border-box;
	border-radius: 20px;
	background-color: var(--white);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

.adv-box .advicon{
	width: 120px;
	height: 120px;
	display: inline-block;
	border: 1px solid #eee;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.adv-box .advicon img{
	max-width: 66px;
}

.adv-box .advtext{
	width: calc( 100% - 140px );
}

.adv-box .advtext p{
	color: #666;
}

.adv-items li h3{
	font-size: 24px;
	margin-bottom: 15px;
}

.parameter{
	padding: 80px 0;
}

.device-box{
	padding: 0 30px;
	margin-top: 40px;
}

.device .img-box{
	border: 1px solid #ddd;
	border-radius: 16px;
}

.parameter-box{
	margin-top: 50px;
}

.table-block{
	width: 100%;
	border-left: 1px solid #eee;
	border-top: 1px solid #eee;
	border-collapse: collapse;
}

.table-block tr th{
	background-color: #EBF3FF;
}

.table-block tr:nth-of-type(2n){
	background-color: #f7f8f9;
}

.table-block tr th,
.table-block tr td{
	border-right: 1px solid #eee;
	border-bottom: 1px solid #eee;
	text-align: center;
	padding: 15px 10px;
}


/*baidu map style*/
.contact-map {
    overflow: hidden;
    background: #f1f1f1;
    position: relative;
    clear: both;
}

.madd {
    background: var(--primary) !important;
    overflow: hidden;
}

.madd .maplogo {
    width: 110px;
    height: 68px;
    background: #fff url(../images/logob.svg) center no-repeat !important;
    float: left;
    background-size: 80% !important;
}

.madd .maddtxt {
    width: 210px;
    height: 68px;
    padding-left: 20px;
    float: left;
}

.madd .maddtxt h5 {
    font-size: 14px;
    line-height: 24px;
    font-weight: normal;
    color: #fff;
    padding: 10px 0;
}

#map .BMap_pop {
    width: 370px;
    height: 80px;
    padding: 10px;
    background: var(--primary);
    margin-left: -30px;
    margin-top: -30px;
}

#map .BMap_pop::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -20px;
    bottom: -10px;
    width: 0;
    height: 0;
    border-top: 20px solid var(--primary);
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
}

#map .BMap_pop .BMap_top,
#map .BMap_pop .BMap_bottom,
#map .BMap_center,
#map .BMap_pop img {
    display: none;
}

#map .BMap_pop div:nth-child(1) {
    display: none;
}

#map .BMap_pop div:nth-child(3),
#map .BMap_pop div:nth-child(5),
#map .BMap_pop div:nth-child(7) {
    display: none;
}

#map .BMap_bubble_content * {
    display: block !important;
}

.BMap_stdMpCtrl {
    display: none !important;
}


@keyframes shadow {

    0%,
    100% {
        transform: scaleX(1);
    }

    50% {
        transform: scaleX(1.2);
    }
}

@keyframes rotate {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(5px);
    }

    50% {
        transform: translateY(10px) scale(1.1, 0.9);
    }

    75% {
        ransform: translateY(5px);
    }

    100% {
        transform: translateY(0);
    }
}

@media only screen and (max-width: 768px) {

    .meau-sev,
    .meau-contact,
    .meau-code {
        display: none;
    }

    .cndns-right {
        top: 85%;
    }

    .cndns-right-btn {
        width: 60px;
    }
}