@import url('../../home/lib/bootstrap/css/bootstrap.min.css');
@import url('../../../static/font-awesome/css/font-awesome.css');
@import url('../../home/lib/animate/animate.min.css');
/* @import url('../../../static/swiper/swiper-bundle.css'); */
@import url('../../../static/swiper4/css/swiper@4.5.3.min.css');
@import url('../../../static/layui/css/layui.css');

/*--------------------------------------------------------------
    Fonts
--------------------------------------------------------------*/
@font-face {
    font-family: 'Poppins-Medium';
    src: url('../font/Poppins-Medium.ttf');
}

@font-face {
    font-family: 'Poppins-Bold';
    src: url('../font/Poppins-Bold.ttf');
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('../font/Poppins-Regular.ttf');
}

@font-face {
    font-family: 'Poppins-Light';
    src: url('../font/Poppins-Light.ttf');
}

@font-face {
    font-family: 'Poppins-Thin';
    src: url('../font/Poppins-Thin.ttf');
}

@font-face {
    font-family: 'Anton-Regular';
    src: url('../font/Anton-Regular.ttf');
}

/*--------------------------------------------------------------
    General
--------------------------------------------------------------*/
:root {
    --primary-color: #28863A;
    --secondary-color: #13294D;
}

body {
    background: #FFF;
    font-size: 15px;
    font-family: 'Poppins-Medium';
    overflow-x: hidden;
}

a {
    color: #202020;
    transition: all 0.5s;
}

a:hover,
a:active,
a:focus {
    color: var(--primary-color);
    outline: none;
    text-decoration: none;
}

section {
    padding-top: 80px;
    padding-bottom: 80px;
}


.section-title,
.section-subtitle,
.section-intro {
    margin: 0;
    padding: 0;
}

.section-title {
    font-size: 40px;
}

.section-subtitle {
    font-size: 30px;
}

.section-intro {
    font-size: 20px;
}

.justify-center{
    justify-content: center;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.bg-white {
    background-color: #FFF;
}

.img {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-bottom: 100%;
}

.img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    object-fit: cover;
}

.warp {
    margin: 1rem;
    padding: 1rem;
    transition: all 0.5s;
}

.warp:hover {
    box-shadow: 0 0 2px 2px rgba(114, 114, 114, 0.5);
}

.warp .img {
    padding-bottom: 100%;
}

.article table,
.article img {
    max-width: 100%;
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.pagination p {
    margin: 0;
    cursor: pointer
}

.pagination {
    justify-content: center;
    display: flex;
    padding-top: 2rem;
    padding-bottom: 0;
}

.pagination a {
    display: block;
    float: left;
    margin-right: 10px;
    padding: 2px 12px;
    height: 40px;
    width: 40px;
    background: #FFF;
    text-decoration: none;
    color: #808080;
    font-size: 15px;
    line-height: 38px;
    position: relative;
}

.pagination a:hover {
    color: #FFF;
    background: var(--primary-color);
}

.pagination a.cur {
    border: none;
    background: var(--primary-color);
    color: #FFF;
}

.pagination a .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pagination p {
    float: left;
    padding: 2px 12px;
    font-size: 12px;
    height: 24px;
    line-height: 24px;
    color: #bbb;
    border: 1px #CCC solid;
    background: #FCFCFC;
    margin-right: 8px;
}

.pagination p.pageRemark {
    border-style: none;
    background: none;
    margin-right: 0;
    padding: 4px 0;
    color: #666;
}

.pagination p.pageRemark b {
    color: red;
}

.pagination p.pageEllipsis {
    border-style: none;
    background: none;
    padding: 4px 0;
    color: #808080;
}

/*--------------------------------------------------------------
# placeholderBox
--------------------------------------------------------------*/
#placeholderBox {
    height: 110px;
    /*高度要和#header一致*/
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    background: var(--primary-color);
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 30;
}

.back-to-top i {
    padding-top: 12px;
    color: #FFF;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background-color: transparent;
    z-index: 999;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.5s;
    /* box-shadow: 0 0 5px 2px rgba(167,167,167,0.5); */
}

#header .container {
    display: flex;
    justify-content: space-between;
}

/*--------------------------------------------------------------
# Top Navigation Menu
--------------------------------------------------------------*/
.main-nav {
    display: none;
}

.main-nav,
.main-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav>ul>li {
    position: relative;
    white-space: nowrap;
    float: left;
    height: 70px;
    line-height: 70px;
}

.main-nav>ul>li:nth-child(2)>a {
    pointer-events: none;
}

.main-nav>ul>li.drop-down>a {
    line-height: 70px;
}

.main-nav a {
    font-size: 18px;
    display: block;
    position: relative;
    color: #fff;
    padding: 0 35px;
    transition: 0.5s;
}

.theme-black .main-nav a {
    color: #202020 !important;
}

.theme-black .main-nav a:hover span {
    border-bottom: 1px solid #202020;
}

.theme-black .main-nav .level-2 a:hover span {
    color: var(--primary-color);
    border: unset;
}

.theme-black .main-nav .current-flag:hover span {
    border-bottom: unset;
}

.theme-black #header .logo img {
    filter: unset;
}

.theme-black .swiper-container-fullpage-pagination .swiper-pagination-bullet {
    border: 2px solid var(--secondary-color)!important;
}

.theme-black .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--secondary-color)!important;
}

#process .swiper-container-fullpage-pagination .swiper-pagination-bullet {
    border: 2px solid #005EB8!important;
}

#process .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #005EB8!important;
}

.theme-black #header {
    /* background-color: #fff; */
}

/* .main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
    text-underline-offset: 5px;
    text-decoration-thickness: 10px;
    text-decoration-color: #fff;
    text-decoration: underline;
} */

.main-nav a span {
    /* transition: all 0.5s; */
}

.main-nav a:hover span {
    border-bottom: 1px solid #fff;
}

.main-nav .level-2 a:hover span {
    border: unset;
}

.main-nav .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #FFF;
    box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
}

.main-nav .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.main-nav .drop-down li {
    height: 50px;
    line-height: 50px;
    min-width: 180px;
    position: relative;
}

.main-nav>ul>li .country-list li {
    min-width: 80px;
    align-items: center;
}

.main-nav .flag-li:hover>a {
    text-underline-offset: unset;
    text-decoration: unset;
}

.main-nav .flag-li .current-flag {
    padding: 0 0 0 25px;
}

.main-nav .flag-li .current-flag .d-lg-block{
    display: inline-block!important;
}

.main-nav .flag-li ul{
    padding: 0;
}

.main-nav .flag-li ul li{
    height: 45px;
    line-height: 45px;
}

.main-nav .flag-li ul li img{
    margin-right: 8px;
}

.main-nav .flag-li ul a{
    padding: 0 10px!important;
    font-size: 15px!important;
    text-align: center;
}

.main-nav .flag-li ul a:hover{
    color: #fff!important;
    background-color: var(--primary-color);
    /* padding: 0; */
}


.main-nav .current-flag:hover span {
    border-bottom: unset;
}

.main-nav .drop-down ul a {
    padding: 0 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #000;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active>a,
.main-nav .drop-down ul li:hover>a {
    color: var(--primary-color);
}

.main-nav .drop-down>a>span:after {
    font-size: 15px;
    content: "\f0d7";
    font-family: FontAwesome;
    margin-left: 10px;
}

.main-nav .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.main-nav .drop-down .drop-down>a {
    padding-right: 35px;
}

.main-nav .drop-down .drop-down>a:after {
    content: "\f105";
    position: absolute;
    right: 15px;
}

/* Mobile Navigation */

.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    padding-top: 18px;
    background: rgba(40, 38, 70, 0.8);
    transition: 0.4s;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #fff;
    padding: 10px 20px;
    font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: var(--primary-color);
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\f078";
    font-family: FontAwesome;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\f077";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-toggle {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    margin: 18px 18px 0 0;
    color: var(--primary-color);
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(40, 38, 70, 0.8);
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #202020;
    color: #FFF;
}

.footer h3 {
    font-size: 25px;
}

.footer ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer ul li {
    padding: 5px 0;
}

/* Main Footer */
.main-footer {
    height: 100%;
    background-color: #333333;
    padding-top: 50px;
    padding-bottom: 50px;
}

.main-footer .row {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-footer .footer-img {
    width: 159px;
    margin: 0 auto;
}

.main-footer .footer-img img {
    width: 180px;
}


.main-footer .nav-group {
    display: flex;
    margin: 45px 0 40px 0;
}

.main-footer .nav-group.footer-link {
    margin: 35px 0 0px 0;
}

.main-footer .nav-group .item {
    margin: 0 30px;
}

.main-footer .nav-group .item a {
    color: #999999;
    font-size: 20px;
    font-family: 'Poppins-Regular';
    /* font-weight: 100; */
    transition: all 0.5s;
}

.main-footer .nav-group .item a:hover {
    color: #fff;
}

.main-footer .info {
    text-align: center;
}

.main-footer .info h5 {
    color: #999999;
    font-size: 20px;
    font-family: 'Poppins-Medium';
    text-transform: capitalize;
    font-weight: 100;
    margin-top: 25px;
    margin-bottom: 16px;
}

.main-footer .info .phone {
    color: #fff;
    font-size: 25px;
    font-family: 'Poppins-Light';
    margin-left: 15px;
    margin-right: 15px;
}

.main-footer .info p {
    color: #999999;
    font-size: 12px;
    line-height: 20px;
    margin-top: 15px;
}

/* Mobile Footer */
.mobile-footer {
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: block;
}

.mobile-footer .panel-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-footer .panel-heading:after {
    content: "＋";
    color: #FFF;
    right: 25px;
    font-size: 20px;
}

.mobile-footer .panel-heading.active:after {
    content: '－' !important;
}

.mobile-footer .panel-heading .panel-title {
    font-size: 20px;
    padding: 10px 0;
}

/*--------------------------------------------------------------
# Section Banner
--------------------------------------------------------------*/
.banner {
    position: relative;
    padding: 0;
}

.banner .text {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.banner .text .title {
    color: #fff;
    text-transform: uppercase;
    font-size: 40px;
    font-family: 'Poppins-Bold';
}

.banner.mobile {
    display: none;
}

.banner .img {
    padding-bottom: 26.04%;
}

.banner.mobile .img {
    padding-bottom: 48%;
}

/*--------------------------------------------------------------
# Index Carousel
--------------------------------------------------------------*/
.index-carousel {
    padding: 0;
}

.index-carousel .img {
    padding-bottom: 33.3%;
}

.btn-prev,
.btn-next {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: #FFF;
    cursor: pointer;
    z-index: 10;
    transition: all 0.5s;
    box-shadow: 0 0 2px 2px rgba(114, 114, 114, 0.5);
    box-shadow: 0px 1px 10px 0px rgba(32, 32, 32, 0.5);
}

.btn-prev i,
.btn-next i {
    font-size: 25px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.btn-prev i {
    left: 48%;
}

.btn-next i {
    left: 52%;
}

.btn-prev:hover,
.btn-next:hover {
    background-color: var(--primary-color);
}

.btn-prev:hover i,
.btn-next:hover i {
    color: #FFF;
}

/* Main Footer */
.main-footer{
    display: none;
}

/* Mobile Footer */
.mobile-footer{
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: block;
}

/*------------------------------------------------------------------
    FAQ
------------------------------------------------------------------*/
.faq-list {
    list-style: none;
    font-size: 20px;
    text-align: left;
    padding: 0;
}

.faq-list li {
    border-radius: 10px;
    margin-bottom: 20px;
    background-color: #EEEEEE;
}

.faq-list .question {
    font-size: 20px;
    position: relative;
    color: #202020;
    padding: 20px 29px;
    /* border-radius: 21px; */
}

.faq-list .collapsed .question::after {
    content: '\f107';
    font-family: FontAwesome;
    transform: rotate(0);
}

.faq-list .question::after {
    content: '\f107';
    font-family: FontAwesome;
    position: absolute;
    top: 33%;
    right: 2rem;
    font-size: 30px;
    transition: all 0.5s;
    transform: rotate(180deg);
}

.faq-list .answer {
    color: #666666;
    line-height: 30px;
    background-color: #F8F8F8;
    padding: 20px 2rem;
    font-size: 15px;
}

.faq .more-btn {
    background-color: var(--primary-color);
    border: none;
    color: #FFF;
    padding: 5px 30px;
    font-size: 18px;
}

.faq-list .show-more {
    margin-top: 5rem;
    text-align: center;
    background-color: #F8F8F8;
}

.fullpage-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    background-color: #000000;
    color: #FFFFFF;
    transition: top 1s;
}

.fullpage-wrapper,
.swiper-container-fullpage {
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.fullpage-wrapper h3 {
    display: none;
    padding: 0 !important;
    font-size: 90px !important;
    font-family: "Poppins-Bold";
    color: rgb(255, 255, 255);
    text-shadow: -1px -1px 0 #E9E9E9, 1px -1px 0 #E9E9E9, -1px 1px 0 #E9E9E9, 1px 1px 0 #E9E9E9;
    text-transform: uppercase;
    line-height: 0.454;
}

.fullpage-wrapper .en h3{
    display: block;
}

.fullpage-wrapper h5 {
    font-size: 55px;
    font-family: 'Poppins-Bold';
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-top: unset;
}

.fullpage-wrapper .en h5{
    margin-top: -20px;
}

.fullpage-wrapper .swiper-content p {
    font-size: 20px;
    font-family: "Poppins-Regular";
    color: rgb(102, 102, 102);
    margin: 30px 0;
    line-height: 2;
}

.swiper-container-fullpage .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 9;
    background-color: #fff;
}

.swiper-container-fullpage .swiper-slide .swiper-slide-content-fullpage-mask {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 0.9;
    transition: all 1s linear 0.4s;
    opacity: 0;
}

.swiper-container-fullpage .swiper-slide.swiper-slide-active .swiper-slide-content-fullpage-mask {
    opacity: 1;
}

.swiper-container-fullpage .swiper-slide .swiper-content {
    display: flex;
    align-items: center;
    position: absolute;
    top: 100px;
    right: 0;
    bottom: 0;
    left: 0;
    margin-top: 0;
}

.swiper-container-fullpage .swiper-slide .swiper-content .icon {
    height: 147px;
}

.swiper-container-fullpage .swiper-slide:nth-last-child(1) {
    height: 535px;
}

.swiper-container-fullpage .index-carousel .swiper-content h3 {
    display: block!important;
    font-size: 50px !important;
    line-height: 65px;
    padding: 40px 20% 30px 0 !important;
    font-family: 'Poppins-Bold';
    text-transform: uppercase;
    text-shadow: unset!important;
}


.swiper-container-fullpage .index-carousel.en .swiper-content h3{
    display: block;
    padding: 40px 50% 30px 0 !important;
}


.swiper-container-fullpage .index-carousel .swiper-content p {
    margin: 0;
}

.swiper-container-fullpage .swiper-slide .swiper-content p {
    color: #fff;
    font-size: 22px;
}

.swiper-container-fullpage .about-us {
    background-size: contain;
    background-position: left bottom;
}

.swiper-container-fullpage .about-us .swiper-content p {
    color: #666666;
    font-size: 18px;
    margin: 15px 15px 25px 0;
}

.swiper-container-fullpage .about-us .btn {
    font-size: 15px;
    padding: 12px 25px;
    border-radius: 30px;
    border: 1px solid #13294D;
    transition: all 0.5s;
}

.swiper-container-fullpage .about-us .btn span {
    color: var(--secondary-color);
    padding-right: 15px;
    border-right: 1px solid var(--secondary-color);
}

.swiper-container-fullpage .about-us .btn i {
    font-size: 15px;
    padding-left: 15px;
}

.swiper-container-fullpage .about-us .btn:hover {
    background-color: var(--primary-color);
    border: 1px solid transparent;
}

.swiper-container-fullpage .about-us .btn:hover span {
    color: #fff;
    border-right: 1px solid #fff;
}

.swiper-container-fullpage .about-us .btn:hover i {
    color: #fff;
}

.about-us .right {
    width: 43%;
    float: right;
}

/* .index-product .swiper-content::after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    left: 50%;
    background-color: rgba(255,255,255,0.4);
} */

.swiper-container-fullpage .index-product .swiper-content {
    top: 0;
}

.index-product .section-title {
    position: absolute;
    left: 210px;
    top: 200px;
}

.index-product h3 {
    text-shadow: unset;
    color: rgba(255, 255, 255, 0);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    text-stroke: 1px rgba(255, 255, 255, 0.3);
}

.index-product h5 {
    color: #fff;
}

.index-product .content {
    width: 100%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.index-product .content .item {
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 210px;
    transition: all 0.5s;
}

.index-product .content .item:nth-child(1) {
    margin-left: 0;
}

.index-product .content .item:last-child {
    border-right: unset;
}

.index-product .content .box{
    position: absolute;
    bottom: 80px;
    transition: all 0.5s;
}

.index-product .content .item:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.index-product .content .item:hover{
    transition: all 0.5s;
}

.index-product .content .item:hover .box{
    bottom: 50%;
    transform: translateY(50%);
}

.index-product .content .item:hover .box .btn{
    border: 2px solid var(--primary-color);
    background-color: var(--primary-color);
}


.index-product .content img {
    height: 73px;
}

.index-product .content h5 {
    margin-top: 30px;
    margin-bottom: 40px;
    font-size: 40px;
}

.index-product .content .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.index-product .content .btn i {
    font-size: 30px;
    color: #fff;
}

.index-product .content .item {
    flex: 1;
    width: 100%;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
    /* margin-left: 100px; */
    align-items: flex-start;
    justify-content: flex-end;
}

.index-solution .section-title {
    position: absolute;
    left: 210px;
    top: 60px;
}

.index-solution h3 {
    text-shadow: unset;
    color: rgba(255, 255, 255, 0);
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.15);
    text-stroke: 1px rgba(255, 255, 255, 0.15);
}

.index-solution h5 {
    color: var(--secondary-color);
}

.index-solution .content {
    width: 100%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    align-items: flex-end;
}

.index-solution .content .item {
    /* flex: 1; */
    width: 100%;
    position: relative;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    transition: all 0.5s;
    cursor: pointer;
}

.index-solution .content .item .img {
    opacity: 0.2;
    padding-bottom: 135%;
    transition: all 0.5s;
}

.index-solution .content .item .text {
    color: #202020;
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    font-size: 30px;
    padding: 0 60px 60px 40px;
    justify-content: flex-end;
    transition: all 0.5s;
}

.index-solution .content .item .text .line {
    width: 65px;
    height: 3px;
    margin-top: 25px;
    background-color: #202020;
    transition: all 0.5s;
}

.index-solution .content .item .text span {
    font-size: 28px;
    font-family: 'Poppins-Bold';
    height: 92px;
    overflow: hidden;
}

.index-solution .content .item:hover{
    background-color: rgb(19, 41, 77);
}

.index-solution .content .item:hover .img {
    background-color: rgb(19, 41, 77);
    opacity: 0.5;
}

.index-solution .content .item:hover .text {
    color: #fff;
}

.index-solution .content .item:hover .text .line {
    background-color: #fff;
}

.index-inquiry .left {
    flex: 0 0 53%;
    max-width: 53%;
    margin-top: 40px;
}

.index-inquiry .right {
    flex: 0 0 47%;
    max-width: 47%;
    padding-left: 0;
}

.index-inquiry.en h3{
    display: block;
}

.index-inquiry h3 {
    text-shadow: unset;
    color: rgba(255, 255, 255, 0);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    padding: 0 !important;
    font-size: 90px !important;
    font-family: "Poppins-Bold";
    text-stroke: 1px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    line-height: 0.454;
    display: none;
}

.index-inquiry h5 {
    font-size: 55px;
    font-family: 'Poppins-Bold';
    text-transform: uppercase;
    color: #fff;
    margin-top: -20px;
}

.index-inquiry .subtitle {
    color: #fff;
    font-size: 20px;
    font-family: 'Poppins-Regular';
    margin-top: 40px;
}

.index-inquiry .title {
    color: #fff;
    font-size: 30px;
    font-family: 'Poppins-Bold';
    margin-top: 15px;
    margin-bottom: 30px;
}

.index-inquiry .info .item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px;
}

.index-inquiry .info .item img {
    position: absolute;
    left: 0;
    top: 7px;
}

.index-inquiry .info .item:last-child {
    margin-bottom: 0;
}


.index-inquiry .info .title {
    color: #fff;
    font-size: 20px;
    font-family: 'Poppins-Medium';
    margin-bottom: 10px;
}

.index-inquiry .info ul>li {
    color: #fff;
    font-family: 'Poppins-Regular';
    line-height: 25px;
    margin-right: 200px;
}

.inquiry {
    padding-top: 80px;
    padding-bottom: 80px;
}

.form {
    padding: 45px 55px 45px 55px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 1px 10px 0px rgba(32, 32, 32, 0.15);
}

.form .title {
    font-size: 30px;
    text-transform: uppercase;
    color: #202020;
    margin-bottom: 5px;
}

.form .subtitle {
    color: #666666;
    font-size: 15px;
    margin: 0 50px;
}

.form .row {
    display: flex;
    /* flex-direction: column; */
    align-items: unset;
}

.form .row .item {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 10px;
}

.form .row .item:nth-child(1),
.form .row .item:nth-child(3) {
    padding-right: 7.5px;
}

.form .row .item:nth-child(2),
.form .row .item:nth-child(4) {
    padding-left: 7.5px;
}

.form .row .item:last-child {
    display: flex;
    justify-content: space-between;
}

.form .row .item:last-child input {
    width: 355px;
    height: 55px;
}

.form .row .item:last-child img {
    width: 240px;
    height: 55px;
}

.form .row input,
.form .row select,
.form .row textarea {
    width: 100%;
    height: 46px;
    color: #a5a5a5;
    padding: 6px 12px 6px 18px;
    border: 1px solid #bcbcbc;
    font-size: 15px;
    font-family: 'Poppins-Reuglar';
}

.form .row select {
    padding: 6px 12px 6px 15px;
}

.form .row select option:disabled {
    color: #ffffff;
    background-color: #C8C8C8;
}

.form .row textarea {
    resize: none;
    height: 240px;
    padding: 12px 12px 6px 18px;
}

.form .row input::placeholder,
.form .row textarea::placeholder {
    color: #a5a5a5;
}

.form button {
    width: 100%;
    height: 45px;
    font-size: 16px;
    border: none;
    background-color: var(--primary-color);
    color: #FFF;
    margin-top: 5px;
    margin-bottom: 15px;
    font-family: 'Poppins-Medium';
}

.form .footer-intro {
    font-size: 12px;
    color: #999999;
}

#fullpageWrapper .swiper-container-fullpage-pagination {
    width: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: fixed;
    right: 80px !important;
    top: 50%;
    z-index: 10;
    width: 6px;
    transform: translateY(-50%);
}

#fullpageWrapper .swiper-container-fullpage-pagination .swiper-pagination-bullet {
    position: relative;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: none;
    cursor: pointer;
    opacity: 1;
    border: 2px solid #fff;
    margin: 17px 0 !important;
}

#fullpageWrapper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 20px;
    height: 20px;
    background-color: #fff;
}


.icon-group {
    display: flex;
    margin: 20px 0;
}

.icon-group .item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #515151;
    margin: 0 18px;
    border-radius: 50%;
    transition: 0.5s;
}

.icon-group .item i {
    color: #999999;
    font-size: 24px;
    transition: 0.5s;
}

.icon-group .item:first-child img {
    width: 23px;
    height: 23px;
    filter: brightness(0.66);
    transition: 0.5s;
}

.icon-group .item:hover {
    background-color: var(--primary-color);
}

.icon-group .item:hover i {
    color: #fff;
}

.icon-group .item:hover img {
    filter: brightness(1);
}

.breadcrumb {
    background-color: unset;
    margin-bottom: unset;
}

.breadcrumb span.active a ,.breadcrumb span.active{
    color: var(--primary-color);
}

.product-adv{
    padding-top: 20px;
}

.product-adv .row {
    margin-top: 30px;
}

.product-adv .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 50px;
}

.product-adv .item .img-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
}

.product-adv .item .img-box img {
    height: 82px;
    transition: all 0.5s;
}

.product-adv .item .img-box:hover {
    background-color: var(--primary-color);
}

.product-adv .item .img-box:hover img {
    filter: brightness(0) invert(1);
}

.product-adv .item h5 {
    color: #202020;
    font-size: 20px;
    font-family: 'Poppins-Bold';
    margin: 30px 0 25px 0;
    text-transform: uppercase;
}

.product-adv .item p {
    color: #202020;
    font-size: 15px;
    font-family: 'Poppins-Regular';
    /* height: 115px; */
    overflow: hidden;
}

.product-what {
    background-color: #F8F8F8;
}

.product-what .container {
    max-width: 1230px;
}

.product-what .item {
    margin-top: 50px;
}

.product-what .item .img{
    transition: all 0.5s;
}

.product-what .item .text {
    height: 64px;
    overflow: hidden;
    padding: 10px 15px 0 15px;
}

.product-what .item .text a {
    font-size: 18px;
}

.product-what .item:hover .text a {
    color: var(--primary-color);
}

.product-what .item:hover .img {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.product-what .layui-flow-more{
    padding-top: 60px;
}

.product-benefits .row {
    margin-left: -12.5px;
    margin-right: -12.5px;
    margin-top: 60px;
}

.product-benefits .item {
    flex: 0 0 20%;
    max-width: 20%;
    padding-left: 12.5px;
    padding-right: 12.5px;
}

.product-benefits .item .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 15px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    padding: 45px 25px 120px 25px;
}

.product-benefits .item .box img {
    height: 50px;
}

.product-benefits .item .box h5 {
    font-size: 20px;
    font-family: 'Poppins-Bold';
    margin: 30px 0 20px 0;
    text-align: center;
    text-transform: uppercase;
    height: 60px;
    line-height: 30px;
    overflow: hidden;
}

.product-benefits .item .box p {
    height: 161px;
    overflow: hidden;
    color: #666666;
    font-size: 15px;
    font-family: 'Poppins-Regular';
    text-align: center;
}

.product-benefits .item .box .number {
    position: absolute;
    bottom: 0;
    font-size: 100px;
    font-family: "Poppins-Bold";
    color: rgba(0, 94, 184, 0.102);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 0.7;
}

.product-char {
    background-color: #F8F8F8;
}

.product-char .container {
    max-width: 1230px;
}

.product-char .row {
    margin-top: 30px;
}

.product-char .item {
    margin-top: 30px;
}

.product-char .item .box {
    padding: 40px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.product-char .item h5 {
    color: #202020;
    margin-bottom: 20px;
    font-size: 25px;
    text-transform: uppercase;
}

.product-char .item p {
    color: #666666;
    line-height: 30px;
    height: 120px;
    overflow: hidden;
}

.product-application {
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
}

.product-application .section-title {
    color: #fff;
    position: absolute;
    text-align: center;
    top: 60px;
    left: 0;
    right: 0;
    /* bottom: 0; */
    z-index: 3;
}

.product-application .content {
    display: flex;
}

.product-application .content .item {
    position: relative;
    flex: 1;
}

.product-application .item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(2, 22, 52, 0.7);    
    transition: all 0.5s;
}

.product-application .img {
    padding-bottom: 244%;
}

.product-application .item:hover::after {
    background-color: unset;
}

.product-application .text {
    color: #fff;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    justify-content: flex-end;
    padding: 0 40px 50px 40px;
}

.product-application .text h5 {
    height: 70px;
    overflow: hidden;
    font-size: 25px;
    font-family: 'Poppins-Bold';
    margin-bottom: 20px;
    line-height: 35px;
    text-transform: uppercase;
}

.product-application .text p {
    font-size: 15px;
    line-height: 30px;
    font-family: 'Poppins-Regular';
    height: 240px;
    overflow: hidden;
}

.application-prev{
    left: 40px!important;
}

.application-next{
    right: 40px!important;
}

.product-types .container {
    max-width: 1230px;
}

.product-types .container .row {
    margin-top: 35px;
}

.product-types .item {
    display: flex;
    padding-left: 0;
    padding-right: 0;
    margin-top: 27px;
    /* flex-direction: column-reverse; */
}

.product-types .item .left,
.product-types .item .right {
    padding-left: 0;
    padding-right: 0;
}

.product-types .item .left .img {
    padding-bottom: 55.65%;
}

.product-types .item .right {
    display: flex;
    align-items: center;
    border: 1px solid #EEEEEE;
    padding: 30px 40px 30px 40px;
}

.product-types .item .right h5 {
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.product-types .item .right p {
    font-size: 15px;
    font-family: "Poppins-Regular";
    color: rgb(102, 102, 102);
    line-height: 1.667;
    height: 175px;
    overflow: hidden;
}

.product-types .item:nth-child(even) {
    flex-direction: row-reverse;
}

.product-use {
    background-color: #F8F8F8;
}

.product-use .container{
    max-width: 1230px;
}

.product-use .section-title{
    padding-top: 0;
    margin-bottom: 80px;
}

.site-header {
    text-align: center;
    padding: 40px 0;
}

.site-header__title {
    font-size: 36px;
    color: #fff;
}

.wrapper {
    padding-left: 18px;
    padding-right: 18px;
    margin-left: auto;
    margin-right: auto;
}


.timeline {
    position: relative;
    overflow: hidden;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    /* bottom: -200px; */
    left: 10%;
    width: 4px;
    /* height: 100%; */
    height: calc(100% - 239px);
    overflow: hidden;
    background-color: #005EB8;
}

.timeline .title{
    font-size: 25px;
    margin-bottom: 15px;
}

.timeline .intro{
    color: #202020;
    font-size: 15px;
    line-height: 30px;
    height: 120px;
    overflow: hidden;
    font-family: 'Poppins-Regular';
}


.timeline-hover {
    content: "";
    position: absolute;
    top: 0;
    width: 4px;
    left: 10%;
    background-color: var(--primary-color);
    max-height: calc(100% - 239px);
}

@media (min-width: 800px) {
    .timeline::before {
        left: 50%;
        margin-left: -2px;
    }

    .timeline-hover {
        left: 50%;
        margin-left: -2px;
    }
}

.timeline__item {
    margin-bottom: 100px;
    position: relative;
}

.timeline__item::after {
    content: "";
    clear: both;
    display: table;
}

.timeline__item:nth-child(2n) .timeline__item__content {
    float: right;
}

@media (min-width: 800px) {
    .timeline__item:nth-child(2n) .timeline__item__content::before {
        left: inherit;
    }
}

.timeline__item:last-child {
    margin-bottom: 0;
}

.timeline__item-bg {
    -webkit-transition: all 1s ease-out;
    transition: all 1s ease-out;
}

.timeline__item-bg .timeline__item__station {
    /* border:3px solid var(--primary-color); */
    background-color: var(--primary-color);
    /* border: 4px solid var(--primary-color); */
    background-position: 50% 50%;
}

.timeline__item-bg .timeline__item__content {
    border: 3px solid var(--primary-color);
    /* background-color: var(--primary-color); */
}

.timeline__item-bg .timeline__item__content::before {
    background-color: var(--primary-color);
}

.timeline__item__station {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #005EB8;
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 50%;
    padding: 10px;
    top: 0;
    left: 10%;
    margin-left: -33px;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    background-position: 50% 50%;
}

.timeline__item__station .number{
    color: #fff;
    font-size: 24px;
    font-family: 'Poppins-Bold';
}

@media (min-width: 800px) {
    .timeline__item__station {
        left: 50%;
        margin-left: -20px;
        width: 40px;
        height: 40px;
        padding: 15px;
        border-width: 6px;
    }

}

.timeline__item__content {
    width: 80%;
    background: #F1F0F0;
    padding: 20px 30px;
    border-radius: 30px;
    float: right;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    border: 3px solid #F1F0F0;
    margin-top: -40px;
}

@media (min-width: 800px) {
    .timeline__item__content {
        width: 44%;
        float: inherit;
        padding: 30px 30px;
        border: 3px solid #F1F0F0;
    }
}

@media (min-width: 800px) {}

.timeline__item__content__date {
    margin: 0;
    padding: 8px 12px;
    font-size: 15px;
    margin-bottom: 10px;
    background-color: var(--primary-color);
    color: #fff;
    display: inline-block;
    border-radius: 4px;
    border: 2px solid #fff;
}

.timeline__item__content__description {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
}

@media (min-width: 800px) {
    .timeline__item__content__description {
        line-height: 28px;
    }

    .timeline__item__right__year {
        position: absolute;
        top: 0%;
        left: 55%;
    }

    .timeline__item__left__year {
        position: absolute;
        top: 0%;
        right: 55%;
    }
}

/* _site-footer.css */
.site-footer {
    padding: 50px 0 200px 0;

}

.site-footer__text {
    color: #e6e6e6;
    font-size: 14px;
    text-align: center;
}

.site-footer__text__link {
    color: #8287a9;
}

.product-charact .section-title{
    margin-bottom: 80px;
}

.product-charact .item{
    margin-bottom: 25px;
}

.product-charact .item .box{
    padding: 35px 35px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.product-charact .item h5{
    font-size: 20px;
    margin-bottom: 12px;
}

.product-charact .item p{
    color: #666666;
    line-height: 25px;
    font-family: 'Poppins-Regular';
}

.product-charact .item:last-child{
    margin-bottom: 0;
}

.product-charact .left{
    flex: 0 0 47%;
    max-width: 47%;
}

.product-charact .right{
    flex: 0 0 53%;
    max-width: 53%;
}

.product-process{
    background-color: #F8F8F8;
}

.product-process .container{
    max-width: 1230px;
}

.product-process .section-title{
    margin-bottom: 80px;
}

.product-process .swiper-slide{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-process #process{
    background-image: url(../images/each_tool_img.png);
    background-position: center 14%;
    background-repeat: no-repeat;
    background-size: auto;
}

.product-process .icon{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-process .number{
    position: absolute;
    text-align: center;
    color: white;
    font-family: 'Poppins-Bold';
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 35px;
}

.product-process .title{
    font-size: 20px;
    color: #202020;
    margin-top: 30px;
    margin-bottom: 15px;
}

.product-process .intro{
    color: #666666;
    line-height: 30px;
    font-family: 'Poppins-Regular';
}

#process{
    padding-bottom: 80px;
}

#process #processPagination{
    bottom: 0;
}

#process #processPagination .swiper-pagination-bullet{
    width: 15px;
    height: 15px;
    margin: 0 8px;
}

#process #processPagination .swiper-pagination-bullet-active{
    width: 40px;
    background-color: #005EB8;
    border-radius: 10px;
    transition: all 0.2s;
}

.product-remove .row{
    display: flex;
    align-items: center;
}

.product-remove .left{
    padding-right: 50px;
}

.product-remove .left .section-title{
    margin-bottom: 20px;
    line-height: 60px;
}

.product-remove .left p{
    font-size: 15px;
    font-family: "Poppins-Regular";
    color: rgb(102, 102, 102);
    line-height: 2;
    text-align: left;
}

.product-factory{
    padding-top: 20px;
}

.product-factory .section-intro{
    padding: 0 150px;
    text-align: center;
}

.product-factory #factory .img{
    padding-bottom: 76.45%;
}

.product-factory #factory{
    margin-top: 40px;
}

.product-factory .factory-box{
    position: relative;
}

.product-factory .factory-prev{
    left: -130px;
}

.product-factory .factory-next{
    right: -130px;
}

.product-faq{
    padding-top: 70px;
    background-color: #F8F8F8;
}

.product-faq .section-title{
    padding-bottom: 50px;
}

.more-btn{
    font-size: 15px;
    padding: 6px 30px;
    background-color: #F8F8F8;
    border-radius: 30px;
    border: 1px solid #13294D;
}

.product-detail-1{
    padding-top: 70px;
}

.product-detail-1 .img {
    padding-bottom: 100%;
}

.product-detail-1 .left {
    max-width: 39%;
    flex: 0 0 39%;
    padding-left: 15px;
    padding-right: 30px;
}

.product-detail-1 .left .carousel-box #gallery {
    border: 1px solid #dfdddd;
}

.product-detail-1 .right {
    max-width: 61%;
    flex: 0 0 61%;
}

.product-detail-1 .thumbs-box {
    position: relative;
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 2rem;
}

.product-detail-1 .thumbs-box .swiper-wrapper .swiper-slide{
    border: 1px solid #dfdddd;
} 

.product-detail-1 .thumbs-box .swiper-wrapper .swiper-slide.swiper-slide-thumb-active{
    border: 1px solid var(--primary-color);

}
.gallery-prev,
.gallery-next {
    position: absolute;
    width: 30px;
    height: 100%;
    background-color: #13294D;
    bottom: 0;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    display: block !important;
    transition: all 0.5s;
}

.gallery-prev {
    left: 0;
}

.gallery-next {
    right: 0;
}

.gallery-prev i,
.gallery-next i {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
}

.gallery-prev:hover,
.gallery-next:hover {
    background-color: var(--primary-color);
    color: #FFF;
    cursor: pointer;
}

.thumbs-box .swiper-slide .img {
    border: 1px solid transparent;
}

.thumbs-box .swiper-slide.swiper-slide-thumb-active .img {
    border: 1px solid transparent;
}

.product-detail-1 .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.product-detail-1 .right .box{
    position: relative;
    height: 100%;
    padding: 70px 45px 50px 45px;
    background-color: #f3f3f3;
}

.product-detail-1 .right .title {
    height: 80px;
    font-size: 30px;
    color: #202020;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-detail-1 .right .intro {
    color: #666666;
    height: 216px;
    font-size: 15px;
    font-family: 'Poppins-regular';
    line-height: 28px;
    overflow-y: scroll;
    padding-right: 10px;
    margin-top: 40px;
}
.product-detail-1 .right .intro::-webkit-scrollbar{
    width: 4px;
}

.product-detail-1 .right .intro::-webkit-scrollbar-thumb{
    border-radius: 2px;
    background-color: var(--primary-color);
}
.product-detail-1 .right .btn-group{
    display: flex;
    position: absolute;
    bottom: 50px;
}
.product-detail-1 .right .btn-group .item{
    width: 169px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    border-radius: 10px;
    padding: 8px 25px;
    transition: all 0.2s;
    transition-timing-function: ease-out;
    cursor: pointer;
    font-size: 20px;
}
.product-detail-1 .right .btn-group .email{
    background-color: #25d366;
}
.product-detail-1 .right .btn-group .contact{
    color: #ffffff;
    background-color: var(--primary-color);
}

.product-detail-1 .right .btn-group .download{
    background-color: #13294D;
}
.product-detail-1 .right .btn-group .item img{
    margin-right: 10px;
}
.product-detail-1 .right .btn-group .item a{
    color: #ffffff;
}
.product-detail-1 .right .btn-group .item:nth-child(odd){
    margin-right: 20px;
}
.product-detail-1 .right .row {
    margin-left: -7.5px;
    margin-right: -7.5px;
}

.product-detail-1 .right .col-lg-2 {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.product-detail-1 .container{
    max-width: 1230px;
}

.product-detail-2 {
    padding-top: 0;
    padding-bottom: 80px;
}

.product-detail-2 .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: -15px;
    margin-left: -15px;
}

.product-detail-2 .container{
    max-width: 1230px;
}

.product-detail-2 .detail-tab .item {
    font-size: 19px;
    color: #202020;
    text-align: center;
    /* border-right: 1px solid white; */
    padding: 20px 0;
    cursor: pointer;
    background-color: #E1E1E1;
}

.product-detail-2 .detail-tab .item.active {
    color: var(--primary-color);
    background-color: #F4F4F4;
}

.product-detail-2 .faq-list .answer {
    background-color: #fff;
}


.detail-tab-content-box > div {
    display: none;
    padding: 3rem 0 0 0;
}

.detail-tab-content-box > div {
    overflow-x: auto;

}

.detail-tab-content-box > div.active {
    width: 100%;
    display: block;
}

.detail-tab-content-box img,
.detail-tab-content-box table {
    max-width: 100% !important;
}

/*--------------------------------------------------------------
# Recommend Products
--------------------------------------------------------------*/
.related-products {
    padding-top: 0;
    padding-bottom: 80px;
    background-color: unset;
}

.related-products .container{
    max-width: 1230px;
}

.related-products .box {
    position: relative;
}

.related-products .related-prev{
    left: -130px;
}

.related-products .related-next{
    right: -130px;
}


.about h3{
    font-size: 60px;
    font-family: 'Anton-Regular';
    color: rgb(40, 134, 58);
    text-transform: uppercase;
    line-height: 1.167;
    margin-right: 20px;
    margin-bottom: 40px;
}

.about h2{
    font-size: 150px;
    font-family: "Anton-Regular";
    color: rgb(255, 255, 255);
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.15);
    text-stroke: 1px rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
}

.about .left p{
    font-size: 15px;
    line-height: 30px;
    font-family: 'Poppins-Regular';
    padding-right: 200px;
    margin-bottom: 15px;
}

.about .right img{
    position: absolute;
    right: 0;
    max-width: 100%;
}

.solution-category{
    padding: 0;
    background-color: #EEEEEE;
}

.solution-category{
    display: flex;
}

.solution-category .container{
    max-width: 1500px;
}

.solution-category .item{
    flex: 1;
    font-size: 18px;
    text-align: center;
}

.solution-category .item a{
    display: block;
    color: #666666;
    padding: 26px 0;
}

.solution-category .item.active{
    background-color: #fff;
}

.solution-category .item.active a{
    color: var(--primary-color);
}

.solution .container{
    max-width: 1500px;
}

.solution .img{
    padding-bottom: 44.72%;
}

.solution .item{
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 45px;
    padding-bottom: 45px;
    border-bottom: 1px solid #E5E5E5;
}

.solution .item:nth-child(even){
    flex-direction: row-reverse;
}

.solution .item:first-child{
    padding-top: 0;
}

.solution .item:last-child{
    border-bottom: unset;
}

.solution .item .left .img{
    border-radius: 5px;
}

.solution .item .left,.solution .item .right{
    padding-left: 0;
    padding-right: 0;
}

.solution .item .right{
    padding-left: 55px;
}

.solution .item:nth-child(even) .right{
    padding-left: 0;
    padding-right: 55px;
}

.solution .item .right .title{
    font-size: 30px;
    word-break: break-word;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;

}

.solution .item .right p{
    color: #666666;
    line-height: 30px;
    font-family: 'Poppins-Regular';
    margin: 20px 0 20px 0;
    height: 120px;
    overflow: hidden;
}

.solution .item .right .more{
    font-size: 20px;
    color: var(--secondary-color);
    text-underline-offset: 5px;
    text-underline-thickness: 3px; 
    text-decoration: underline;
}

.solution .item:hover .title{
    color: var(--primary-color);
}

.solution .item:hover .more{
    color: var(--primary-color);
}

.solution .layui-flow-more{
    margin: 0;
    padding-top: 30px;
}

.solution .more-btn{
    background-color: unset;
}

.news .item{
    display: flex;
    align-items: center;
    padding: 50px 40px;
    background-color: #F0F0F0;
    margin-top: 45px;
}

.news .item:last-child{
    margin-bottom: 0;
}


.news .item .img{
    padding-bottom: 63.21%;
}

.news .item .left{
    flex: 0 0 31%;
    max-width: 31%;
}

.news .item .right{
    flex: 0 0 69%;
    max-width: 69%;
    padding-left: 45px;
    padding-right: 30px;
}

.news .item .date{
    font-size: 15px;
    font-family: 'Poppins-Regular';
    color: #666666;
    margin-bottom: 5px;
}

.news .item .title{
    font-size: 30px;
    color: #202020;
}

.news .item .intro{
    height: 60px;
    overflow: hidden;
    font-size: 15px;
    font-family: "Poppins-Regular";
    color: #666666;
    margin: 15px 0 40px 0;
    line-height: 2;
}

.news .item .more {
    font-size: 15px;
    padding: 12px 25px;
    border-radius: 30px;
    border: 1px solid #13294D;
    transition: all 0.5s;
    /* margin-top: 30px; */
}

.news .item .more span {
    color: var(--secondary-color);
    padding-right: 15px;
    border-right: 1px solid var(--secondary-color);
}

.news .item .more i {
    font-size: 15px;
    padding-left: 15px;
}

.news .item:hover .title{
    color: var(--primary-color);
}

.news .item:hover .more {
    background-color: var(--primary-color);
    border: 1px solid transparent;
}

.news .item:hover .more span {
    color: #fff;
    border-right: 1px solid #fff;
}

.news .item:hover .more i {
    color: #fff;
}

.contact-inquiry{
    background-color: #F8F8F8;
}

.contact-inquiry .form{
    padding: 35px 55px 40px 55px;
}

.contact-inquiry .left{
    margin-top: 0;
}

.contact-inquiry .right{
    flex: 0 0 45%;
    max-width: 45%;
    padding-left: 2%;
}


.contact-inquiry .subtitle{
    color: #202020;
    margin-top: 0;
}

.contact-inquiry .title{
    color: #202020;
    margin-bottom: 20px;
}

.contact-inquiry .info .item img{
    filter: brightness(0);
}

.contact-inquiry .info .title{
    color: #202020;
}

.contact-inquiry .info ul>li{
    color: #202020;
}

.contact-inquiry .intro{
    font-size: 15px;
}

.contact-inquiry .intro{
    color: #202020;
    line-height: 30px;
    margin-bottom: 30px;
    margin-right: 150px;
}

.contact-inquiry .form .row textarea{
    height: 150px;
}

.environment{
    padding-top: 0;
}

.environment .box{
    position: relative;
}

.environment .img{
    padding-bottom: 76.45%;
}

#environment-prev{
    left: -130px;
}

#environment-next{
    right: -130px;
}

.certificate{
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #F8F8F8;
}
.certificate .section-title{
    margin-bottom: 50px;
}
.certificate .box {
    position: relative;
    margin-left: -55px;
    margin-right: -55px;
}
.certificate .box .swiper-wrapper .swiper-slide .img{
    padding-bottom: 150%;
}
.certificate .box .swiper-slide {
    transition: 300ms;
    transform: scale(0.6);
}

.certificate .box .swiper-slide.swiper-slide-prev,
.certificate .box .swiper-slide.swiper-slide-next{
    transform: scale(0.8);
}

.certificate .box .swiper-slide.swiper-slide-prev{
    transform-origin: left;
}

.certificate .box .swiper-slide.swiper-slide-next{
    transform-origin: right;
}

.certificate .box .swiper-slide-active,
.certificate .box .swiper-slide-duplicate-active{
    transform: scale(1);
}
.certificate .box .btn-prev{
    left: -75px;
}

.certificate .box .btn-next {
    right: -75px;
}

.social-links {
    width: 345px;
    display: flex;
    flex-wrap: wrap;
    padding-top: 4rem;
}

.social-links .social-item {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin-top: 1rem;
    margin-right: 10px;
    transition: all 0.2s;
    border: 1px solid #3C3C3C;
    /* background-color: #f8f8f8; */
}

.social-links .social-item i {
    font-size: 16px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #999999;
}

.social-links .social-item:hover {
    background-color: #fff;
}

.social-links .social-item:hover i {
    color: var(--primary-color);
}

.social-links .social-item.tiktok {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links .social-item.tiktok img {
    filter: brightness(100);
}

.social-links .social-item.tiktok:hover img {
    filter: unset;
}

.social-links .social-item.twitter,
.social-links .social-item.tiktok {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links .social-item.twitter img,
.social-links .social-item.tiktok img {
    width: 18px;
    filter: grayscale(1) brightness(2);
}

.social-links .social-item.tiktok img {
    width: 20px;
}

.social-links .social-item.twitter:hover img,
.social-links .social-item.tiktok:hover img {
    filter: unset;
}

.solution-detail {
    padding-top: 0;
}

.solution-detail .right .img {
    padding-bottom: 66%;
    border: 1px solid #ECECEC;
    border-radius: 10px;
}

.solution-detail .right .text {
    margin-left: 40px;
    margin-right: 40px;
    padding: 50px;
    border-radius: 10px;
    background-color: #F8F8F8;
    margin-top: -120px;
    position: relative;
}

.solution-detail .right .text .title {
    font-size: 26px;
    font-family: "Poppins-Bold";
    margin-bottom: 30px;
    line-height: 42px;
}

.solution-detail .right .text .intro {
    font-size: 15px;
    font-family: 'Poppins-Regular';
    color: rgb(102, 102, 102);
    line-height: 2;
}

.solution-detail .right .text .article {
    margin-top: 30px;
}

.solution-detail .box .news-box {
    padding: unset;
    box-shadow: unset;
    background-color: unset;
    border-bottom: unset;
    margin-top: unset;
}

.solution-detail .box .news-box h3 {
    margin-bottom: 30px;
    font-family: 'Poppins-Medium';
}

.solution-detail .box .news-box .news-ul li .img {
    border-radius: unset;
}

.solution-detail .news-box .news-ul li .left {
    padding-right: 5px;
}

.solution-detail .box .news-box .news-ul li .right {
    height: 40px;
    overflow: hidden;
    font-size: 15px;
}

.solution-detail .cases-info-box .intro{
    font-family: "Poppins-Regular";
    color: rgb(102, 102, 102);
    line-height: 2;
}

.solution-detail .cases-info-box .btn{
    margin-top: 30px;
    font-size: 16px;
    padding: 9px 25px;
    border-radius: 6px;
}

.solution-detail .recommend h3{
    padding-top: 70px;
}

.solution-detail .recommend .box{
    padding: unset;
    background-color: unset;
    margin-bottom: 0;
}

.solution-detail .product-item{
    margin-bottom: 0;
}

.solution-detail .product-item .box .text .title{
    margin-bottom: 0;
}

.solution-detail .social-links {
    padding-top: 0;
}

.solution-detail .social-links .social-item {
    width: 37px;
    height: 37px;
    border-radius: 5px;
    margin-right: 15px;
    background-color: #070707;
    transition: all 0.5s;
}

.solution-detail .social-links .social-item.tiktok img {
    width: 22px;
    filter: grayscale(1) brightness(6);
}

.solution-detail .social-links .social-item.twitter img {
    width: 20px;
    filter: grayscale(1) brightness(5);
}

.solution-detail .social-links .social-item i {
    color: #fff;
    font-size: 19px;
}

.solution-detail .social-links .social-item:hover {
    background-color: var(--primary-color);
}

.solution-detail .box {
    padding: 35px 50px;
    background-color: #F8F8F8;
    border-radius: 10px;
    margin-bottom: 30px;
}

.solution-detail .box .title {
    font-size: 30px;
    font-family: 'Poppins-Medium';
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #DDDDDD;
}

.solution-detail .info li {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    margin-bottom: 25px;
    padding: 0 20px;
    border-radius: 5px;
}

.solution-detail .info .left {
    font-size: 20px;
    font-family: 'Poppins-Medium';
}

.solution-detail .info .right {
    color: #666666;
    font-size: 15px;
    font-family: 'Poppins-Regular';
    /* margin-left: 50px; */
    text-align: right;
}

.casedetail .news-box {
    margin-top: 0;
}

.casedetail {
    padding-top: 70px;
    padding-bottom: 80px;
}

.casedetail .img {
    padding-bottom: 58.77%;
}

.casedetail .left {
    padding-left: unset;
    padding-right: 55px;
}

.casedetail .left .title {
    font-size: 40px;
    font-family: 'Poppins-Bold';
    line-height: 55px;
}

.casedetail .left .specific .item {
    display: flex;
    align-items: center;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 45px;
}

.casedetail .left .specific .item:nth-child(even) {
    flex-direction: row-reverse;
}

.casedetail .left .specific .item:last-child {
    margin-bottom: unset;
}

.casedetail .left .specific .item .img {
    padding-bottom: 58.54%;
}

.casedetail .left .specific .item .title,
.casedetail .left .specific .item .intro {
    color: #000000;
}

.casedetail .left .specific .item .intro {
    line-height: 30px;
}

.casedetail .left .specific .item .text {
    padding-left: 30px;
}

.casedetail .left .specific .item:nth-child(even) .text {
    padding-left: 15px;
    padding-right: 30px;
}

.casedetail .other {
    position: sticky;
    top: 170px;
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding-right: unset;
}

.casedetail .other .title {
    font-size: 26px;
    font-family: 'Poppins-Medium';
    word-spacing: 3px;
    margin-bottom: 10px;
}

.casedetail .other .other-box {
    padding: 30px 20px 30px 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;
}

.casedetail .other .other-box .item .content {
    font-size: 18px;
}

.casedetail .other .other-box.news-box {
    background-color: #fff;
    padding: 35px 40px 30px;
    box-shadow: 0px 1px 30px 0px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--primary-color);
}


.casedetail .other hr {
    margin-top: 30px;
    margin-bottom: 30px;
}

.casedetail .other .example {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 8px 0 8px 0;
}

.casedetail .other .example .col-3 {
    flex: 0 0 24%;
    max-width: 24%;
    float: left;
    padding-left: 0;
}

.casedetail .other .example .col-3 .img {
    padding-bottom: 78%;
    border-radius: 5px;
}

.casedetail .other .example .col-7 {
    flex: 0 0 70%;
    max-width: 70%;
    float: left;
    padding-left: 5px;
}

.casedetail .other .example .col-7 .example-title {
    height: 42px;
    overflow: hidden;
}

.casedetail .other .example .col-7 .example-title a {
    color: #000000;
    line-height: 20px;
    transition: all 0.2s;
    font-size: 15px;
    font-family: 'Poppins-Medium';
}

.casedetail .other .example .col-7 .name a {
    color: #202020;
}

.casedetail .other .example:hover .col-7 .example-title a {
    color: var(--primary-color);
}

.casedetail .solution-detail {
    padding-top: 0;
    padding-bottom: 0;
}

.casedetail .inquiry-box {
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 30px;
    padding-bottom: 35px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;
    border: 1px solid #e1e1e1;
}

.casedetail .inquiry-box .title {
    font-size: 20px;
    color: #202020;
}

.casedetail .inquiry-box #form textarea {
    height: 100px;
}

.casedetail .inquiry-box #form input,
.casedetail .inquiry-box #form textarea {
    font-size: 12px;
}

.casedetail #form .formbtn {
    padding: 9px 0;
}

.casedetail .other hr {
    margin-top: 30px;
    margin-bottom: 20px;
    background-color: #e1e1e1;
}

.casedetail .other .bottom-line {
    border-bottom: 4px solid #a3906d;
}

.casedetail .news-item .info li {
    padding-right: 15px;
    border-right: 1px solid #B9B9B9;
}

.casedetail .news-item .info li:last-child {
    border-right: unset;
}

.casedetail .news-item .info li span {
    font-size: 15px;
}

.casedetail .intro {
    font-size: 20px;
    font-family: 'Poppins-Medium';
    color: rgb(102, 102, 102);
    line-height: 1.75;
    margin-right: 70px;
}

.casedetail .news-item .info {
    margin-top: 40px;
    margin-bottom: 40px;
}

.casedetail .article {
    margin-top: 30px;
}

.casedetail .news-item {
    padding-left: 0;
}

.solution-detail {
    padding-top: 80px;
}

.solution-detail #info{
    top: 170px;
    position: sticky;
}

.solution-detail .right .img {
    padding-bottom: 66%;
    border: 1px solid #ECECEC;
    border-radius: 10px;
}

.solution-detail .right .text {
    margin-left: 40px;
    margin-right: 40px;
    padding: 50px;
    border-radius: 10px;
    background-color: #F8F8F8;
    margin-top: -110px;
    position: relative;
}

.solution-detail .right .text .title {
    font-size: 30;
    font-family: "Poppins-Bold";
    margin-bottom: 30px;
    line-height: 42px;
}

.solution-detail .right .text .intro {
    font-size: 15px;
    font-family: 'Poppins-Regular';
    color: rgb(102, 102, 102);
    line-height: 2;
}

.solution-detail .right .text .article {
    margin-top: 30px;
}

.solution-detail .box .news-box {
    padding: unset;
    box-shadow: unset;
    background-color: unset;
    border-bottom: unset;
    margin-top: unset;
}

.solution-detail .box .news-box h3 {
    margin-bottom: 30px;
    font-family: 'Poppins-Medium';
}

.solution-detail .box .news-box .news-ul li .img {
    border-radius: unset;
}

.solution-detail .news-box .news-ul li .left {
    padding-right: 5px;
}

.solution-detail .box .news-box .news-ul li .right {
    height: 40px;
    overflow: hidden;
    font-size: 15px;
}

.solution-detail .cases-info-box .intro{
    font-family: "Poppins-Regular";
    color: rgb(102, 102, 102);
    line-height: 2;
}

.solution-detail .cases-info-box .btn{
    margin-top: 30px;
    font-size: 16px;
    padding: 9px 25px;
    border-radius: 6px;
}

.solution-detail .recommend h3{
    padding-top: 70px;
}

.solution-detail .recommend .box{
    padding: unset;
    background-color: unset;
    margin-bottom: 0;
}

.solution-detail .product-item{
    margin-bottom: 0;
}

.solution-detail .product-item .box .text .title{
    margin-bottom: 0;
}

.solution-detail .left{
    flex: 0 0 32%;
    max-width: 32%;
}

.solution-detail .right{
    padding-left: 50px;
    padding-right: unset;
}

.news{
    padding-top: 35px;
    padding-bottom: 80px;
}

.news .show-more{
    margin: 0;
    padding-top: 70px;
    background-color: #FFFFFF;
}

.news .more-btn{
    background-color: unset;
}

.news-item .box {
    position: relative;
}

.news-item .img {
    border-radius: 5px;
    padding-bottom: 82.92%;
}

.news-item .info {
    display: flex;
    margin-bottom: 10px;
}

.news-item .info li {
    margin-right: 20px;
}

.news-item .info li img {
    margin-right: 5px;
}

.news-item .info li span {
    font-size: 12px;
    font-family: 'Poppins-Medium';
}

.news-item .title {
    height: 79px;
    overflow: hidden;
    margin: 15px 0;
}

.news-item .title a {
    font-size: 18px;
    color: rgb(32, 32, 32);
    line-height: 1.5;
    font-family: 'Poppins-Medium';
    word-break: break-word;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
}

.news-item .text {
    margin-left: 0;
    margin-right: 20px;
    margin-top: -50px;
    border-radius: 5px;
    position: relative;
    background-color: #F8F8F8;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.news-item .more {
    text-decoration: underline;
    text-decoration-color: #b9b9b9;
    text-underline-offset: 5px;
    margin-top: 10px;
    transition: all 0.5s;
}

.news-item:hover .more a {
    color: var(--primary-color);
}

.news-item:hover .more {
    text-decoration-color: var(--primary-color);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 35px;
    }

    .section-subtitle {
        font-size: 25px;
    }

    .section-intro {
        font-size: 15px;
    }

    #placeholderBox {
        height: 70px;
    }

    #header {
        height: 70px;
        padding: 10px 0;
    }

    #header .logo img {
        max-height: 50px;
    }

    .btn-prev {
        left: 30px;
    }

    .btn-next {
        right: 30px;
    }
}

@media (min-width: 992px) {}

@media (min-width: 1200px) {
    .section-title {
        font-size: 40px;
        font-family: 'Poppins-Bold';
        text-transform: uppercase;
    }

    .section-subtitle {
        font-size: 30px;
    }

    .section-intro {
        color: #666666;
        font-size: 15px;
        font-family: 'Poppins-Regular';
        margin-top: 30px;
        margin-bottom: 0;
        line-height: 30px;
    }

    #placeholderBox {
        height: 0;
    }

    #header {
        height: 100px;
        padding: 15px 0;
    }

    #header .logo img {
        max-height: 70px;
        filter: brightness(100) grayscale(1);
        transition: all 0.2s;
    }

    .main-nav {
        display: block;
    }

    .main-nav a {
        padding: 0 34px;
    }

    .mobile-nav {
        display: none;
    }

    .mobile-nav-toggle {
        display: none;
    }

    .main-footer {
        display: block;
    }

    .mobile-footer {
        display: none;
    }

    .btn-prev {
        left: 180px;
    }

    .btn-next {
        right: 180px;
    }
}

@media (max-width: 767px) {
    section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .section-title {
        font-size: 25px;
    }

    .section-subtitle {
        font-size: 20px;
    }

    .section-intro {
        font-size: 15px;
    }

    #placeholderBox {
        height: 0;
    }

    #header {
        height: 50px;
        padding: 5px 0;
    }

    #header .logo img {
        max-height: 40px;
    }

    .mobile-nav-toggle i {
        margin: 10px 15px 0 0;
    }

    .btn-prev,
    .btn-next {
        width: 30px;
        height: 30px;
    }

    .btn-prev {
        left: 15px;
    }

    .btn-next {
        right: 15px;
    }

    .btn-prev i,
    .btn-next i {
        font-size: 15px;
    }

    .banner.mobile {
        display: block;
    }
}

@media (max-width: 768px) {
    #header .logo img {
        filter: brightness(100) grayscale(1);
        transition: all 0.2s;
    }

    .mobile-nav-toggle i{
        color: #fff;
    }

    .theme-black .mobile-nav-toggle i{
        color: var(--primary-color);
    }

    .mobile-footer{
        height: 100%;
        background-color: #333333;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .mobile-footer .row{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .mobile-footer .footer-img{
        width: 120px;
        margin: 0 auto;
        padding-bottom: 30px;
        text-align: center;
    }

    .mobile-footer .footer-img img{
        width: 110px;
    }

    .mobile-footer .nav-group{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .mobile-footer .nav-group .item{
        width: 26%;
        text-align: center;
        margin-bottom: 12px;
    }

    .mobile-footer .nav-group .item a{
        color: #999999;
        font-size: 15px;
        transition: all 0.5s;
    }

    .mobile-footer .nav-group .item a:hover{
        color: #fff;    
    }

    .mobile-footer .nav-group.footer-link{
        margin: 15px 0 0 0;
    }

    .mobile-footer .nav-group.footer-link .item{
        width: 33%;
    }
    
    .mobile-footer .info{
        text-align: center;
    }

    .mobile-footer .info h5{
        color: #999999;
        font-size: 18px;
        font-weight: 100;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .mobile-footer .info .phone{
        color: #fff;
        font-size: 20px;
        font-family: 'Poppins-Light';
        margin-top: 5px;
        margin-bottom: 15px;
    }
    .mobile-footer .info p{
        color: #999999;
        font-size: 12px;
        line-height: 20px;
        margin-top: 10px;
    }

    .icon-group .item:first-child img{
        width: 16px;
        height: 16px;
    }

    .icon-group .item{
        width: 33px;
        height: 33px;
        margin: 0 10px;
    }

    .icon-group .item i{
        font-size: 16px;
    }

    .swiper-container-fullpage .swiper-slide .swiper-content .icon{
        height: 75px;
    }

    .swiper-container-fullpage .index-carousel .swiper-content h3{
        font-size: 24px!important;
        font-family: 'Poppins-Medium';
        padding: 15px 20px 10px 0 !important;
        line-height: 40px;
    }

    .swiper-container-fullpage .swiper-slide .swiper-content p{
        font-size: 14px;
        line-height: 25px;
    }

    .swiper-container-fullpage .swiper-slide .swiper-content{
        top: 0;
    }

    #fullpageWrapper .swiper-container-fullpage-pagination{
        right: 15px!important;
    }

    #fullpageWrapper .swiper-container-fullpage-pagination .swiper-pagination-bullet{
        width: 10px;
        height: 10px;
        margin: 13px 0 !important;
    }
    
    #fullpageWrapper .swiper-pagination-bullet.swiper-pagination-bullet-active{
        width: 11px;
        height: 11px;
        /* margin: 17px 0 !important; */
    }
    
    .about-us .right{
        width: 100%;
    }

    .fullpage-wrapper h3{
        font-size: 40px !important;
    }

    .fullpage-wrapper h5{
        font-size: 30px;
        margin-top: -10px;
    }

    .swiper-container-fullpage .about-us .btn{
        font-size: 13px;
        padding: 8px 25px;
    }

    .swiper-container-fullpage .about-us .swiper-content{
        top: 0px;
    }

    .index-product .content .item{
        padding-left: 0;
    }

    .index-product .section-title{
        left: 15px;
    }

    .index-product .content img{
        height: 50px;
    }

    .index-product .content h5{
        display: flex;
        align-items: center;
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
        height: 52px;
        overflow: hidden;
    }
    .index-product .content .btn{
        width: 40px;
        height: 40px;
    }
    .index-product .content .btn i{
        font-size: 25px;
    }
    .index-product .content .box{
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .index-product .section-title{
        top: 95px;
    }
    .index-product .content .box a{
        text-align: center;
    }
    .index-solution .section-title{
        left: 15px;
        top: 80px;
    }
    .index-solution .content{
        display: flex;
        flex-wrap: wrap;
        align-content: flex-end;
    }
    .index-solution .content .item{
        width: 50%;
        height: unset;
    }
    .index-solution .content .item .text{
        left: 15px;
        right: 0;
        padding: 0;
        justify-content: center;
    }
    .index-solution .content .item .text span{
        font-size: 15px;
        height: unset;
    }
    .index-solution .content .item .text .line{
        width: 50px;
        height: 2px;
        margin-top: 20px;
    }
    .index-inquiry .left,.index-inquiry .right{
        flex: 0 0 100%;
        max-width: 100%;
    }
    .index-inquiry .title{
        font-size: 22px;
        margin-bottom: 20px;
    }
    .index-inquiry .subtitle{
        font-size: 18px;
        margin-top: 10px;
    }
    .index-inquiry .info ul>li{
        margin-right: 20px;   
    }
    .index-inquiry .info .title{
        font-size: 15px;
    }
    .index-inquiry .info ul>li{
        font-size: 12px;
        line-height: 22px;
    }
    .index-inquiry .info .item{
        margin-bottom: 15px;
    }
    .form{
        padding: 20px;
    }
    .swiper-container-fullpage .swiper-slide:nth-last-child(1){
        height: unset;
    }
    .product-types .item{
        flex-direction: column;
    }
    .product-factory .factory-next{
        right: 5px;
    }
    .product-factory .factory-prev{
        left: 5px;
    }
    .index-inquiry h3{
        font-size: 40px!important;
    }
    .index-inquiry h5{
        font-size: 30px;
        margin-top: -10px;
    }
    .product-adv .row{
        margin-top: 10px;
    }
    .product-adv .item .img-box{
        width: 100px;
        height: 100px;
    }
    .product-adv .item .img-box img{
        height: 35px;
    }
    .product-adv .item{
        margin-top: 20px;
    }
    .product-adv .item h5{
        font-size: 18px;
        margin: 20px 0 10px 0;
        height: 43px;
        overflow: hidden;
    }
    .product-adv .item p{
        font-size: 12px;
        height: 180px;
    }
    .product-what .section-intro{
        font-size: 13px;
        margin-top: 20px;
    }
    .banner .img{
        padding-bottom: 50%;
    }
    .banner .text .title{
        font-size: 18px;
    }
    .more-btn{
        font-size: 13px;
        padding: 2px 27px;
    }
    .breadcrumb .container{
        padding-left: 0;
        padding-right: 0;
    }
    .product-what .item{
        margin-top: 25px;
    }
    .product-what .item .text a{
        font-size: 15px;
    }
    .product-what .item .text{
        height: 56px;
    }
    .product-what .item:nth-child(odd){
        padding-right: 7.5px;
    }
    .product-what .item:nth-child(even){
        padding-left: 7.5px;
    }
    .product-what .more-btn{
        font-size: 12px;
        padding: 1px 20px;
    }
    .product-benefits .row{
        margin-left: -15px;
        margin-right: -15px;
        margin-top: 20px;
    }
    .product-benefits .section-title{
        margin: 0 20px;
    }
    .product-benefits .item{
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 25px;
    }
    .product-benefits .item:last-child{
        margin-bottom: unset;
    }
    .product-benefits .item .box{
        padding: 35px 25px 45px 25px;
    }
    .product-benefits .item .box h5{
        margin: 25px 0 18px 0;
        height: auto;
    }
    .product-benefits .item .box .number{
        font-size: 45px;
        bottom: 1px;
    }
    .product-char .row{
        margin-top: 10px;
    }
    .product-char .item{
        margin-top: 25px;
    }
    .product-char .item .box{
        padding: 30px 30px 25px 30px;
    }
    .product-char .item h5{
        font-size: 22px;
        margin-bottom: 15px;
    }
    .product-char .item p{
        font-size: 13px;
        height: auto;
        line-height: 25px;
    }
    .product-application .content{
        display: flex;
        flex-wrap: wrap;
    }
    .product-application .content .item{
        flex: unset;
        width: 50%;
    }
    .product-application .section-title{
        top: 30px;
    }
    .product-application .text{
        padding: 20px;
        background-color: rgba(40, 38, 70, 0.7);
    }
    .product-application .text h5{
        height: 50px;
        font-size: 22px;
        line-height: 25px;
        margin-bottom: 10px;
    }
    .product-application .text p{
        font-size: 13px;
        line-height: 20px;
        height: 200px;
        overflow: hidden;
    }
    #application .item::before{
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(40, 38, 70, 0.8);
    }
    .product-types .row{
        display: block;
    }
    .product-types .section-title{
        margin-bottom: 20px;
    }
    .product-types .container .row{
        margin-top: 0;
    }
    .product-types .item{
        margin-top: 0;
    }
    .product-types .item .left, .product-types .item .right {
        padding-left: 15px;
        padding-right: 15px;
    }
    .product-types .item .right{
        border: unset;
        padding: 20px;
    }
    .product-types .item .right p{
        font-size: 13px;
    }
    .product-types .item:nth-child(even){
        flex-direction: column;
    }
    .product-use .section-title{
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 50px;
    }
    .timeline-hover{
        max-height: calc(100% - 200px);
    }
    .timeline::before{
        height: calc(100% - 200px);
    }
    .timeline .title{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .timeline .intro{
        font-size: 13px;
        line-height: 25px;
    }
    .product-charact .section-title{
        margin-bottom: 20px;
    }
    .product-charact .left,.product-charact .right{
        flex: 0 0 100%;
        max-width: 100%;
    }
    .product-charact .item:first-child{
        margin-top: 20px;
    }
    .product-charact .item .box{
        padding: 30px;
    }
    .product-charact .item p{
        font-size: 14px;
        line-height: 25px;
    }
    #process{
        padding-bottom: 50px;
    }
    .product-process .section-title{
        margin-bottom: 25px;
    }
    .product-process .intro{
        line-height: 27px;
        margin: 0 15px;
    }
    .product-process .icon,.product-process .icon img{
        width: 80px;
        height: 80px;
    }
    .product-process .number{
        font-size: 27px;
    }
    #process #processPagination .swiper-pagination-bullet{
        width: 13px;
        height: 13px;
    }
    #process #processPagination .swiper-pagination-bullet-active{
        width: 30px;
    }
    .product-remove .left{
        padding-right: 15px;
    }
    .product-remove .left .section-title{
        font-size: 22px;
        line-height: 30px;
        margin-top: 15px;
        margin-bottom: 10px;
    }
    .product-remove .left p{
        font-size: 14px;
        line-height: 27px;
    }
    .product-remove .row{
        flex-direction: column-reverse;
    }
    .product-factory .section-intro{
        margin-top: 20px;
        font-size: 14px;
        padding: 0;
    }
    .product-faq{
        padding-top: 30px;
    }
    .product-faq .section-title{
        padding-bottom: 25px;
    }
    .faq-list .question{
        font-size: 15px;
        padding: 20px 15px;
    }
    .faq-list .question::after{
        font-size: 22px;
        right: 15px;
    }
    .faq-list .answer{
        font-size: 13px;
        line-height: 25px;
        padding: 13px 15px;
    }
    .faq-list .show-more{
        margin-top: 2.5rem;
    }
    .form{
        border-radius: 5px;
        padding: 5px 20px 15px 20px;
    }
    .inquiry{
        padding-top: 0;
        padding-bottom: 40px;
    }
    .index-inquiry .left{
        margin-top: 40px;
    }
    .index-inquiry .right{
        padding-left: 15px;
        margin-top: 30px;
    }
    .index-inquiry .title{
        font-size: 22px;
        margin-bottom: 10px;
    }
    .index-inquiry .subtitle{
        font-size: 13px;     
        margin: 0 0 10px 0;
    }
    .inquiry .subtitle{
        margin: 10px 0 10px 0;
    }
    .contact-inquiry .left{
        margin-top: 20px;
    }
    .form .row .item{
        padding-left: 15px;
        padding-right: 15px;
    }
    .form .row .item:nth-child(1), .form .row .item:nth-child(3){
        padding-right: 15px;
    }
    .form .row .item:nth-child(2), .form .row .item:nth-child(4){
        padding-left: 15px;
    }
    .form .row input, .form .row select, .form .row textarea{
        font-size: 12px;
        padding: 6px 12px 6px 18px;
    }
    .form .row input, .form .row select, .form .row textarea{
        height: 36px;
    }
    .form .row textarea{
        height: 100px;
    }
    .form button{
        font-size: 13px;
        margin-top: 0;
        margin-left: 15px;
        margin-right: 15px;
        height: 36px;
    }
    .form .footer-intro{
        margin-left: 15px;
    }
    .about{
        padding-top: 20px;
    }
    .about h2{
        font-size: 55px;
    }
    .about h3{
        font-size: 30px;
        line-height: 40px;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .about .left p{
        font-size: 14px;
        line-height: 27px;
        padding-right: 0;
    }
    .about .right img{
        position: unset;
        margin-top: 25px;
    }
    .environment .section-title{
        margin-bottom: 20px;
    }
    #environment-next{
        right: 5px;
    }
    #environment-prev{
        left: 5px;
    }
    .certificate{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .certificate .section-title{
        margin-bottom: 20px;
    }
    .certificate .box{
        margin-left: 0;
        margin-right: 0;
        padding: 0 60px 0 60px;
    }
    /* .certificate .box .swiper-slide{
        transform: unset;
    }
    .certificate .box .swiper-slide-active, .certificate .box .swiper-slide-duplicate-active{
        transform: unset;
    }
    .certificate .box .swiper-slide.swiper-slide-prev, .certificate .box .swiper-slide.swiper-slide-next{
        transform: unset;
    } */
    .certificate .box .btn-prev{
        left: 5px;
    }
    .certificate .box .btn-next{
        right: 5px;
    }
    .product-detail-1 {
        padding-top: 20px;
        padding-bottom: 3rem;
    }

    .product-detail-1 .left,
    .product-detail-1 .right {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        max-width: unset;
        flex: unset;
    }

    .product-detail-1 .left {
        margin-bottom: 1rem;
    }

    .product-detail-1 .right {
        padding-top: 2rem;
    }
    .product-detail-1 .right .box {
        padding: 20px 15px;
    }
    .product-detail-1 .right .title {
        font-size: 25px;
        height: unset;
        margin-bottom: 2rem;
        padding-bottom: 0;
    }
    .product-detail-1 .right .btn-group {
        position: unset;
        bottom: 0;
        margin-top: 30px;
    }
    .product-detail-1 .right .btn-group .item {
        width: 140px;
        align-items: center;
    }
    .product-detail-2 {
        padding-top: 0rem;
        padding-bottom: 3rem;
    }

    .product-detail-2 .detail-tab .item {
        font-size: 17px;
        padding: 13px 0;
    }
    .product-detail-1 .right .btn-group .item {
        padding: 10px 15px;
        font-size: 14px;
    }
    .product-detail-1 .right .btn-group .item.contact{
        padding: 10px 20px;
    }
    .product-detail-1 .right .title{
        margin-bottom: 20px;
    }
    .product-detail-1 .right .intro{
        margin-top: 20px;
    }
    .detail-tab-content-box > div{
        padding: 2rem 0 0 0;
    }
    .detail-tab-content-box > div.active iframe{
        height: 220px;
    }
    .faq-list li{
        border-radius: 0;
    }
    .faq-list .question{
        padding: 15px 15px;
    }
    .faq-list .question::after{
        top: 32%;
    }
    .related-products{
        padding-bottom: 30px;
    }
    .related-products .related-next{
        right: 5px;
    }
    .related-products .related-prev{
        left: 5px;
    }
    .solution-category .item{
        width: 50%;
        flex: unset;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .solution-category .item a{
        padding: 15px;
    }
    #solution-flow .row{
        display: block;
    }
    .solution .item{
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 30px;
        padding-bottom: 30px;
        flex-direction: column;
    }
    .solution .item .left, .solution .item .right{
        padding-left: 15px;
        padding-right: 15px;
    }
    .solution .item .right .title{
        font-size: 17px;
        margin-top: 15px;
    }
    .solution .item .right p{
        font-size: 13px;
        margin: 9px 0 10px 0;
        line-height: 23px;
        height: auto;
    }
    .solution .item .right .more{
        font-size: 17px;
    }
    .solution .item:nth-child(even){
        flex-direction: column;
    }
    .solution .item:nth-child(even) .right{
        padding-left: 15px;
        padding-right: 15px;
    }
    .solution .layui-flow-more{
        padding-top: 10px;
    }
    .solution .item .right .more{
        font-size: 15px;
    }
    .solution-detail .box{
        padding: 25px 20px;
    }
    .solution-detail .box .title{
        font-size: 25px;
    }
    .solution-detail .info li{
        height: 50px;
        margin-bottom: 18px;
    }
    .solution-detail .info .left{
        font-size: 18px;
        flex: unset;
    }
    .solution-item .text{
        margin: 0;
    }
    .solution-detail .box{
        margin-bottom: 40px;
    }
    .solution-detail .right .text{
        padding: 20px;
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
    }
    .solution-detail .right .text .title{
        font-size: 22px;
        margin-bottom: 20px;
    }
    .solution-detail .right .text .intro{
        font-size: 14px;
        line-height: 1.6;
    }
    .solution-detail .detail .item{
        flex-direction: column;
        margin-bottom: 30px;
    }
    .solution-detail .info li{
        padding: 0 0 0 15px;
    }
    .solution-detail .detail .item:nth-child(even){
        flex-direction: column;
    }
    .solution-detail .detail .item .right{
        padding: 20px;
    }
    .solution-detail .box .news-box h3{
        margin-bottom: 20px;
    }
    .solution-detail .box .title{
        margin-bottom: 15px;
    }
    .solution-detail .box .news-box .news-ul li .right{
        font-size: 15px;
        height: 46px;
    }
    .solution-detail .cases-info-box .btn{
        font-size: 15px;
        padding: 6px 22px;
        margin-top: 20px;
    }
    .solution-detail{
        padding-top: 30px;
    }
    .solution-detail .left{
        flex: 0 0 100%;
        max-width: 100%;
    }
    .solution-detail #info{
        top: 0;
        position: unset;
    }
    .solution-detail .recommend h3{
        padding-top: 0;
    }
    .solution-detail .solutions-box{
        margin-top: 30px;
    }
    .solution-detail .right .text .title{
        line-height: 35px;
    }
    .solution-detail .right .text .article{
        margin-top: 10px;
    }
    .solution-detail .right{
        padding-left: 15px;
        padding-right: 15px;
    }
    .social-links{
        width: 100%;
    }
    #news-flow .row{
        display: block;
        padding: 0 15px;
    }
    .news{
        padding-top: 0;
        padding-bottom: 30px;
    }
    .news .item{
        flex-direction: column;
        padding: 25px 20px 40px 20px;
        margin-top: 30px;
    }
    .news .item:first-child{
        margin-top: 15px;
    }
    .news .item .left,.news .item .right{
        flex: 0 0 100%;
        max-width: 100%;
    }
    .news .item .left,.news .item .right{
        padding-left: 0;
        padding-right: 0;
    }
    .news .item .intro{
        font-size: 13px;
        line-height: 1.8;
        height: auto;
        margin: 6px 0 20px 0;
    }
    .news .item .date{
        font-size: 14px;
        margin-top: 15px;
    }
    .news .item .title{
        font-size: 16px;
    }
    .news .item .more{
        font-size: 12px;
        padding: 8px 19px;
    }
    .news .item .more span{
        padding-right: 10px;
    }
    .news .item .more i{
        font-size: 12px;
        padding-left: 10px;
    }
    .news .show-more{
        padding-top: 30px;
    }
    .casedetail{
        padding-top: 20px;
    }
    .casedetail{
        padding-bottom: 40px;
    }
    .casedetail .left{
        padding-right: 0;
    }
    .casedetail .left .title{
        font-size: 25px;
        line-height: 40px;
    }
    .casedetail .news-item{
        padding-right: 0;
        margin-bottom: 30px;
    }
    .casedetail .news-item .info{
        margin-top: 25px;
        margin-bottom: 0;
    }
    .casedetail .article{
        margin-top: 10px;
    }
    .casedetail .other{
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0;
        margin-top: 35px;
    }
    .casedetail .other hr{
        margin-top: 20px;
        margin-bottom: 10px;
    }
    .casedetail .other .other-box.news-box{
        padding: 20px 20px 30px 25px;
    }
    .casedetail .other .example .col-3{
        flex: 0 0 30%;
        max-width: 30%;
    }
    .casedetail .other .example .col-7{
        flex: 0 0 70%;
        max-width: 70%;
        padding-right: 0;
    }
    .contact-inquiry .intro{
        margin-right: 0;
    }
    .contact-inquiry .form{
        padding: 10px 15px 15px 15px;
    }
    .map iframe{
        height: 300px!important;
    }
    .product-benefits .item .box p{
        height: auto;
    }
    .product-what .layui-flow-more{
        padding-top: 30px;
    }
    .swiper-container-fullpage .about-us{
        background-size: cover;
    }
    .swiper-container-fullpage .about-us::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.65);
    }
    .product-application .content .item{
        width: 100%;
    }    
    .product-application .img{
        padding-bottom: 130%;
    }
    .product-application-wap{
        padding-bottom: 0;
    }
    #applicationPagination{
        bottom: -15px;
        position: relative;
        height: 43px;
    }
    .mobile-footer .info .phone{
        margin-bottom: 5px;
    }
    .product-types .item .right p {
        height: auto;
    }
    .mobile-nav .flag-li .current-flag .d-block{
        display: inline-block!important;
    }
    .mobile-nav .flag-li ul li img{
        margin-right: 8px;
    }
}


@media (min-width: 1024px) and (max-width: 1600px) {
    .container{
        max-width: 1230px;
    }
    .main-nav a{
        font-size: 17px;
        padding: 0 32px;
    }
    .fullpage-wrapper h3{
        font-size: 85px!important;
    }
    .fullpage-wrapper h5{
        font-size: 50px;
    }
    #fullpageWrapper .swiper-pagination-bullet.swiper-pagination-bullet-active{
        width: 18px;
        height: 18px;
    }
    .swiper-container-fullpage .swiper-slide .swiper-content .icon{
        height: 120px;
    }
    .swiper-container-fullpage .index-carousel .swiper-content h3{
        font-size: 40px!important;
        line-height: 55px;
    }
    .swiper-container-fullpage .swiper-slide .swiper-content p{
        font-size: 18px;
    }
    #fullpageWrapper .swiper-container-fullpage-pagination{
        right: 30px!important;
    }
    .about h3{
        font-size: 50px;
    }
}