/*--------------------------------------------------------------
/*--------------------------------------------------------------
# Font
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root{
    --primary-color: #69b4bc;
}

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

a{
    color: #D0D0D0;
}

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

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

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

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

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

.section-subtitle{
    font-size: 15px;
    color: #999;
    letter-spacing: 4px;
}

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

.title-line{
    height: 2px;
    border: none;
    background-color: var(--primary-color);
    width: 13%;
    min-width: 120px;
    margin: 10px auto;
}

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

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

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

.article .title{
    color:#424242;
    margin-bottom: 2rem;
}

/*--------------------------------------------------------------
# placeholderBox
--------------------------------------------------------------*/
#placeholderBox{
    height: 150px;/*高度要和#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: 11;
}

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

.breadcrumb-nav{
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #F2F2F2;
}

.breadcrumb-nav a{
    font-size: 15px;
    color: #202020;
    transition: all 0.5s;
}

.breadcrumb-nav a:hover{
    color: var(--primary-color);
}

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

.banner.mobile{
    display: none;
}

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

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

.banner .text{
    position: absolute;
}

.banner .text .title{
    font-size: 30px;
    color: #FFF;
    margin-bottom: 1rem;
}

.banner .text .intro{
    font-size: 15px;
    color: #FFF;
    line-height: 2;
}

/*--------------------------------------------------------------
# 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:0 12px;
    height:40px;
    width: 40px;
    background:#fff;
    text-decoration:none;
    color:#808080;
    font-size:15px;
    line-height:40px;
}

.pagination a .fa{
    color: var(--primary-color);
}

.pagination a:hover,
.pagination a:hover .fa{
    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: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;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header{
    background-color: #FFF;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.5s;
    box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
}

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

/*--------------------------------------------------------------
# Top Navigation Menu
--------------------------------------------------------------*/
.main-nav{
    display: none;
    position: relative;
}
.main-nav,
.main-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav > ul{
    display: flex;
    justify-content: space-between;
}

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

.main-nav > ul > li:last-child a{
    padding-right: 0;
}

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

.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;
    background: #fff;
    box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
    border-top: 1px solid var(--primary-color);
}

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

.main-nav .drop-down li {
    height: 50px;
    line-height: 50px;
    min-width: 150px;
    position: relative;
    border-bottom: 1px solid #EFEFEF;
}

.main-nav .drop-down li:last-child{
    border-bottom: none;
}

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

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

#header #parallelogram{
    position: absolute;
    bottom: 0;
    left: -30px;
    width: 150%;
    height: 70px;
    background-color: #F2F2F2;
    z-index: -1;
    -webkit-transform: skew(-32deg);
    -moz-transform: skew(-32deg);
    -o-transform: skew(-32deg);
}

#header .login a{
    font-size: 15px;
    color: #999;
    padding: 0 3px;
    transition: all 0.5s;
}

#header .login a:hover{
    color: var(--primary-color);
}

.main-nav .login{
    margin-bottom: 5px;
    display: flex;
    color: #999;
    justify-content: end;
}

.main-nav .slogan{
    display: block;
    font-size: 20px;
    text-align: right;
    margin-bottom: 17px;
    margin-top: 10px;
}

.main-nav .slogan > span{
    font-size: 25px;
    color: var(--primary-color);
}

/* 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;
}

.mobile-nav .login,
.mobile-nav .slogan{
    display: none;
}



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

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

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

.footer ul li{
    padding: 8px 0;
    font-size: 15px;
}

.footer ul li a{
    font-size: 15px;
    color: #999;
    transition: all 0.5s;
}

.footer ul li a:hover{
    color: #FFF;
}

.footer .company img{
    margin-bottom: 2rem;
}

.footer .company p{
    width: 80%;
    color: #999;
    line-height: 2;
}

.footer .copyright{
    text-align: center;
    font-size: 15px;
    border-top: 1px solid #999;
    padding-top: 1rem;
    margin-top: 1rem;
}

.footer .copyright a{
    color: #fff;
    transition: all 0.5s;
}

.footer .copyright a:hover{
    color: var(--primary-color);
}

.footer .more-btn{
    width: 100%;
    background-color: var(--primary-color);
    color: #FFF;
    border: none;
    padding: 10px 0;
}

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

/* 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;
}

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

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

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

.index-carousel.index-carousel-mobile{
    display: none;
}

.index-carousel .swiper{
    --swiper-theme-color: var(--primary-color);
}

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

.member-login,
.member-register{
    background: url("./../images/member-bg.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    height: 600px;
}

#loginForm,
#registerForm{
    background-color: #FFF;
    padding: 30px;
}

#loginForm h2,
#registerForm h2{
    font-size: 20px;
}

#loginForm .form-item,
#registerForm .form-item{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.form-item span{
    font-size: 15px;
    margin-top: 5px;
    color: #8d8d8d;
}

.form-item span a{
    color: var(--primary-color);
}

#loginForm .form-item label,
#registerForm .form-item label{
    width: 35px;
    height: 35px;
    line-height: 35px;
    background-color: #EFEFEF;
    text-align: center;
}

#registerForm .form-item label{
    width: 75px;
    background-color: transparent;
    text-align: left;
}

#loginForm input,
#registerForm input{
    width: calc(100% - 35px);
    height: 35px;
    border: 1px solid #EFEFEF;
}

#registerForm input{
    width: calc(100% - 75px) !important;
}

#loginForm input:hover,
#loginForm input:focus,
#loginForm input:active,
#registerForm input:hover,
#registerForm input:focus,
#registerForm input:active{
    outline-color: var(--primary-color);
}

.tips{
    display: none;
    width: 100%;
    font-size: 15px;
    color: #ff3f44 !important;
}

#loginCaptcha{
    width: calc(100% - 155px) !important;
}

#registerForm #loginCaptcha{
    width: calc(100% - 195px) !important;
}

#captchaImg {
    cursor: pointer;
    width: 120px;
    height: 35px;
}
#doLogin,
#doRegister{
    width: 100%;
    height: 40px;
    border: none;
    background-color: var(--primary-color);
    color: #FFF;
    font-size: 18px;
    outline: none;
}

#doLogin:disabled,
#doRegister:disabled{
    background-color: #999;
    cursor: no-drop;
}

.required{
    color: #ff3f44 !important;
}

#indexCategoryProductThumbs{
    width: 50%;
    margin: 3rem auto;
}

#indexCategoryProductThumbs .swiper-slide{
    text-align: center;
    cursor: pointer;
    font-size: 20px;
}

#indexCategoryProductThumbs .swiper-slide-thumb-active > span{
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
    display: inline-block;
    color: var(--primary-color);
}

#indexCategoryProduct .swiper-slide .img{
    padding-bottom: 33.9%;
}

.about{
    background-color: #F8F8F8;
    padding-bottom: 10rem;
    position: relative;
}

.about .section-subtitle{
    margin-bottom: 4rem;
}

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

.about .title p{
    font-size: 15px;
    letter-spacing:4px;
    color: #999;
    margin-top: 5px;
    margin-bottom: 20px;
}

.about .video{
    height: 100%;
}

.about ul{
    list-style: none;
    padding: 0;
    margin: 0;
    color: #999;
}

.about ul li{
    font-size: 20px;
    margin-bottom: 5px;
}

.about .more-btn{
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    font-size: 20px;
    border-radius: 8px;
    padding: 8px 40px;
    margin-top: 1rem;
    outline: none;
}

.company-data{
    position: absolute;
    width: 100%;
    bottom: -8.5rem;
}

.company-data > .container{
    background-color: #202020;
}

.company-data .item{
    border-right: 1px solid #FFF;
    margin: 2rem 0;
}

.company-data .item:last-child{
    border-right: transparent;
}

.company-data .item .title,
.company-data .item .subtitle{
    margin: 0;
    color: #FFF;
    text-align: center;
}

.advantage-1{
    margin-top: 6rem;
}

.advantage{
    padding-top: 0;
    padding-bottom: 0;
    /*background-image: url("../../home/images/advantage-bg.png");*/
    /*background-size: cover;*/
    /*background-repeat: no-repeat;*/
    position: relative;
}

.advantage > .img{
    overflow: hidden;
    max-width: 100%;
    padding-bottom: 27.6%;
}

.advantage > .img img{
    width: 100%;
}

.advantage .mask{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.4);
    z-index: 1;
}

.advantage .box{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1280px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.advantage .box .item{
    max-width: 14.285%;
    width: 100%;
    text-align: center;
    margin: 40px 0;
}


.advantage .box .item img{
    margin-bottom: 10px;
}

.advantage .box .item p{
    font-size: 15px;
    color: #FFF;
}

.solution-list .section-subtitle{
    margin-bottom: 4rem;
}

.solution-list .item{
    margin-bottom: 3rem;
}

.solution-list .item .img{
    padding-bottom: 65.2%;
}

.solution-list .item .text .title{
    margin-top: 20px;
    margin-bottom: 20px;
    height: 48px;
}

.solution-list .item .text .title a{
    font-size: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #202020;
    transition: all 0.5s;
}

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

.solution-list .item .text .time{
    font-size: 15px;
    color: #999;
    display: flex;
    align-items: center;
}

.solution-list .item .text .time .fa{
    font-size: 25px;
    margin-right: 8px;
}


.solution-list .item .text .intro{
    height: 90px;
    font-size: 15px;
    color: #999;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 2;
}

.solution-list .item .more{
    border-top: 1px solid #BEBEBE;
    padding-top: 1rem;
}

.solution-list .item .more a{
    font-size: 20px;
    color: #202020;
    transition: all 0.5s;
}

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

/*--------------------------------------------------------------------------
    Video
--------------------------------------------------------------------------- */
.video{
    text-align: center;
}

/*--------------------------------------------------------------------------
    Product List
--------------------------------------------------------------------------- */
.main-filter .title{
    background-color: var(--primary-color);
    color: #FFF;
    font-size: 25px;
    padding: 10px 1rem;
}

.main-filter a:hover{
    color: var(--primary-color);
    transition: all 0.5s;
}

.main-filter .level-1{
    background-color: #EEE;
    list-style: none;
    padding: 0;
}

.main-filter .level-1 .item{
    position: relative;
}

.main-filter .level-1 > .item{
    background-color: #999;
}

.main-filter .level-1 > .item.unfold{
    color: #FFF;
    background-color: var(--primary-color);
}

.main-filter .level-1 .item a{
    color: #FFF;
    font-size: 20px;
    transition: all 0.5s;
}

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

.main-filter .level-1 .item>div{
    padding: 10px 1rem;
}

.main-filter .level-1 .item.has-child:after{
    content: '\f107';
    font-family: FontAwesome;
    font-size: 20px;
    position: absolute;
    top: 13px;
    right: 20px;
    cursor: pointer;
    transition: all 0.5s;
    color: #FFF;
}

.main-filter .level-1 .item.unfold:after{
    transform: rotate(-180deg);
}

.main-filter .level-1 .item .level-2{
    background-color: #FFF;
    max-height: 0;
    transition: max-height 0.4s ease-out;
    overflow: hidden;
    list-style: none;
    padding: 0;
}

.main-filter .level-1 .item.unfold .level-2{
    max-height: 500px;
    transition: max-height 0.4s ease-in;
}

.main-filter .level-1 .item.active>div>a{
    color: #FFF;
}

.main-filter .level-2{
    border-left: 1px solid #EEE;
    border-right: 1px solid #EEE;
}

.main-filter .level-2 .item{
    padding: 10px 1rem;
    border-bottom: 1px solid #EEE;
}

.main-filter .level-2 .item a{
    font-size: 15px;
    color: #666;
    display: block;
}

.main-filter .level-2 .item a:hover{
    color: var(--primary-color);
}

.main-filter .level-2 .item.active a{
    color: var(--primary-color);
}

#productFilter{
    padding: 0;
    margin-bottom: 0;
}

#productFilter ul{
    list-style: none;
    padding: 0;
}

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

#productFilter a{
}

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

#productFilter .mobile-filter-header{
    position: relative;
    display: block;
    font-size: 20px;
    background-color: var(--primary-color);
    padding: 10px;
    color: #FFF;
    border: none;
}

#productFilter .level-1{
    padding: 5px 0 5px 10px;
    border-left: 1px solid #EEE;
    border-right: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
}

#productFilter .level-1 a{
    font-size: 20px;
    color: #202020;
}

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

#productFilter .level-2 a{
    font-size: 15px;
}

.product-list .list{
    display: flex;
    flex-wrap: wrap;
    background-color: transparent;
}

.product-list .list .item{
    margin-bottom: 4rem;
}

.product-list .list .item .img{
    padding-bottom: 100%;
    box-shadow: 0 0 5px 1px rgba(114,114,114,0.5);
}

.product-list .list .item .text .title{
    margin: 15px 0;
    height: 48px;
}

.product-list .list .item .text .title a{
    font-size: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: all 0.5s;
    color: #202020;
}

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

.product-list .list .item .text .intro{
    height: 45px;
    font-size: 15px;
    color: #999;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-list .list .item .text .goods{
    line-height: 25px;
}

.product-list .list .item .text .goods img{
    margin-right: 10px;
}

.product-list .list .item .text .more{
    color: #202020;
    display: inline-block;
    border-bottom: 1px solid #202020;
    transition: all 0.5s;
}

.product-list .list .item .text .more:hover{
    color: var(--primary-color);
    border-color: var(--primary-color);
}

#thumbs .swiper-slide{
    padding: 5px;
    border: 1px solid #CCC;
}

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

#downloadAttBtn{
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
    color: #FFF;
    font-size: 18px;
    padding: 5px 25px;
    border-radius: 3px;
    outline: none;
    margin-top: 2rem;
}

.product-info .product-info-box{
    box-shadow: 0 0 5px 2px rgba(114, 114, 114, 0.25);
    padding: 2rem 1rem;
}

.product-info .product-name{
    font-size: 40px;
}

.product-info .model{
    font-size: 40px;
}

.product-info .intro{
    font-size: 30px;
    color: #999;
}

.product-info .param img,
.product-info .param table{
    max-width: 100%;
}

.product-content img,
.product-content table{
    max-width: 100%;
}
    /*--------------------------------------------------------------------------
        About Company
    --------------------------------------------------------------------------- */
.about-1 .img{
    padding-bottom: 31.7%;
}

.about-1 .text{
    display: flex;
    align-items: center;
    padding-left: 3rem;
}

.about-1 .text .title{
    font-size: 25px;
    color: #202020;
}

.about-1 .text .intro{
    font-size: 15px;
    color: #999;
    line-height: 2;
}

.about-2{
    background-color: #F8F8F8;
}

.about-2 .row{
    margin-bottom: 1rem;
}

.about-2 .picture{
    padding: 0;
}

.about-2 .text{
    display: flex;
    align-items: center;
    font-size: 25px;
    color: #202020;
    background-color: #FFF;
    transition: all 0.5s;
    padding: 0 4rem;
}

.about-2 .text:hover{
    background-color: var(--primary-color);
    color: #FFF;
}

.about-4{
    position: relative;
    padding: 0;
}

.about-4 .img{
    padding-bottom: 30.4%;
}

.about-4 .img .mask{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.4);
    z-index: 1;
}

.about-4 .box{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1280px;
    position: absolute;
    top: 28%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
}

.about-4 .box .item{
    width: 100%;
    max-width: 12.5%;
    color: #FFF;
    font-size: 20px;
    text-align: center;
    padding: 0 10px;
}

.about-5{
    position: absolute;
    width: 100%;
    bottom: -12rem;
    z-index: 10;
}

.about-5 .left > .img{
    padding-bottom: 59.5%;
}

.about-5 .right .row{
    height: 100%;
    margin-right: 0;
}

.about-5 .right .row>.col-4{
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.about-5 .right .row>.col-4:last-child{
    padding-left: 0;
}

.about-5 .right .item{
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    background-color: #F8F8F8;
    text-align: center;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.about-5 .right .item > div{
    width: 100%;
}

.about-5 .right .item.last > div{
    padding: 0 20px;
}

.about-6{
    padding-top: 13rem;
}

.about-6 .container{
    padding: 0;
}

.about-6 .item{
    margin-bottom: 2rem;
}

.about-6 .item .img{
    padding-bottom: 58.3%;
}

.about-7{
    background-color: #F8F8F8;
}

.about-7 .box{
    position: relative;
    padding-left: 100px;
    padding-right: 100px;
}

.about-7 .section-subtitle{
    margin-bottom: 4rem;
}

.about-7 .item .text{
    height: 60px;
    font-size: 20px;
    color: #202020;
    padding: 0 15px;
    margin-top: 20px;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: all 0.5s;
}

.about-7 .item:hover .text{
    color: var(--primary-color);
}

.video-prev{
    display: block;
    left: 0 !important;
}

.video-next{
    display: block;
    right: 0 !important;
}

.about-7 .more-btn{
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    font-size: 20px;
    border-radius: 8px;
    padding: 8px 40px;
    margin-top: 3rem;
    outline: none;

}

/*--------------------------------------------------------------------------
        Attract
--------------------------------------------------------------------------- */

.attract-1{
    background-color: #F4F4F4;
}

.attract-1 .left{

}

.attract-1 .right{
    text-align: right;
}

.attract-1 .left .section-title{
    margin-bottom: 10px;
}

.attract-1 .left .section-title span{
    color: var(--primary-color);
}

.attract-1 .left .section-subtitle{
    font-size: 30px;
    color: #202020;
    margin-bottom: 30px;
}

.attract-1 .left .section-intro{
    font-size: 20px;
    color: #999;
    margin-bottom: 40px;
}

.attract-1 .left .before-num{
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.attract-1 .left .before-num h2,
.attract-1 .right .before-num h2{
    font-size: 50px;
    color: #666;
}

.attract-1 .left .before-num .year{
    font-size: 20px;
    color: #666;
}

#assembleRateNumBefore,
#saleNumBefore{
    width: 100%;
    max-width: 50%;
}

#assembleRateNumBefore p,
#saleNumBefore p,
#assembleRateNumAfter p,
#saleNumAfter p{
    font-size: 20px;
    color: #999;
}

#assembleRateNumBefore span,
#saleNumBefore span{
    font-size: 20px;
    color: var(--primary-color);
}

.attract-1 .right .before-num{
    display: flex;
    flex-wrap: wrap;
    text-align: left;
}

#assembleRateNumAfter,
#saleNumAfter{
    width: 50%;
    max-width: 50%;
}
#assembleRateNumBefore b,
#saleNumBefore b,
#assembleRateNumAfter b,
#saleNumAfter b{
    font-size: 50px;
    color: var(--primary-color);
}

#assembleRateNumAfter span,
#saleNumAfter span{
    font-size: 20px;
    color: var(--primary-color);
}

.attract-2 .section-subtitle{
    margin-bottom: 4rem;
}

.attract-2 img{
    max-width: 100%;
    width: 100%;
}

.attract-3 .section-subtitle{
    margin-bottom: 4rem;
}

.attract-3 .img{
    padding-bottom: 40.6%;
}

.attract-4 .row{
    margin-left: -10px;
    margin-right: -10px;
}

.attract-4 .item{
    padding-left: 6px;
    padding-right: 6px;
    margin-bottom: 12px;
    position: relative;
}

.attract-4 .item .mask{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 6px;
    right: 6px;
    background-color: rgba(0,0,0,0.4);
    z-index: 1;
    opacity: 0;
    transition: all 0.5s;
}

.attract-4 .item .mask:before,
.attract-4 .item .mask:after{
    position: absolute;
    content: '';
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    transition: opacity 0.5s ease 0s, transform 0.5s ease 0s;
}

.attract-4 .item .mask:before{
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    transform: scale(0, 1);
}

.attract-4 .item .mask:after{
    border-left: 2px solid rgba(255, 255, 255, 0.5);
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    transform: scale(1, 0);
}

.attract-4 .item:hover .mask{
    opacity: 1;
}

.attract-4 .item:hover .mask:before,
.attract-4 .item:hover .mask:after{
    opacity: 1;
    transform: scale(1);
}

.attract-4 .item .img{
    padding-bottom: 66.6%;
}

/*---------------------------------------------------------------------
    Information
---------------------------------------------------------------------*/
.information-tab{
    padding-bottom: 0;
}

.information-tab ul{
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    width: 80%;
}

.information-tab ul li{
    width: 100%;
    max-width: 25%;
    padding: 0 30px;
    text-align: center;
}

.information-tab ul li > a{
    display: block;
    width: 100%;
    padding: 10px 0;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    transition: all 0.5s;
    font-size: 20px;
}

.information-tab ul .active > a,
.information-tab ul li > a:hover{
    background-color: var(--primary-color);
    color: #FFF;
}

/*---------------------------------------------------------------------
    Contact
---------------------------------------------------------------------*/
.contact-1 img{
    margin-bottom: 10px;
}

.contact-1 p{
    font-size: 20px;
}

#map{
    width: 100%;
    height: 500px;
}

.amap-logo,
.amap-copyright{
    display: none !important;
}

.contact-1{
    padding-bottom: 0;
}

.contact-2 .row{
    box-shadow: 0 0 5px 1px rgba(114,114,114,0.5);
}

.contact-2 .form{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 2rem 3rem 2rem 4rem;
}

.contact-2 .form .title{
    font-size: 30px;
    width: 100%;
}

.contact-2 .form input{
    width: 100%;
    max-width: calc(50% - 20px);
    height: 50px;
    margin-right: 20px;
    border: none;
    border-bottom: 1px solid #EFEFEF;
    outline: none;
}

.contact-2 .form textarea{
    width: calc(100% - 20px);
    margin-right: 20px;
    border: none;
    border-bottom: 1px solid #EFEFEF;
    resize: none;
    outline: none;
}

.contact-2 .form input:focus,
.contact-2 .form textarea:focus{
    border-color: var(--primary-color);
}

#inquirySubmit{
    width: 100%;
    background-color: var(--primary-color);
    color: #FFF;
    border: none;
    outline: none;
    font-size: 20px;
    padding: 15px 0;
}

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

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

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

    #placeholderBox{
        height: 70px;
    }

    #header{
        height: 70px;
    }

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

    .btn-prev{
        left: 30px;
    }

    .btn-next{
        right: 30px;
    }

    .about{
        padding-bottom: 7rem;
    }

    .about .text{
        order: 2;
    }

    .about .video{
        height: 450px;
        margin-bottom: 20px;
        order: 1;
    }

    .advantage-1{
        margin-top: 4rem;
    }

    .advantage > .img{
        padding-bottom: 44.6%;
    }

    .advantage .box .item{
        max-width: 33.333333%;
        margin: 15px 0;
    }

    .advantage .box .item p{
        margin: 0;
    }

    .solution-list .item .more a{
        font-size: 15px;
    }

    .product-list{
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .product-list .list .item{
        margin-bottom: 2rem;
    }

    .product-info{
        padding-bottom: 0;
    }

    .product-info .product-name{
        font-size: 30px;
        margin-top: 1rem;
    }

    .product-info .model{
        font-size: 30px;
        margin-bottom: 1rem;
    }

    .product-info .intro{
        font-size: 25px;
        margin-bottom: 1rem;
    }

    .about-1 .img{
        padding-bottom: 63.4%;
        margin-bottom: 2rem;
    }

    .about-1 .text{
        padding: 0;
    }

    .about-1 .text .intro{
        margin: 0;
    }

    .about-2 .text{
        font-size: 18px;
        padding: 0 2rem;
    }

    .about-2 .odd .text{
        order: 2;
    }

    .about-4 .img{
        padding-bottom: 55%;
    }

    .about-4 .box{
        top: 40%;
    }

    .about-4 .box .item{
        max-width: 25%;
        font-size: 16px;
    }

    .about-4 .box .item img{
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }

    .about-5 .right .item{
        font-size: 12px;
    }

    .information-tab ul li{
        max-width: 100%;
        margin-bottom: 15px;
    }

    .attract-1 .left .before-num{
        width: 100%;
    }

    .attract-1 .right .before-num{
        margin-top: 57px;
    }

    .video iframe{
        height: 420px;
        width: 510px;
    }

    .member-login .form-container,
    .member-register .form-container{
        flex: 0 0 55%;
        max-width: 55%;
        margin-left: 45%;
    }
}

@media (min-width: 992px) {
    .about-2 .odd .picture{
        order: 1;
    }

    .about-2 .odd .text{
        order: 2;
    }

    .about-2 .even .picture{
        order: 2;
    }

    .about-2 .even .text{
        order: 1;
    }

    .about .video{
        text-align: right;
        height: auto;
        order: 2;
    }

    .advantage > .img{
        padding-bottom: 32.6%;
    }

    .advantage .box .item{
        max-width: 14.285%;
        margin: 40px 0;
    }

    .solution-list .item .more a{
        font-size: 20px;
    }

    .about-1 .row{
        align-items: center;
    }

    .about-1 .img {
        padding-bottom: 31.7%;
    }

    .about-1 .text{
        padding-left: 2rem;
    }

    .about-1 .text .title{
        font-size: 20px;
    }

    .about-2 .text{
        font-size: 20px;
    }

    .about-5 .right .item{
        font-size: 15px;
    }

    .information-tab{
        padding-top: 2rem;
    }

    .solution-list{
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .information-tab ul{
        width: 100%;
    }

    .information-tab ul li{
        max-width: 25%;
        padding: 0 15px;
        margin-bottom: 10px;
    }

    .attract-1 .left .before-num{
        margin-top: 115px;
        width: 47%;
    }

    .attract-1 .left .before-num{
        margin-top: 0;
    }

    .attract-1 .left .before-num{
        margin-top: 82px;
    }

    .attract-1 .right .before-num{
        margin-top: 0;
    }

    #assembleRateNumBefore b,
    #saleNumBefore b,
    #assembleRateNumAfter b,
    #saleNumAfter b{
        font-size: 40px;
    }

    .attract-1 .left
    .before-num h2,
    .attract-1 .right
    .before-num h2{
        font-size: 40px;
    }

    .video iframe{
        height: 498px;
        width: 510px;
    }

    .member-login .form-container,
    .member-register .form-container{
        flex: 0 0 40%;
        max-width: 40%;
        margin-left: 60%;
    }
}

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

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

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

    #placeholderBox{
        height: 135px;
    }

    #header{
        height: 135px;
    }

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

    .main-nav{
        display: block;
    }

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

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

    .advantage > .img{
        padding-bottom: 27.6%;
    }

    .product-info .product-name{
        font-size: 40px;
        margin-top: 0;
        margin-bottom: 1rem;
    }

    .product-info .model{
        font-size: 40px;
        margin-bottom: 1rem;
    }

    .product-info .intro{
        font-size: 30px;
        margin-bottom: 1rem;
    }

    .about-1 .text .title{
        font-size: 25px;
    }

    .about-2 .text{
        font-size: 25px;
    }

    .about-4 .box{
        top: 28%;
    }

    .about-4 .box .item{
        max-width: 12.5%;
        font-size: 20px;
    }

    .about-4 .img{
        padding-bottom: 30.4%;
    }

    .about-5 .right .item{
        font-size: 20px;
    }

    #assembleRateNumBefore b,
    #saleNumBefore b,
    #assembleRateNumAfter b,
    #saleNumAfter b{
        font-size: 50px;
    }

    .attract-1 .left
    .before-num h2,
    .attract-1 .right
    .before-num h2{
        font-size: 50px;
    }

    .member-login .form-container,
    .member-register .form-container{
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        margin-left: 66.666667%;
    }
}

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

    .footer .company p{
        width: 100%;
    }

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

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

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

    #placeholderBox{
        height: 50px;
    }

    #header{
        height: 50px;
    }

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

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

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

    .banner{
        display: none;
    }

    .banner.mobile{
        display: block;
    }

    .banner .text{
        position: relative;
        width: calc(100% - 30px);
        color: #202020;
        top: unset;
        left: unset;
        transform: unset;
        border-bottom: 1px solid #EFEFEF;
        margin: 0 auto;
    }

    .banner .text .title{
        font-size: 25px;
        position: absolute;
        top: -160px;
    }

    .banner .text .intro{
        color: #202020;
        margin: 10px 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;
    }

    .index-carousel{
        display: none;
    }

    .index-carousel.index-carousel-mobile{
        display: block;
    }

    #indexCategoryProductThumbs{
        width: 100%;
        margin: 2rem 0 1rem 0;
    }

    #indexCategoryProductThumbs .swiper-slide{
        font-size: 15px;
    }

    .about{
        padding-bottom: 0;
    }

    .about .section-subtitle{
        margin-bottom: 2rem;
    }

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

    .about .video{
        height: 315px;
    }

    .about ul li{
        font-size: 15px;
    }

    .about .more-btn{
        font-size: 15px;
        padding: 5px 30px;
        margin-bottom: 1rem;
    }

    .company-data{
        position: relative;
        bottom: 0;
        padding-bottom: 0;
    }

    .company-data .item{
        margin: 1rem 0;
        border: none;
    }

    .advantage-1{
        margin-top: 0;
    }

    .advantage > .img{
        padding-bottom: 85%;
    }

    .advantage .box .item{
        max-width: 33.3333333%;
        margin: 15px 0;
        padding: 0 10px;
    }

    .advantage .box .item img{
        width: 30px;
        height: 30px;
    }

    .advantage .box .item p{
        font-size: 12px;
        margin: 0;
    }

    .solution-list .section-subtitle{
        margin-bottom: 2rem;
    }

    .solution-list .item .text .title{
        height: auto;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .solution-list .item .text .intro{
        height: auto;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .solution-list .item .more a{
        font-size: 18px;
    }

    .solution-list .item{
        margin-bottom: 2rem;
    }

    .product-info .product-name{
        font-size: 20px;
        margin-top: 10px;
    }

    .product-info .model{
        font-size: 20px;
        margin-bottom: 10px;
    }

    .product-info .intro{
        font-size: 20px;
        margin-bottom: 10px;
    }

    .about-1 .img{
        padding-bottom: 63.4%;
    }

    .about-1 .text{
        padding-left: 15px;
    }

    .about-1 .text .title{
        font-size: 20px;
        margin-top: 10px;
    }

    .about-2{
        padding-top: 0;
    }

    .about-2 .odd,
    .about-2 .even{
        padding-left: 15px;
        padding-right: 15px;
    }

    .about-2 .text{
        font-size: 15px;
        order: 2;
        padding: 15px;
    }

    .about-2 .picture{
        order: 1;
    }

    .about-4 .img{
        padding-bottom: 65%;
    }

    .about-4 .box{
        top: 22%;
    }

    .about-4 .box .item{
        max-width: 25%;
        font-size: 12px;
    }

    .about-4 .box .item img{
        width: 50px;
        height: 50px;
        margin-bottom: 5px;
    }

    .about-5{
        position: relative;
        padding: 0 15px;
        bottom: unset;
        margin-top: 2rem;
    }

    .about-5 .left{
        padding-right: 15px !important;
    }

    .about-5 .right .row{
        margin: 0;
    }

    .about-5 .right .item{
        font-size: 12px;
        padding: 15px 0;
    }

    .about-5 .right .item p{
        margin: 0;
    }

    .about-6{
        padding-top: 2rem;
    }

    .about-6 .container{
        padding: 0 15px;
    }

    .about-7 .box{
        position: relative;
        padding-left: 60px;
        padding-right: 60px;
    }

    .about-7 .section-subtitle{
        margin-bottom: 2rem;
    }

    .about-7 .more-btn{
        margin-top: 1rem;
        font-size: 15px;
        padding: 5px 30px;
    }

    .about-7 .box .video-prev{
        left: 15px !important;
    }

    .about-7 .box .video-next{
        right: 15px !important;
    }

    .information-tab ul{
        width: 100%;
    }

    .information-tab ul li{
        max-width: 100%;
        padding: 0 15px;
        margin-bottom: 10px;
    }

    .information-tab ul li > a{
        font-size: 15px;
    }

    .attract-1 .left .before-num{
        width: 100%;
        margin-bottom: 2rem;
    }

    .attract-1 .right img{
        display: none;
    }

    .contact-2 .row{
        margin: 0;
    }

    .contact-2 .form{
        padding: 1rem 2rem;
    }

    #inquirySubmit{
        font-size: 15px;
        padding: 5px 0;
    }

    #map{
        height: 315px;
    }

    .video iframe{
        height: 210px;
        width: 100%;
    }

    #nb_icon_wrap{
        top: 50% !important;
    }

    .member-login,
    .member-register{
        height: auto;
        background: none;
    }
}