html,body,main{min-height:100%;height:auto}
body {
    background: #fff;
    color: #666666;
    font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

a {
    transition: 0.5s;
}

    a:hover, a:active, a:focus {
        color: #009ada;
        outline: none;
        text-decoration: none;
    }

p {
    padding: 0;
    margin: 0 0 10px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}
.btn-outline-primary {
    color: #0088c6;
    background-color: transparent;
    background-image: none;
    border-color: #0088c6;
}
.btn-outline-primary:hover {
    color: #fff;
    background-color: #0088c6;
    border-color: #0088c6;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    display: none;
    background: #0088c6;
    color: #fff;
    display: inline-block;
    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;
    }

@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 70px;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
}

    #header #logo {
        float: left;
    }

@media (min-width: 1024px) {
    #header #logo {
        padding-left: 60px;
        margin-top: 14px;
    }
}

#header #logo h1 {
    font-size: 34px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
}

    #header #logo h1 a, #header #logo h1 a:hover {
        color: #fff;
        padding-left: 10px;
        /*border-left: 4px solid #18d26e;*/
    }

#header #logo img {
    padding: 0;
    margin: 0;
    height: 35px;
}

.megamenu-panel {
    width: 100%;
    padding: 15px;
    display: none;
    position: fixed;
    font-size: 14px;
    z-index: 98;
    text-align: left;
    color: inherit;
    border-top: solid 1px #f0f0f0;
    background-color: #fdfdfd;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.075);
}

.megamenu-lists {
    width: 100%;
    display: table;
}

.navigation-landscape .list-col-4 {
    width: 25%;
}

.navigation-landscape .megamenu-list {
    padding: 20px;
    border-right: solid 1px #f0f0f0;
}

.nav-submenu > .megamenu-lists > .megamenu-list {
    border-right: 1px solid #eee
}

.megamenu-list {
    width: 100%;
    margin: 0 0 15px;
    padding: 0;
    display: inline-block;
    float: left;
    list-style: none;
}

    .megamenu-list img {
        height: 20px;
        margin-right: 10px;
        float: left;
    }

    .megamenu-list h6 {
        height: 20px;
        line-height: 28px;
        display: block;
        float: left;
    }

.navigation * {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
    #header #logo h1 {
        font-size: 28px;
    }

    #header #logo img {
        max-height: 40px;
    }
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
    display: table;
    width: 100%;
    height: 100vh;
    background: #000;
}

    #intro .carousel-item {
        width: 100%;
        height: 100vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    #intro .carousel-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
    }

    #intro .carousel-content {
        text-align: center;
    }

    #intro h2 {
        color: #fff;
        margin-bottom: 30px;
        font-size: 48px;
        font-weight: 700;
    }

@media (max-width: 768px) {
    #intro h2 {
        font-size: 28px;
    }
}

#intro p {
    width: 80%;
    margin: 0 auto 30px auto;
    color: #fff;
}

@media (min-width: 1024px) {
    #intro p {
        width: 60%;
    }
}

#intro .carousel-fade .carousel-inner .carousel-item {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
    opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
    opacity: 1;
    transition: 0.5s;
}

    #intro .carousel-fade .carousel-inner .carousel-item-next,
    #intro .carousel-fade .carousel-inner .carousel-item-prev,
    #intro .carousel-fade .carousel-inner .active.carousel-item-left,
    #intro .carousel-fade .carousel-inner .active.carousel-item-right {
        left: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

#intro .carousel-control-prev, #intro .carousel-control-next {
    width: 10%;
}

@media (min-width: 1024px) {
    #intro .carousel-control-prev, #intro .carousel-control-next {
        width: 5%;
    }
}

#intro .carousel-control-next-icon, #intro .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1;
}

#intro .carousel-indicators li {
    cursor: pointer;
}

.btn-get-orange {
    font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    padding: 0 10px !important;
    border: 0 !important;
    color: #fff !important;
    background: #f47e42;
    height: 30px !important;
    line-height: 30px;
}

#intro .btn-get-started {
    font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    background: #0088c6;
}

    #intro .btn-get-started:hover {
        background: #0088c6;
        color: #fdfdfd;
    }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .nav-menu > ul {
        position: absolute;
        display: none;
        top: 100%;
        left: 0;
        z-index: 99;
    }

    .nav-menu li {
        position: relative;
        white-space: nowrap;
    }

    .nav-menu > li {
        float: left;
        height: 70px;
        padding: 25px 0px;
    }

        .nav-menu > li:hover .megamenu-panel {
            display: block !important;
        }

    .nav-menu > ul {
        top: 0;
        left: 100%;
    }

        .nav-menu > ul > li {
            min-width: 180px;
        }

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
    padding-right: 30px;
}

    .sf-arrows .sf-with-ul:after {
        content: "\f107";
        position: absolute;
        right: 15px;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
    }

.sf-arrows ul .sf-with-ul:after {
    content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
    float: right;
    margin: 0;
}

@media (min-width: 1024px) {
    #nav-menu-container {
        padding-right: 60px;
    }
}

@media (max-width: 768px) {
    #nav-menu-container {
        display: none;
    }
}

/* Nav Meu Styling */
.nav-menu > li > a {
    padding: 10px;
    text-decoration: none;
    display: inline-block;
    color: #282828;
    font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    outline: none;
    height: 40px
}
.nav-menu ul li a:hover {
    color: #0088c6 !important;
}
.nav-menu > li:hover > a, .nav-menu > .menu-active > a {
    border-bottom: 2px solid #282828
}

.nav-menu > li {
    margin-left: 20px;
}

.nav-menu ul {
    margin: 4px 0 0 0;
    padding: 10px;
    /*box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);*/
    background: #fff;
}

    .nav-menu ul li {
        transition: 0.3s;
    }

        .nav-menu ul li a {
            padding: 10px;
            color: #333;
            transition: 0.3s;
            display: block;
            font-size: 13px;
            text-transform: none;
        }

        .nav-menu ul li:hover > a {
            color: #18d26e;
        }

    .nav-menu ul ul {
        margin: 0;
    }

/* Mobile Nav Toggle */
#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 20px 20px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

    #mobile-nav-toggle i {
        color: #282828;
    }

@media (max-width: 768px) {
    #mobile-nav-toggle {
        display: inline;
    }
}

/* Mobile Nav Styling */
#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.8);
    left: -260px;
    width: 260px;
    overflow-y: auto;
    transition: 0.4s;
}

    #mobile-nav ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

        #mobile-nav ul li {
            position: relative;
        }

            #mobile-nav ul li a {
                color: #fff;
                font-size: 13px;
                text-transform: uppercase;
                overflow: hidden;
                padding: 10px 22px 10px 15px;
                position: relative;
                text-decoration: none;
                width: 100%;
                display: block;
                outline: none;
                font-weight: 700;
                font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
            }

                #mobile-nav ul li a:hover {
                    color: #fff;
                }

            #mobile-nav ul li li {
                padding-left: 30px;
            }

        #mobile-nav ul .menu-has-children i {
            position: absolute;
            right: 0;
            z-index: 99;
            padding: 15px;
            cursor: pointer;
            color: #fff;
        }

            #mobile-nav ul .menu-has-children i.fa-chevron-up {
                color: #18d26e;
            }

        #mobile-nav ul .menu-has-children li a {
            text-transform: none;
        }

        #mobile-nav ul .menu-item-active {
            color: #18d26e;
        }

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
    overflow: hidden;
}

    body.mobile-nav-active #mobile-nav {
        left: 0;
    }

    body.mobile-nav-active #mobile-nav-toggle {
        color: #fff;
    }

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header h3 {
    font-size: 30px;
    color: #111;
    /*text-transform: uppercase;*/
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 0px
}

.section-header small {
    font-size: 20px;
    color: #666666;
    text-transform: uppercase;
    text-align: center;
    font-weight: 400;
    position: relative;
    padding-bottom: 15px;
    display: block
}

.section-header p {
    text-align: center;
    padding-bottom: 30px;
    color: #333;
}

/* Section with background
--------------------------------*/
.section-bg {
    background: #f7f7f7;
}

/* Featured Services Section
--------------------------------*/
#featured-services {
    margin: 5px;
    background: #fff;
}

    #featured-services .box {
        padding: 5px;
    }

    #featured-services .box-bg {
        background-color: #f6f6f6;
        padding: 50px;
        color: #333
    }

        #featured-services .box-bg img {
            height: 20px;
            margin-right: 10px;
            float: left;
        }

        #featured-services .box-bg strong {
            height: 20px;
            line-height: 28px;
            display: block;
            float: left;
        }

    #featured-services h4 {
        font-weight: 400;
        font-size: 18px;
        margin-bottom: 40px;
    }

    #featured-services .description {
        clear: both;
        font-size: 14px;
        line-height: 24px;
        height:90px;
        /*color: #fff;*/
        margin-bottom: 0;
    }

/* 关于移动设备的介绍
--------------------------------*/
#about1 {
    background: url("../img/about1/bg1.jpg") center top no-repeat;
    background-size: cover;
    padding: 200px 0;
    position: relative;
}

.about1-cols-img {
    height: 112px;
    width:112px;
    margin-right: 56px;
    margin-bottom:10px;
    background:url("../img/about1/about1.png") no-repeat;
}
.about1-cols-img1 {
    background-position: -2px -119px  !important;
}
.about1-cols-img2 {
    background-position: -341px -0px !important;
}
.about1-cols-img3 {
    background-position: -2px -4px !important;
}
.about1-cols-img4 {
    background-position: -115px -3px !important;
}
.about1-cols-img5 {
    background-position: -116px -117px !important;
}
.about1-cols-img6 {
    background-position: -230px -115px !important;
}
.about1-cols-img7 {
    background-position: -228px -2px !important;
    margin-right: 0px;
}
/* 关于Axendo的介绍
--------------------------------*/
#about2 {
    background: url("../img/about2/bg2.jpg") center top no-repeat;
    background-size: cover;
    padding: 120px 0;
    position: relative;
}

    #about2 .section-header {
        background: url("../img/about2/bt.png") no-repeat center center;
        margin: 0 auto 100px auto;
        background-size:contain
    }

        #about2 .section-header b {
            color: #0088c6;
            position: absolute;
            left: 35%;
            top: -30%;
        }
        #about2  .section-header small{
            padding-bottom:5px
        }

.about2-cols-img {
    height: 82px;
    width: 78px;
    background: url("../img/about2/about2.png") no-repeat;
}

.about2-cols-img1 {
    background-position: 0px -9px !important;
}

.about2-cols-img2 {
    background-position: -79px -4px !important;
}

.about2-cols-img3 {
    background-position: -159px -2px !important;
}

.about2-cols .section-desp {
    color: #009ada
}

/* 关于BIM的介绍
--------------------------------*/
#about3 {
    background: url("../img/about3/bg3.jpg") center top no-repeat;
    background-size: cover;
    padding: 100px 0;
    position: relative;
}

/* 成功案例
--------------------------------*/
#portfolio {
    padding: 200px 0 30px 0;
    color: #333;
}
    #portfolio ul {
        padding-inline-start: 0em;
    }
    /*partner Section
--------------------------------*/
    #partner {
        padding: 100px 0 30px 0;
    }
.partner-img {
    height: 200px;
    width: 384px;
    background: url("../img/partner/partner.png") no-repeat;
}
.partner-img1 {
    background-position: 0px 0px !important;
}
.partner-img2 {
    background-position: -385px 0px !important;
}
.partner-img3 {
    background-position: -770px 0px !important;
}

.partner-img4 {
    background-position: 0px -184px !important;
}

.partner-img5 {
    background-position: -385px -184px !important;
}

.partner-img6 {
    background-position: -770px -184px !important;
}
/* Contact Section
--------------------------------*/
#contact .contact-info {
    text-align: center;
    background-color: #0088c6;
}
    #contact .contact-info .section-header h3{
        text-align:left;
        font-size:20px;
    }
.contact-address .section-header h3{color:white !important}
#contact .contact-info .company-desp {
    background: url("../img/contact/bg3.png") center top no-repeat;
    background-size: cover;
    /*padding: 60px;*/

}
#contact .contact-info .company-desp p {
    text-align: left;
    line-height: 30px;
    text-indent: 2em;
}
.company-desp-container{padding:60px}
#contact .contact-info .contact-address {
    /*padding: 60px;*/
    text-align: left;
    line-height: 30px;
}
.contact-address-container {padding: 50px 50px 0px 50px}
        #contact .contact-info .contact-address .icon-contact {
            background: url("../img/contact/icon.png") no-repeat;
            width:25px;height:25px;display:block;float:left;margin-right:10px
        }
.icon-contact-address{background-position:0 0 !important}
.icon-contact-contact { background-position: 0 -70px !important;}
.icon-contact-phone {background-position: 0 -121px !important;}
.icon-contact-tel {background-position: 0 -166px !important;}
.icon-contact-email {background-position: 0 -220px !important;}
.contact-address-title{float:left;color:white}
/*.contact-address-title:not(.contact1) b {letter-spacing: 7px}*/
.contact-address-content {color: white}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #fff;
    padding: 0 0 30px 0;
    color: #adacac;
    font-size: 18px;
    /*position: fixed;
    width: 100%;
    left: 0px;
    bottom: 0;*/
}


    #footer .copyright {
        text-align: center;
        padding-top: 30px;
    }

    #footer .credits {
        text-align: center;
        font-size: 18px;
        color: #adacac;
    }

/*--------------------------------------------------------------
内容页面内容，1:core
--------------------------------------------------------------*/
#core {
    background: url("../img/core/core_banner.jpg") center top no-repeat;
    background-size: cover;
    padding: 250px 0;
    position: relative;
}
   .core h5 {
        color: #009ada !important
    }
   .core .icon-content {
    background: url("../img/core/core_icon.png") no-repeat;
    width: 25px;
    height: 25px;
    display: block;
    float: left;
    margin-right: 10px
}

.icon-content1{
    background-position: 0 0 !important
}
.icon-content2 {
    background-position: 0 -100px !important
}
.icon-content3 {
    background-position: 0 -200px !important
}
.icon-content4 {
    background-position: 0 -275px !important
}
.icon-content5 {
    background-position: 0 -345px !important
}
/*--------------------------------------------------------------
内容页面内容，2:pm
--------------------------------------------------------------*/
#pm {
    background: url("../img/pm/pm_banner.jpg") center top no-repeat;
    background-size: cover;
    padding: 250px 0;
    position: relative;
}
.pmTab {
    width: 450px;
    margin: 0 auto;
    border-bottom:0px
}
    .pmTab li {
        width: 100px;
        height: 40px;
        display: block;
        line-height: 40px;
        text-align: center;
        background-color: #f0f0f0;
        color: white !important;
        margin: 0 5px;
    }
.pmTab li>a {
    width: 100px;
    height: 40px;
    display:block;
    line-height:40px;
    text-align:center;
    color:white !important;
}
    .pmTab li > a {
        color: white !important;
    }
    .pmTab li>a.active {
        background-color: #009ada !important;
    }
.pm2 {
    background: url("../img/pm/pm_bg1.jpg") center top no-repeat;
    background-size: cover;
    padding: 100px 0;
    position: relative;
}
.pm4 {
    background: url("../img/pm/pm_bg2.jpg") center top no-repeat;
    background-size: cover;
    padding: 100px 0;
    position: relative;
}

.pm h2 {
    color: #333 !important;
    letter-spacing: 2px
}
.pm h6 {
    color: #009ada !important;
}
.ulpm > li {
    list-style-type: circle;
    color: #009ada;
    width: auto;
    margin: 30px 0px;
    font-size: 22px;
}


/*--------------------------------------------------------------
内容页面内容，3:fm
--------------------------------------------------------------*/
#fm {
    background: url("../img/fm/fm_banner.jpg") center top no-repeat;
    background-size: cover;
    padding: 250px 0;
    position: relative;
}
.fm h2 { color: #009ada !important;letter-spacing:2px}
.ulfm>li{list-style-type:circle;width:auto;margin:30px 0px;font-size:22px;}

/*--------------------------------------------------------------
内容页面内容，4:mobile
--------------------------------------------------------------*/
#mobile {
    background: url("../img/mobile/mobile_banner.jpg") center top no-repeat;
    background-size: cover;
    padding: 250px 0;
    position: relative;
}

.mobile h2 {
    color: #009ada !important;
    letter-spacing: 2px
}

.ulmobile > li {
    list-style-type: circle;
    width: auto;
    margin: 30px 0px;
    font-size: 22px;
}