@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-medium';
    src: url('../../font/POPPINS-MEDIUM.TTF');
}

@font-face {
    font-family: 'poppins-light';
    src: url('../../font/POPPINS-LIGHT.TTF');
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --primary-color: #1c6dbf;
    --secondary-color: #D02127;
}

body {
    background: #FFF;
    font-size: 18px;
}

a {
    color: #bfbfbf;
}

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

section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

blockquote {
    border-left: unset;
}

@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }

    .related_container {
        max-width: 1786px;
        margin: 0 auto;
    }
}

.swiper-container{
    position: relative;
}

.theme-color {
    color: var(--primary-color)
}

.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;
}

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

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


.img-contain{
    object-fit: contain!important;
}

.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%;
}

.prev-btn,
.next-btn {
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    box-shadow: 0px 1px 10px 0px rgba(32, 32, 32, 0.3);
    background-color: #fff;
    transform: translateY(-50%);
    transition: all 0.3s;
    color: #000;
    z-index: 99;
}

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

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

.prev-btn {
    top: 50%;
    left: 0;
}

.next-btn {
    top: 50%;
    right: 0;
}

.more-btn {
    font-size: 20px;
    color: #FFF;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
}

/*--------------------------------------------------------------
# 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;
    right: 32px;
    bottom: 32px;
    transition: background 0.5s;
    z-index: 11;
}

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

/*--------------------------------------------------------------
# Recommend Products
--------------------------------------------------------------*/

.related-products.details-related-products .index-1 .subtitle{
    margin-bottom: 30px;
}

.related-products {
    padding-top: 0rem;
    padding-bottom: 0rem;
}


.related-products .container{
    width: 100%;
}

.related-products .section-title {
    padding-bottom: 4rem;
}

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

.related-products .box .img {
    padding-bottom: 100%;
}

.related-products .box .text {
    font-family: "poppins-medium", sans-serif;
    font-size: 15px;
    text-align: center;
    padding: 0 15px;
    margin: 10px 0;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: 0.5s;
}

.related-products .box .product-name {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    text-align: center;
    padding: 8px 12px;
    height: 68px;
    font-size: 17px;
    overflow: hidden;   
    background-color: var(--primary-color);
}

.related-products .box .part {
    height: 135px;
    overflow: hidden;
    padding: 19px 25px 23px 20px;
}

.related-products .box .part .img img {
    padding: 2rem;
}

.related-products .box .part .intro {
    display: block;
    width: 100%;
    margin-bottom: 12px;
}

.related-products .box .part .intro .icon {
    margin-top: 5px;
}

.related-products .box .part .intro:last-child{
    margin-bottom: 0;
}

.related-products .box .part .intro span {
    font-family: 'Poppins-Regular';
    padding-left: 15px;
}

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

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

.related-products .swiper-slide {
    border: 1px solid var(--primary-color);
}

.related-products .item:hover .text {
    color: var(--primary-color);
}

.details-related-products .index-1{
    padding: 30px 0 80px 0;
}

.details-related-products .index-1 .title{
    padding-bottom: 10px;
}

.details-related-products .index-1 .subtitle{
    color: var(--primary-color);
}

.related-prev,
.related-next {
    color: #000;
}

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

.index-news #news{
    margin-top: 30px;
    padding-bottom: 70px;
    padding-left: 1px;
    padding-right: 1px;
}

.index-news .container{
    width: 100%;
    max-width: 1255px;
}

.index-news .subtitle{
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 5px;
}

.index-news .title{
    font-size: 38px;
    margin-bottom: 30px;
}

#index-news-prev{
    left: -175px;
}

#index-news-next{
    right: -175px;
}

#index-news-prev,#index-news-next{
    top: 45%;
}
.news .news-item{
    margin-bottom: 30px;
}

.news-item  .box{
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

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

.news-item .date{
    color: #fff;
    position: absolute;
    top: 25px;
    right: 20px;
    background-color: var(--primary-color);
    padding: 11px 11px 7px 11px;
}

.news-item .date .day{
    font-size: 25px;
    font-family: 'Poppins-Bold';
    line-height: 25px;
}

.news-item .date .month{
    font-size: 15px;
    font-family: 'Poppins-Regular';
    text-transform: uppercase;
}

.news-item .info{
    display: flex;
    padding: 8px 20px 8px 20px;
    background-color: #F4F5F8;
}

.news-item .info li:nth-child(1){
    margin-right: 15px;
}

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

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

.news-item.article-item .info li span{
    margin-right: 10px;
}

.news-item .text{
    padding: 15px 15px 22px 20px;
    background-color: #fff;
}

.news-item .text .title{
    color: #333333;
    font-size: 19px;
    /* height: 45px; */
    line-height: 1.6;
    overflow: hidden;
    margin-bottom: 10px;
}

.news-item .text .more{
    font-size: 15px;
    color: #333333;
    display: flex;
    align-items: center;
    transition: all 0.5s;
}

.news-item .text .more a{
    text-transform: uppercase;
}

.news-item .text .more .line{
    width: 60%;
    height: 1px;
    background-color: #DCDCDC;
    margin: 0 15px;
    transition: all 0.5s;
}

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

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

/* .related-prev i,
.related-next i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    font-weight: bold;
} */

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background-color: #FFF;
    z-index: 999;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.5s;
    box-shadow: 4px -9px 16px #272424;
}

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

#header .container:before, .container:after {
    display: unset;
    content: unset;
}

/*--------------------------------------------------------------
# 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;
    font-size: 19px;
}

.main-nav a {
    display: block;
    position: relative;
    color: #000;
    padding: 0 35px;
    transition: 0.3s;
}

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

.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;
    border-top: 6px solid var(--primary-color);
    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 .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:after {
    content: "\f107";
    font-family: FontAwesome;
    padding-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;
}

.main-nav .nav-contact-btn {
    font-size: 17px;
    height: 44px;
    line-height: 44px;
    margin: 13px 0 13px 25px;
    border-radius: 30px;
    background-color: var(--primary-color);
}

.main-nav .nav-contact-btn a {
    color: white;
    padding: 0 25px;
}

.main-nav .nav-contact-btn a:hover {
    color: white;
}


.main-nav .country{
    width: 110px;
    text-align: center;
}
/*--------------------------------------------------------------
# Products Catalogue
--------------------------------------------------------------*/
.product-catalogue .container {
    width: 100%;
}

.product-catalogue .container-fluid {
    padding-left: 0px;
    padding-right: 0px;
}

.product-catalogue {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background: #f6f6f6;
}

.product-catalogue .img {
    padding-bottom: 47%;
}

.catalogue-box:hover .img-hover {
    cursor: pointer;
    opacity: 1;
}

.product-catalogue .img-hover {
    position: absolute;
    top: 0;
    bottom: 30px;
    right: 15px;
    left: 15px;
    background-color: rgba(0, 0, 0, 0.37);
    opacity: 0;
    transition: 0.3s;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-catalogue .img-hover .name a {
    color: #fff;
}

.product-catalogue .img-hover .more a {
    color: #fff;
    font-family: 'poppins-regular';
    text-decoration: underline;
}

/*--------------------------------------------------------------
# service
--------------------------------------------------------------*/
.service {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background: var(--primary-color);
}

.service .container {
    width: 100%;
    max-width: 1600px;
}

.service .container-fluid {
    padding-left: 0px;
    padding-right: 0px;
}

.service .icon {
    height: 68px;
}

.service .intro {
    color: #cccccc;
    font-family: 'poppins-regular';
    margin: 0 12%;
}

/*--------------------------------------------------------------
# company
--------------------------------------------------------------*/
.company {
    padding-top: 0rem;
    padding-bottom: 0rem;
}

.company .container {
    width: 100%;
    max-width: 1255px;
}

.company .container-fluid {
    padding-left: 0px;
    padding-right: 0px;
}

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

.company .slogan {
    margin-right: 5%;
}

.company .intro {
    color: #202020;
    line-height: 2.3;
}

.company .more {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    text-align: center;
    width: 175px;
    padding: 10px 0;
}

.company .img{
   padding-bottom: 67.5%; 
}

.company .left{
    width: 53%;
    padding-right: 60px;
}

.company .right{
    width: 47%;
}

/*--------------------------------------------------------------
# promise
--------------------------------------------------------------*/
.promise {
    padding-top: 0rem;
    padding-bottom: 0rem;
    background: #f6f6f6;
}

.promise .box{
    display: flex;
    align-items: center;
}

.promise .container {
    width: 100%;
    max-width: 1255px;
}

.promise .container-fluid {
    padding-left: 0px;
    padding-right: 0px;
}

.promise .intro {
    line-height: 2;
}

.promise .slogan {
    margin-right: 15%;
}

.promise .promise-box {
    padding: 4.7rem;
    background-color: #fff;
    /*box-shadow: rgb(0 0 0 / 7%) 0px 0px 11px;*/
    box-shadow: rgba(0, 0, 0, 0.07) 0 0 11px;
    border-radius: 15px;
}

.promise .promise-box .describe {
    height: 86px;
    font-family: 'Poppins-Regular';
    line-height: 1.7;
}

/*--------------------------------------------------------------
# plate
--------------------------------------------------------------*/
.plate {
    padding-top: 0rem;
    padding-bottom: 0rem;
}

.plate .container {
    width: 100%;
}

.plate .container-fluid {
    padding-left: 0px;
    padding-right: 0px;
}

.plate .title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.plate .bar-line {
    width: 5px;
    height: 30px;
    background: var(--primary-color);
    display: inline-block;
    margin-right: 1.8rem;
}

.plate .intro {
    font-size: 12px;
    line-height: 2;
}

.plate .more {
    font-size: 12px;
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 0.3rem;
}

.plate .jump {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 25px;
}

.plate .jump span {
    display: flex;
    align-items: center;
}

.plate .jump a {
    color: white;
}

.plate .news-box {
    display: flex;
    border: 1px solid #cccccc;
}

.plate .news-box .img {
    width: 23%;
    padding-bottom: 18.6%;
}

.plate .news-box .intro {
    width: 77%;
    line-height: 30px;
    padding: 10px 20px;
}

.plate .news-box .intro .more {
    font-size: 12px;
    color: #202020;
    text-decoration: underline;
}

.products {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

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

.products .container {
    width: 100%;
    max-width: 1255px;
}

.products .row {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
}

.products .list .row{
    margin-left: -15px;
    margin-right: -15px;
}

.products .title {
    display: flex;
    align-items: center;
    font-size: 26px;
}

.products .bar-line {
    width: 5px;
    height: 25px;
    background: var(--primary-color);
    display: inline-block;
    margin-right: 1.3rem;
}

.products .filter {
    margin-top: 1rem;
    width: 25%;
    display: block;
}

.products .filter-mobile {
    display: none;
}

.products .list {
    width: 75%;
    padding-left: 3%;
}

.products .filter-title {
    font-family: 'poppins-medium', sans-serif;
    font-size: 20px;
    background-color: #fff;
    padding: 0 1rem;
    margin: 10px 0;
    border-left: 3px solid var(--primary-color);
}

.products .filter .level-1 li {
    background-color: #EEEEEE;
    padding: 13px 2rem;
}

.products .filter .level-1 li a {
    font-family: 'poppins-medium', sans-serif;
    font-size: 15px;
    color: #202020;
    transition: 0.5s;
}

.products .filter .level-1 li a:hover {
    color: var(--primary-color);
}

.products .filter .level-1 li.active {
    background-color: var(--primary-color);
}

.products .filter .level-1 li.active a {
    color: #FFF;
}

.products .filter .level-2 li:first-child {
    border-top: none;
}

.products .filter .level-2 li {
    background-color: #FFF;
    border-top: 1px solid #EEEEEE;
    border-left: 1px solid #EEEEEE;
    border-right: 1px solid #EEEEEE;
}

.products .filter .level-2 li a {
    font-family: 'poppins-medium', sans-serif;
    font-size: 15px;
    color: #999999;
}

.products .filter .level-2 li.active {
    background-color: #057FCA;
}

.products .filter .level-2 li.active a {
    color: #FFF;
}

.products .list .item {
    margin-top: 1rem;
}

.products .list .img {
    padding-bottom: 100%;
    box-shadow: 1px 1px 10px #f0f0f0;
}

.products .list .text {
    height: 36px;
    padding: 0 20px;
    margin: 15px 0 15px 0;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.products .list .text .title {
    justify-content: center;
    text-align: center;
    font-family: 'poppins-medium', sans-serif;
    font-size: 16px;
    color: #202020;
}

.products .list .item:hover .text > .title {
    transition: all 0.5s;
    color: var(--primary-color);
}

.product-feature{
    padding-top: 60px;
    padding-bottom: 30px;
}

.product-feature h3{
    font-size: 40px;
}

.product-feature .container{
    width: 100%;
    max-width: 1255px;
}

.product-feature ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 55px;
}

.product-feature ul > li{
    width: 48%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #DADADA;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.product-feature ul > li:nth-child(1),.product-feature ul > li:nth-child(2){
    border-top: 1px solid #DADADA;
    padding-top: 25px;
}

.product-feature ul > li .left{
    color: #202020;
    padding-left: 0;
    width: 40%;
}

.product-feature ul > li .right{
    color: #666666;
    padding-right: 0;
    width: 60%;
}

.product-feature ul > li .left,.product-feature ul > li .right{
    font-size: 18px;
    word-wrap: break-word;
    font-family: 'Poppins-Regular';
}

.product-detail-1 .container {
    width: 100%;
    max-width: 1255px;
}

.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;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    width: 30px;
    height: 100%;
    background-color: #F4F4F4;
    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 {
    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 #dfdddd;
}

.thumbs-box .swiper-slide.swiper-slide-thumb-active .img {
    border-color: var(--primary-color);
}

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

.product-detail-1 .right {
    position: relative;
    background-color: #F3F3F3;
    padding: 50px;
}

.product-detail-1 .right .title {
    /* height: 80px; */
    font-family: 'poppins-medium', sans-serif;
    font-size: 30px;
    margin-bottom: 3rem;
    padding-bottom: 30px;
    color: #202020;
    border-bottom: 1px solid #CDCDCD;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-detail-1 .right .intro {
    font-family: 'poppins-regular', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    max-height: 300px;
    overflow: scroll;
    padding-right: 15px;
}

.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 .recommend {
    margin: 6.4rem 0;
}

.product-detail-1 .right .contact-btn{
    margin-top: 30px;
}

.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 .right .recommend .child {
    padding: 8px 0;
    text-align: center;
    border: 2px solid #b9b9b9;
}

.product-detail-1 .right .recommend .child a {
    color: #000;
    font-size: 15px;
}

.product-detail-1 .right .recommend .child:hover {
    transition: 0.2s;
    border: 2px solid var(--primary-color);
}

.product-detail-1 .right .contact-btn a {
    padding: 10px 30px;
    border-radius: 5px;
    color: #fff;
    font-family: '';
    background-color: var(--primary-color);
}

.product-detail-2 {
    padding-top: 30px;
    padding-bottom: 7rem;
}

.product-detail-2 .container {
    width: 100%;
    max-width: 1255px;
}

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

.product-detail-2 .detail-tab .item {
    font-family: 'poppins-medium', sans-serif;
    font-size: 20px;
    color: #202020;
    text-align: center;
    background-color: #E1E1E1;
    border-right: 1px solid white;
    padding: 20px 0;
    cursor: pointer;
}

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

.detail-tab-content-box > div {
    background-color: #F4F4F4;
    display: none;
    padding: 3rem 4rem;
}

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

}

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

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

.main-img {
    padding-top: 0;
    padding-bottom: 0;
}

.main-img .main-img-padding-bottom {
    padding-bottom: 15.62%;
}

.main-img .main-phone-img-padding-bottom {
    padding-bottom: 38.6%;
}

.factory{
    padding-bottom: 80px;
}

.factory .container {
    width: 100%;
}

.factory .item {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
}

.factory .img {
    padding-bottom: 61.09%;
}

.factory #factory-flow .layui-flow-more {
    text-align: center;
}

.factory #factory-flow .btn {
    padding: 8px 33px;
    font-size: 20px;
    background: var(--primary-color);
    color: white;
    margin-top: 40px;
    margin-bottom: 0;
}

.factory .row{
    margin-left: -8px;
    margin-right: -8px;
}

.factory .container-fluid{
    padding-left: 0;
    padding-right: 0;
}

.factory.exhibition{
    padding-bottom: 30px;
}

.news {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.news .container {
    width: 100%;
    max-width: 1255px;
}

.news .news-box {
    display: flex;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 10px;
}

.news .news-box .img {
    width: 23%;
    padding-bottom: 18.6%;
}

.news .news-box .title {
    width: 77%;
    padding: 10px 20px;
}

.news .news-box .title .main a {
    color: #202020;
    line-height: 30px;
}

.news .news-box .title .main a:hover {
    transition: 0.2s;
    color: var(--primary-color);
}

.news .news-box .title .sub {
    margin-top: 13px;
    line-height: 20px;
}

/* news-product */
.news .right {
    padding-left: 50px;
}

.news .right .like .title {
    color: #fff;
    padding: 7px 20px;
    background: var(--primary-color);
}

.news .right .like .product {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eeeeee;
}

.news .right .like .product .col-3 {
    width: 30%;
    float: left;
    border: 1px solid #eeeeee;
}

.news .right .like .product .col-7 {
    width: 65%;
    float: left;
    margin-left: 5%;
}

.news .right .like .product .col-7 .name a {
    color: #202020;
}

.news .right .like .product .col-7 .name a:hover {
    transition: 0.2s;
    color: var(--primary-color);
}

/* news-video */
.news .right .latest .title {
    color: #fff;
    padding: 7px 20px;
    background: var(--primary-color);
}

.news .right .latest .video {
    padding: 20px 0;
    border-bottom: 1px solid #eeeeee;
}

.news .right .latest .video .img{
    padding-bottom: 80%;
}

.news .right .latest .video .intro {
    word-break: break-word;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
}

.news .right .latest .video .intro a {
    color: #202020;
}

.news .right .latest .video .intro a:hover {
    transition: 0.2s;
    color: var(--primary-color);
}


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

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

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

.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: 22px;
    filter: grayscale(2) brightness(100);
}

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

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

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

.solution-detail .social-links .social-item{
    width: 38px;
    height: 38px;
    border: unset;
    border-radius: 5px;
    margin-right: 15px;
    background-color: #000000;
}

.solution-detail .social-links .social-item.twitter img{
    width: 21px;
    filter: brightness(100) invert(1);
}

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

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

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

.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 {
    border-top: 4px solid var(--primary-color);
    background-color: #fff;
    padding: 35px 35px 45px 35px;
    box-shadow: 0px 1px 30px 0px rgba(0, 0, 0, 0.1);
}

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

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

.casedetail .other .example .col-3 {
    flex: 0 0 34%;
    max-width: 34%;
    float: left;
    padding-left: 0;
    padding-right: 15px;
}

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

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

.casedetail .other .example .col-7 .example-title {
    height: 44px;
    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 .news-item{
    margin-bottom: 20px;
}

.casedetail .news-item .info li{
    display: flex;
    align-items: center;
    height: 20px;
    padding-right: 20px!important;
}

.casedetail .news-item .info li span{
    font-family: 'Poppins-Regular';
}

.casedetail .news-item .info li:nth-child(1),.casedetail .news-item .info li:nth-child(2){
    margin-right: 25px;
}

.casedetail .news-item .info li span::after{
    content: unset;
}

.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.newsdetail .news-item .info{
    margin-top: 25px;
    margin-bottom: 0;
    padding: 0;
    background: unset;
}

.casedetail.newsdetail .other .title{
    font-size: 30px;
}

.casedetail.newsdetail .other .other-box.news-box{
    padding: 25px 35px 30px 35px;
}

.casedetail.newsdetail .other hr{
    margin-top: 20px;
    margin-bottom: 15px;
}

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

.casedetail.newsdetail .left{
    flex: 0 0 62%;
    max-width: 62%;
    width: 62%;
}

.casedetail.newsdetail .other{
    flex: 0 0 38%;
    max-width: 38%;
    width: 38%;
}

.casedetail.newsdetail .other .other-box.news-box{
    border-top: 0;
    border-bottom: 4px solid var(--primary-color);
}

.casedetail.newsdetail .index-1{
    padding: 0 0 80px 0;
}

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

.solution-detail .social-links .social-item {
    width: 32px;
    height: 32px;
    border: unset;
    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: 18px;
    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);
}


.category-tab .container {
    width: 100%;
}

.category-tab {
    padding-top: 3rem;
}

.category-tab .section-title {
    margin-bottom: 3rem;
}

.category-tab .box {
    display: flex;
    justify-content: center;
}

.category-tab .box .item {
    width: 25%;
    padding: 0 10px;
}

.category-tab .box .tab-item {
    width: 100%;
    text-align: center;
    font-family: 'poppins-medium', sans-serif;
    font-size: 20px;
    color: #202020;
    background-color: #FFF;
    border: 1px solid #F4F4F4;
    height: 60px;
    line-height: 60px;
    border-radius: 30px;
}

.category-tab .box .tab-item.active {
    background-color: var(--primary-color);
    color: #FFF;
}

/* video */
.video .container {
    width: 100%;
}

.video .container-fluid {
    padding-right: 0px;
    padding-left: 0px;
}

.video .box .img {
    padding-bottom: 80%;
}
.video .box .img img{
    transition: all 0.3s;
}
.video .box:hover .img img{
    transform: scale(1.1);
    transition-timing-function: ease-out;
}
.video .box .content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    right: 15px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.37);
    cursor: pointer;
    transition: all 0.3s;
}

.video .box:hover .content{
    background-color: rgba(0, 0, 0, 0.5);
}

.video .box .intro {
    margin-left: 10%;
    margin-right: 10%;
    text-align: center;
    word-break: break-word;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
}
.video .box .intro a{
    color: white;
}

.video .box .btn {
    border: 1px solid white;
    border-radius: 20px;
    padding: 5px 22px;
}

.video .box .btn:hover {
    background-color: #fff;
    transition: all 0.3s;
}
.video .box .btn:hover a{
    color: var(--primary-color);
    transition: all 0.3s;
}

#downloadCenter {
    width: 100%;
}

.download-result {
    padding-top: 1rem;
    padding-bottom: 9rem;
}

.download-result .container {
    width: 100%;
}

.download-result .layui-flow-more {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.download-result .result-count {
    font-family: 'poppins-medium', sans-serif;
    font-size: 20px;
}

.download-result .list .even {
    background-color: #F4F4F4;
}

.download-result .list th {
    position: relative;
    background-color: var(--primary-color);
    font-family: 'poppins-medium', sans-serif;
    font-size: 20px;
    color: #FFF;
    padding-top: 15px;
    padding-right: 50px;
    padding-bottom: 15px;
    padding-left: 50px;
    font-weight: unset;
}

.download-result .list th:after {
    margin-left: 10px;
}

.download-result .list th i {
    margin-left: 10px;
    cursor: pointer;
}
#sortName.active:before{
    content: '\f106' !important;
}
#sortType.active:before{
    content: '\f106' !important;
}
.download-result .list th:last-child:after {
    content: '';
}

.download-result .list td {
    font-family: 'poppins-medium', sans-serif;
    font-size: 15px;
    font-weight: unset;
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 50px;
}

.download-result .list button {
    border: none;
    background-color: var(--primary-color);
    border-radius: 5px;
    color: #FFF;
    font-size: 20px;
    margin-top: 2rem;
    padding: 8px 20px;
}

.about .container {
    width: 100%;
    max-width: 1255px;
}

/* certificate */
.certificate {
    padding-top: 0;
    padding-bottom: 0;
    background: #f6f6f6;
}

.certificate .container {
    width: 100%;
}

.certificate .box {
    position: relative;
    /* padding-left: 100px;
    padding-right: 100px;
    margin: 0 200px; */
}
.certificate .box .img{
    padding-bottom: 150%;
}
.certificate .swiper {
    overflow: hidden;
    /* margin: 22px; */
}

.certificate .swiper-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.certificate .mySwiper-2{
    margin-top: 30px;
    margin-left: 100px;
    margin-right: 100px;
}

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

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

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

.certificate .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 300ms;
    transform: scale(0.58);
    /* margin-top: 40px; */
}


.certificate .swiper-slide-active, .certificate .swiper-slide-duplicate-active {
    transform: scale(1);
    margin-top: 0px;
}

.newsdetail .container {
    width: 100%;
    max-width: 1255px;
}

.newsdetail .container-fluid{
    padding-left: 0;
    padding-right: 0;
}

.solutiondetail {
    padding-top: 3rem;
    padding-bottom: 0;
}

.solutiondetail .container {
    width: 100%;
}

/* 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: #8dc2fa;
    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: #065e77;
}

.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
--------------------------------------------------------------*/
.footer {
    padding-top: 9rem;
    padding-bottom: 1.8rem;
    background: var(--primary-color);
    color: #FFF;
}

#footer .container {
    width: 100%;
}

#footer .row:before, .row:after, .container:before, .container:after {
    display: unset;
    content: unset;
}

.footer-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-line {
    color: #bfbfbf;
    font-size: 16px;
    border-top: 1px solid #EFEFEF82;
    padding-top: 27px;
    padding-bottom: 3rem;
    margin-top: 6rem;
}

.footer-line a {
    transition: 0.5s;
}

.footer-line a:hover {
    color: #FFF;
}

.footer-logo-column {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-column img{
    width: 163px;
    overflow: hidden;
}

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

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

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

.footer .item {
    padding-left: 15px;
    padding-right: 15px;
    width: 20%;
}

.footer .item h3 {
    font-size: 25px;
    margin-bottom: 20px;
}

.footer .item h4 {
    font-size: 17px;
    color: #999999;
    padding: 9px 0;
}

.footer .item p {
    font-size: 15px;
    font-family: 'poppins-regular';
}

.footer .social-links {
    display: flex;
    padding-top: 8rem;
}

.footer .social-links .footer-social-links {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 1.5rem;
    transition: all 0.5s;
}
.footer .social-links .footer-social-links.tiktok {
    width: 37px;
    height: 37px;
    margin-top: 4px;
}
.footer .social-links .footer-social-links i {
    font-size: 35px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #FFF;
}

.footer .item a {
    font-family: "poppins-regular";
    font-size: 16px;
    color: #cccccc;
    transition: 0.5s;
}

.footer .item a:hover {
    color: #FFF;
}

.footer .item input,
.footer .item textarea,
.footer .item button {
    border: none;
    width: 100%;
}

.footer .item input {
    height: 50px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left: 10px;
}

.footer .item textarea {
    margin-top: 5px;
    resize: none;
    height: 100px;
    padding-left: 10px;
    padding-top: 5px;
}

.footer .item button {
    height: 35px;
    font-size: 12px;
    font-family: "poppins-medium", sans-serif;
    margin-top: 5px;
    background-color: #FFF;
    color: #202020;
    outline: none;
}

.footer .item-0{
    width: 10%;
}

.footer .item.item-2{
    width: 15%;
}

.footer .item.item-2,
.footer .item.item-3 {
    width: 17%;
}

.footer .item-4 {
    width: 26%;
}

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

.pagination {
    justify-content: center;
    display: flex;
    padding-top: 30px;
    padding-bottom: 20px;
}

.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;
    font-family: 'poppins-medium', sans-serif;
    line-height: 38px;
}

.pagination a:hover {
    color: #fff;
    background: var(--primary-color);
    border: 1px var(--primary-color) solid;
}

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

.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: 0px;
    padding: 4px 0px;
    color: #666;
}

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

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

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

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

.mobile-footer .item {
    width: 100%;
}

.mobile-footer .item a {
    color: #FFF;
}

.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;
}

.mobile-footer .other {
    border-top: 1px solid #EFEFEF82;
    padding-top: 1rem;
    margin-top: 1rem;
    text-align: center
}

.mobile-footer .other a {
    color: #FFF;
}

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

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

.index-carousel-pagination {
    text-align: center;
    bottom: 50px !important;
}

.index-carousel-pagination .swiper-pagination-bullet {
    width: 80px;
    height: 6px;
    border-radius: 2px;
    background-color: #FFF;
    transition: all 0.5s;
}
.index-carousel #pc_banner{
    display: block;
}
.index-carousel #mobile_banner{
    display: none;
}
.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: 999;
    transition: all 0.5s;
    box-shadow: 0 0 2px 2px rgba(114, 114, 114, 0.5);
}

.btn-prev i,
.btn-next i {
    font-size: 25px;
    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;
}
.company-bg-pb{
    padding-bottom: 68.57%;
}
.index-bg-pb{
    padding-bottom: 41%;
}
.index-bg-pb img{
    object-fit: cover;
}
.tiktok-play .img-hover {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    left: 15px;
    background-color: rgba(0, 0, 0, 0.37);
    opacity: 0;
    transition: 0.3s;
}
.tiktok-play .img-hover i{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    font-size: 30px;
}
.tiktok-play .img-hover:hover{
    cursor: pointer;
    opacity: 1;
}

.hot-products{
    padding-top: 0;
    padding-bottom: 0;
    background-color: #F4F4F4;
}

.hot-products .container{
    width: 100%;
}

.hot-products .item{
    position: relative;
}

.hot-products .item .img{
    padding-bottom: 100%;
}

.hot-products .item .text{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0,0.6);
    padding: 14px 0;
    padding: 8px 12px;
    height: 70px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hot-products .item .text a{
    color: #fff;
    font-size: 17px;
}

.hot-products .hot-prev{
    left: -100px;
}

.hot-products .hot-next{
    right: -100px;
}

.inquriy .font-xs-30{
    font-size: 36px;
}

@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;
    }

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

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

    #placeholderBox {
        height: 100px;
    }

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

    #header .logo img {
        margin-top: -5px;
        max-height: 79px;
    }

    .main-nav {
        display: block;
    }

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

    .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: 768px) {
    /* iframe {
        height: 300px !important;
    } */

    section {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

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

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

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

    #placeholderBox {
        height: 50px;
    }

    .back-to-top {
        right: 0;
        bottom: 15px;
    }

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

    #header .logo img {
        max-height: unset;
        width: 40px;
        height: 40px;
    }
    .mobile-nav .drop-down,.active ul {
        display: block!important;
    }
    .mobile-nav .nav-contact-btn{
        margin-top: 15px;
        margin-left: 20px;
        margin-right: 20px;
        border-radius: 30px;
        background-color: var(--primary-color);
    }
    .mobile-nav .nav-contact-btn a{
        text-align: center;
        padding: 7px 20px;
    }
    .mobile-nav-toggle {
        top: 8px;
    }

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

    .mobile-footer .panel {
        border: unset;
        box-shadow: unset;
        background-color: unset;
    }

    .mobile-footer .panel-body {
        padding: 0 15px;
    }

    .mobile-footer .panel-heading .panel-title {
        font-size: 18px;
    }

    .mobile-footer .other {
        padding-top: 2rem;
        margin-top: 2rem;
        font-size: 14px;
    }

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

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

    .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;
    }

    .index-carousel #pc_banner{
        display: none;
    }

    .index-carousel #mobile_banner{
        display: block;
    }

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

    .related-products .box {
        position: relative;
        padding: 0 55px;
        margin: unset;
    }

    .related-products .box .part {
        height: auto;
        padding: 1.5rem;
    }

    /* .related-products .box .part .intro-box {
        height: 128px;
    } */

    .related-products .box .part .intro {
        display: block;
        width: 100%;
    }

    .product-catalogue .img-hover {
        opacity: 1;
        bottom: 0;
    }

    .product-catalogue .catalogue-box {
        margin-bottom: 20px;
    }

    .service {
        padding: 0;
    }

    .service .intro {
        margin: 0 9%;
        height: 70px;
    }

    .promise .slogan {
        margin-right: unset;
    }

    .promise .promise-box {
        padding: 25px 30px 25px 30px;
    }

    .promise .promise-box img{
        height: 45px;
    }

    .promise .promise-box .describe {
        height: unset;
        line-height: 1.7;
    }

    .plate .box {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .plate .news-box {
        display: block;
    }

    .plate .news-box .img {
        width: 100%;
        padding-bottom: 70.6%;
    }

    .plate .news-box .intro {
        width: 100%;
    }

    .plate .support-logo img {
        width: 50%;
    }

    .plate .jump {
        padding: 10px 25px;
    }

    .plate .jump img {
        width: 50%;
    }

    /*--------------------------------------------------
     Product
    ---------------------------------------------------*/
    .products {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .products .pagination {
        padding-top: unset;
    }

    .products .filter-mobile {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        position: relative;
    }

    #productFilter .mobile-filter-header {
        position: relative;
        display: block;
        font-size: 18px;
        font-family: "poppins-medium", sans-serif;
        background: var(--primary-color);
        padding: 10px;
        color: #FFF;
        border: none;
    }

    #productFilter .mobile-filter-header i {
        font-size: 15px;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
    }

    #productFilter .level-1 {
        padding: 5px 0 5px 10px;
        background-color: #F4F4F4;
    }

    #productFilter .level-1 a {
        color: #202020;
        font-family: 'poppins-medium', sans-serif;
        font-size: 18px;
    }

    #productFilter .level-2 {
        padding: 10px 0 10px 20px;
    }

    #productFilter .level-2 a {
        font-family: 'poppins-regular', sans-serif;
        font-size: 15px;
    }

    #productFilter a.collapsed i::before {
        content: "\f078" !important;
    }

    .products .filter {
        display: none;
    }

    .products .filter-mobile {
        display: block;
    }

    .products .list {
        width: 100%;
        padding-left: 0;
    }

    .products .list .row {
        margin: 0;
    }

    .products .list .text {
        height: unset;
    }

    .products .list .text .title {
        font-size: 20px;
    }

    .product-detail-1 {
        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 .recommend {
        margin: 5rem 0;
    }

    .product-detail-1 .right .title {
        font-size: 25px;
        height: unset;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .product-detail-1 .right .download {
        margin-top: 35px;
    }

    .product-detail-2 {
        padding-top: 0rem;
        padding-bottom: 3rem;
    }

    .product-detail-2 .detail-tab .item {
        padding: 10px 0;
    }

    .detail-tab-content-box > div {
        padding: 2rem 1rem;
    }

    .detail-tab-content-box iframe {
        height: 300px !important;
    }

    .related-products {
        padding-top: 0;
        padding-bottom: 1rem;
    }

    .related-products .box {
        padding: 0;
    }

    .related-products .section-title {
        padding-bottom: 2rem;
        margin-bottom: 0;
    }

    .related-products .index-1 .title{
        margin-bottom: 20px;
    }

    .related-products .box .text {
        font-size: 20px;
    }

    .news {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .news .pagination {
        padding-top: unset;
        padding-bottom: 40px;
    }

    .news .box {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .news .news-box {
        display: block;
    }

    .news .right {
        padding-left: 15px;
    }

    .news .news-box .img {
        width: 100%;
        padding-bottom: 70.6%;
    }

    .news .news-box .title {
        width: 100%;
        padding: 10px 15px;
    }

    .news .news-box .intro {
        width: 100%;
    }

    .news .right .latest .video:last-child {
        border-bottom: unset;
    }

    .category-tab {
        padding-top: 1rem;
    }

    .category-tab .section-title {
        margin-bottom: 2rem;
    }

    .category-tab .box {
        flex-wrap: wrap;
    }

    .category-tab .box .item {
        width: 100%;
        margin-bottom: 10px;
    }

    .category-tab .box .tab-item {
        height: 50px;
        line-height: 50px;
        font-size: 18px;
    }

    .factory #factory-flow .btn {
        margin-top: 1rem;
        margin-bottom: 2rem;
    }

    .certificate .box {
        position: relative;
        padding: 0 50px;
        margin: unset;
    }

    .certificate .swiper {
        overflow: hidden;
        margin: 0;
    }
    .certificate .swiper .swiper-slide-prev {
        margin-left: 0 !important;
        margin-right: 5% !important;
    }
    .certificate .mySwiper-2 .swiper-wrapper {
        align-items: center;
    }
    .video {
        padding-bottom: 2rem;
    }

    .video .pagination {
        padding-top: unset;
    }
    .download-result .list th:first-child{
        padding-left: 20px;
        padding-right: 100px;
    }
    .download-result .list th:nth-child(2n){
        padding-left: 15px;
        padding-right: 30px;
    }
    .download-result .list td {
        padding-left: 20px;
        padding-right: 20px;
    }
    .related-products .related-prev{
        left: 5px;
    }
    .related-products .related-next{
        right: 5px;
    }
    .related-products .related-prev,.related-products .related-next{
        top: 45%;
    }
    .hot-products .hot-prev{
        left: 5px;
    }
    .hot-products .hot-next{
        right: 5px;
    }
    .hot-products .item .text{
        padding: 10px 0;
    }
    .hot-products .item .text a{
        font-size: 18px;
    }
    .company .row{
        flex-direction: column-reverse;
    }
    .company .left{
        padding-right: 15px;
    }
    .company .left,.company .right{
        width: 100%;
    }
    .company .right{
        margin-bottom: 20px;
    }
    .company .more{
        width: 140px;
        padding: 8px 0;
    }
    .service .icon{
        height: unset;
    }
    .service .icon img{
        height: 47px;
    }
    .service .intro{
        margin: unset;
    }
    .hot-products .index-1 .title{
        margin-bottom: 15px;
    }
    .service .row{
        display: flex;
        flex-wrap: wrap;
    }
    .promise .box{
        flex-direction: column;
    }
    .promise .box > div{
        width: 100%;
        /* padding-left: 0; */
        /* padding-right: 0; */
    }
    .index-news{
        padding-top: 50px;
    }
    .index-news .title{
        font-size: 30px;
    }
    #index-news-prev{
        left: 0;
    }
    #index-news-next{
        right: 0;
    }
    .inquriy .container{
        padding-left: 0;
        padding-right: 0;
    }
    .inquriy .index-1 .subtitle{
        padding-left: 15px;
        padding-right: 15px;
    }
    .index-1{
        padding: 30px 0!important;
    }
    .index-2{
        padding: 0 0 30px 0!important;
    }
    .index-3{
        padding: 30px 0!important;
    }
    .index-news{
        padding-top: 30px;
    }
    .index-news .subtitle{
        font-size: 17px;
        margin-bottom: unset;
    }
    .index-news .title{
        font-size: 27px;
        margin-bottom: 0;
    }
    #index-news-prev{
        left: 5px;
    }
    #index-news-next{
        right: 5px;
    }
    #index-news-prev,#index-news-next{
        top: 30%;
    }
    .index-news #news{
        margin-top: 20px;
    }
    .news-item .box{
        border: 1px solid #f0f0f0;
        box-shadow: unset;
    }
    .news-item .text .more .line{
        width: 58%;
    }
    .news-item .text .title{
        font-size: 16px;
    }
    .news-item .text .more{
        font-size: 13px;
    }
    .company .intro{
        font-size: 14px;
        margin-bottom: 25px;
    }
    .index-news #news{
        padding-bottom: 30px;
    }
    .index-carousel-pagination{
        bottom: 15px!important;
    }
    .index-carousel-pagination .swiper-pagination-bullet{
        width: 40px;
        height: 4px;
    }
    .index-carousel-pagination .swiper-pagination-bullet{
        margin: 0 5px!important;
    }
    .footer .item{
        padding-left: 0;
        padding-right: 0;
    }
    .footer .panel-heading{
        padding: 10px 10px;
    }
    .footer .item h4{
        font-size: 16px;
    }
    .mobile-nav a{
        padding: 10px 20px 15px 20px;
    }
    .mobile-nav ul > li{
        font-size: 16px;
    }
    .nav-contact-btn{
        width: 200px;
    }
    .nav-contact-btn:hover a{
        color: #fff!important;
    }
    .products .list .row{
        margin-left: -12px;
        margin-right: -12px;
        margin-top: 20px;
    }
    #productFilter .mobile-filter-header{
        padding: 12px;
    }
    #productFilter .level-1{
        padding: 10px 12px 10px 12px;
    }
    #productFilter .level-1 a{
        font-size: 16px;
    }
    .products .list .text .title{
        font-size: 16px;
        line-height: 25px;
    }
    .products .list .item-box{
        padding-left: 12px;
        padding-right: 12px;
    }
    .product-feature{
        padding-top: 10px;
        padding-bottom: 30px;
    }
    .product-feature h3{
        font-size: 30px;
    }
    .product-feature ul{
        margin-top: 30px;
    }
    .product-feature ul > li{
        width: 100%;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .product-feature ul > li:nth-child(2){
        padding-top: 0;
        border-top: unset;
    }
    .product-feature ul > li .left, .product-feature ul > li .right{
        font-size: 14px;
    }
    .product-feature ul > li:first-child{
        padding-top: 20px;
    }
    .product-detail-2 .detail-tab .item{
        padding: 15px 0;
    }
    .news-item .info{
        width: 100%;
    }
    .casedetail.newsdetail .other .title{
        font-size: 28px;
    }
    .casedetail .left .title{
        font-size: 35px;
    }
    .casedetail .info-ul li p{
        font-size: 19px;
    }
    .casedetail{
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .casedetail .left{
        padding-right: 15px;
    }
    .casedetail .left .title{
        font-size: 25px;
        line-height: 36px;
    }
    .casedetail .other{
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0;
        margin-top: 50px;
    }
    .casedetail .other .other-box.news-box{
        padding: 30px 30px 30px 30px;
    }
    .casedetail .social-links{
        width: auto;
    }
    .casedetail .info-ul li{
        margin-bottom: 20px;
    }
    .casedetail.newsdetail .left,.casedetail.newsdetail .right{
        flex: 0 0 100%;
        max-width: 100%;
    }
    .casedetail.newsdetail .left .title{
        font-size: 23px;
        line-height: 35px;
    }
    .casedetail .news-item .info li{
        padding-right: 0;
    }
    .casedetail .news-item .info li:nth-child(1){
        margin-right: 15px;
    }
    .casedetail.newsdetail .left,.casedetail.newsdetail .right{
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .casedetail.newsdetail .left .title{
        font-size: 23px;
        line-height: 35px;
    }
    .casedetail.newsdetail .news-item .info{
        margin-top: 15px;
    }
    .casedetail.newsdetail .other{
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .casedetail.newsdetail .other .title{
        font-size: 25px;
    }
    .casedetail .article{
        margin-top: 20px;
    }
    .newsdetail .breadcrumb{
        margin-bottom: 0;
    }
    .contact iframe{
        height: 300px;
    }
    .contact .breadcrumb{
        margin-bottom: 0;
    }
    .certificate .index-1 .title{
        margin-bottom: 20px;
    }
    .factory{
        padding-bottom: 20px;
    }
    .factory #factory-flow .btn{
        font-size: 16px;
    }
    .details-related-products .index-1 .title{
        margin-bottom: 0!important;
        padding-bottom: 5px;
    }
    .related-products .box .product-name{
        font-size: 15px;
        height: 62px;
    }
    .hot-products .item .text{
        padding: 10px;
    }
    .hot-products .item .text a{
        font-size: 16px;
    }
    .factory.exhibition{
        padding-bottom: 10px;
    }
    .related-products.details-related-products .index-1 .subtitle{
        margin-bottom: 0;
    }
    .news-item .text{
        padding: 15px 15px 15px 20px;
    }
    .inquriy .font-xs-30{
        font-size: 26px;
    }
    .promise .slogan{
        font-size: 20px;
    }
    #footerForm .form-control::placeholder{
        font-size: 13px;
    }
}

@media (min-width: 1024px) and (max-width: 1600px) {
    .container{
        max-width: calc(100% - 150px)!important;
    }
    .index-1 .title{
        font-size: 36px;
    }
    .hot-products .item .text{
        height: 63px;
    }
    .hot-products .item .text a{
        font-size: 15px;
    }
    .related-products .box .product-name{
        font-size: 15px;
        height: 63px;
        overflow: hidden;
    }
    .hot-products .hot-prev{
        left: 15px;
    }
    .hot-products .hot-next{
        right: 15px;
    }
    .prev-btn, .next-btn{
        width: 45px;
        height: 45px;
    }
    .prev-btn i, .next-btn i{
        font-size: 27px;
    }
    .company .more{
        width: 160px;
        font-size: 18px!important;
        padding: 8px 0;
    }
    .promise .slogan,.company .slogan{
        font-size: 32px;
    }
    .factory .title > div{
        font-size: 36px;
    }
    .factory #factory-flow .btn{
        font-size: 19px;   
        padding: 8px 27px;
    }
    .footer .item-0{
        width: 8%;
    }
    .main-nav .nav-contact-btn a{
        font-size: 16px;
    }
    .service .intro{
        margin: 0 5%;
    }
    #index-news-prev{
        left: 15px;
    }
    #index-news-next{
        right: 15px;
    }
    #index-news-prev, #index-news-next{
        top: 34%;
    }
    .footer .item-0{
        width: 4%;
    }
    .footer-logo-column img{
        width: 140px;
    }
    .breadcrumb .font-xs-15{
        font-size: 18px;
    }
    .service .container{
        max-width: calc(100% - 80px) !important;
    }
    .promise .promise-box{
        padding: 3.5rem 4rem;
    }
    .index-news .title{
        font-size: 36px;
    }
    .main-nav a{
        font-size: 19px;
        padding: 0 33px;
    }
    .index-1{
        padding: 55px 0 70px 0;
    }
    .inquriy .font-xs-30{
        font-size: 35px;
    }
    .service .index-1{
        padding: 60px 0 70px 0;
    }
    .promise .box .font-xs-15{
        font-size: 17px;
    }
    .footer .item h3{
        font-size: 24px;
    }
    .footer .item a{
        font-size: 15px;
    }
    .company .index-1{
        padding: 70px 0 80px 0;
    }
    .index-news{
        padding-top: 70px;
    }
    .news-item .text .title{
        font-size: 18px;
    }
    .product-feature h3{
        font-size: 36px;
    }
    .product-feature ul > li .left, .product-feature ul > li .right{
        font-size: 17px;
    }
}