/* 通用样式 */

/* swiperBanner组件 */
.index-banner {
    height: 41.67vw;
}

.no-index-banner {
    height: 31.25vw;
}


.banner-swiper-container {
    height: 100%;
}

    .banner-swiper-container .swiper-slide > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.head {
    top: 0;
    height: 100px;
}

.logo-img {
    display: inline-block;
    width: 9.948vw;
    background-image: url(../img/logo.png);
    background-size: 100% 100%;
    height: 2.8125vw;
    margin: 0 1.2vw 0 0;
}

.logo-img-text {
    font-size: 0.933vw;
    font-weight: 300;
    color: #FFFFFF;
}

.center-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 87.5%;
    margin: 0 auto;
}

.right {
    display: flex;
    align-items: center;
}

.word-line {
    width: 1px;
    height: 10px;
    background: #000000;
    opacity: 0.3;
    margin: 0 1.5625vw 0 0;
}

.search {
    width: 1.04vw;
    height: 1.04vw;
    background-image: url(../img/search.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: inline-block;
    cursor: pointer;
}

.nav {
    display: flex;
}

    .nav > li {
        position: relative;
        padding: 0 1.5625vw;
    }

        .nav > li > a {
            position: relative;
            font-size: 0.9375vw;
            height: 100px;
            line-height: 100px;
            display: inline-block;
            transition: all .8s;
            color: #fff;
        }

        .nav > li > .line {
            position: absolute;
            margin: 8px 0 0 0;
            width: 0;
            height: 3px;
            background: #fff;
            bottom: 30px;
            left: 0;
            transition: width .5s;
        }

        .nav > li.active > .line {
            width: 40%;
            margin: 0 30%;
        }

        .nav > li.current > .line {
            width: 40%;
            margin: 0 30%;
            background: #fff;
        }

        .nav > li > ul {
            position: absolute;
            padding: 12px 0 0 1.04vw;
            margin: 0 0.52vw;
            top: 100px;
            height: 573px;
            z-index: 10000;
            width: 100%;
            left: 0;
            transition: all .5s;
            display: none;
        }

            .nav > li > ul > li {
                margin: 28px 0 0 0;
            }

            .nav > li > ul:hover {
                background: #FFFFFF;
            }

            .nav > li > ul > li > a {
                font-size: 0.933vw;
                color: #666666
            }

                .nav > li > ul > li > a:hover {
                    color: #222222;
                }

.nav-content-bg {
    width: 100%;
    height: 573px;
    background-color: rgba(255, 255, 255, 0.8);
    display: none;
}

.swiper-slide-text {
    z-index: 100001;
}



/* Pc搜索组件 */


.search-content {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(27, 58, 131, 0.98);
    z-index: 1000001;
}

    .search-content .search-box {
        position: absolute;
        top: calc(50% - 170px);
        left: calc(50% - 410px);
    }

        .search-content .search-box .outer-box {
            width: 820px;
            height: 100px;
            border-radius: 50px;
            box-sizing: border-box;
            padding: 10px;
            background: rgba(255, 255, 255, 0.2);
        }

            .search-content .search-box .outer-box .inner-box {
                width: 100%;
                height: 100%;
                line-height: 87px;
                padding-left: 35px;
                border-radius: 40px;
                background: #fff;
                position: relative;
            }

                .search-content .search-box .outer-box .inner-box input {
                    background-color: transparent;
                    height: 60px;
                    width: 90%;
                    border: 0;
                    border-radius: 0;
                    font-size: 20px;
                    outline: none;
                }

                .search-content .search-box .outer-box .inner-box .search-icon-box {
                    display: inline-block;
                    width: 80px;
                    height: 80px;
                    right: 0;
                    top: 0;
                    border: 0;
                    background-color: transparent;
                    cursor: pointer;
                    position: absolute;
                    background-position: center;
                    background-repeat: no-repeat;
                    background-size: 20px 20px;
                    background-image: url(../img/search_selected.png);
                }

        .search-content .search-box .close {
            text-align: center;
            margin-top: 180px;
            width: 100%;
        }

            .search-content .search-box .close i {
                display: inline-block;
                width: 60px;
                height: 60px;
                cursor: pointer;
                background-repeat: no-repeat;
                background-size: cover;
                background-image: url(../img/close.png);
            }


/* 营销组件 */

.market-box {
    padding: 120px 0;
}

    .market-box > h2 {
        font-size: 36px;
        font-weight: 400;
        color: #222222;
        text-align: center;
        margin: 0px 0 124px 0;
    }


.question-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .question-list > .question-item {
        text-align: center;
        padding: 0 8px 0px;
        background-size: cover;
    }

.index-market-box .question-list > .question-item {
    width: 19.33%;
    height: 508px;
}

.video-market-box .question-list > .question-item {
    width: 191px;
    height: 502px;
}

.question-list > .question-item:nth-of-type(1) {
    background-image: url(../img/market_01.png);
}

.question-list > .question-item:nth-of-type(2) {
    background-image: url(../img/market_02.png);
}

.question-list > .question-item:nth-of-type(3) {
    background-image: url(../img/market_03.png);
}

.question-list > .question-item:nth-of-type(4) {
    background-image: url(../img/market_04.png);
}

.question-list > .question-item:nth-of-type(5) {
    background-image: url(../img/market_05.png);
}

.question-item > i {
    font-size: 62px;
    font-weight: bold;
    color: #fff;
    margin: 298px 0 24px 0;
    display: block;
}

.question-item > p {
    font-size: 18px;
    font-weight: 300;
    color: #FFFFFF;
    line-height: 30px;
}

.market-box > h2:nth-of-type(1) {
}



/* 解决方案组件 */


.solution-box > h3:nth-of-type(1) {
    font-size: 18px;
    font-weight: 300;
    color: #555555;
    text-align: center;
}

.solution-box > h2:nth-of-type(1) {
    margin: 0px 0 30px 0;
    font-size: 36px;
    font-weight: 400;
    color: #222222;
    text-align: center;
}

.solution-list {
    padding: 0 269px;
    display: flex;
    justify-content: space-between;
}


.site-solution-item {
    display: flex;
    background: #FFFFFF;
    justify-content: space-between;
    padding: 35px 99px 38px 60px;
    margin-top: 20px;
    align-items: center;
}

    .site-solution-item > div > p:nth-of-type(1) {
        font-size: 24px;
        font-weight: 400;
        color: #222222;
    }

    .site-solution-item > div > div:nth-of-type(1) {
        margin: 24px 0 0 0;
        font-size: 16px;
        font-weight: 300;
        color: #222222;
    }



.solution-item > i {
    font-size: 18px;
    font-weight: 300;
    color: #555555;
    margin: 67px 0 13px 0;
    display: inline-block;
}

.solution-item > div > i:nth-of-type(1) {
    font-size: 30px;
    font-weight: 500;
    color: #222222;
}

.solution-item > div > i:nth-of-type(2) {
    font-size: 12px;
    font-weight: 300;
    color: #555555;
}


/* 找到你组件 */
.your-list {
    padding: 85px 93px 120px;
    display: flex;
    justify-content: space-between;
}

.your-item {
    text-align: center;
}

    .your-item > i {
        display: block;
    }

        .your-item > i:nth-of-type(1) {
            font-size: 24px;
            line-height: 42px;
            font-weight: 500;
            color: #222222;
            margin: 38px 0 0 0;
        }

        .your-item > i:not(:nth-of-type(1)) {
            font-size: 18px;
            line-height: 36px;
            font-weight: 400;
            color: #666666;
        }

/* 成功案例组件 */
.success-box {
}

    .success-box > h2 {
        font-size: 36px;
        font-weight: 400;
        color: #222222;
        text-align: center;
        margin: 95px 0 30px 0;
    }

    .success-box > h3 {
        font-size: 18px;
        font-weight: 300;
        color: #555555;
        text-align: center;
    }

    .success-box > ul {
        display: flex;
        justify-content: space-between;
        margin: 60px 0 60px 0;
        flex-wrap: wrap;
    }

        .success-box > ul > li {
            min-width: 47px;
            margin: 0 18px;
            padding: 0 0 20px 0;
            text-align: center;
        }

            .success-box > ul > li > a {
                font-size: 18px;
                font-weight: 300;
                color: #555555;
            }

            .success-box > ul > li.active > a {
                font-size: 20px;
                font-weight: 500;
                color: #222222;
            }

            .success-box > ul > li i {
                display: block;
                width: 0px;
                height: 3px;
                background: #222222;
                margin: 15px auto 0 auto;
                transition: all 100ms ease 0s;
            }

            .success-box > ul > li.active > i {
                width: 47px;
            }

            .success-box > ul > li:hover i {
                width: 47px;
            }
            .success-box > ul > li:hover a {
                /* font-size: 20px */
            }
.success-list {
    display: flex;
    flex-wrap: wrap;
}

    .success-list > .success-item:not(:nth-of-type(3n)) {
        margin-right: 21px;
    }

    .success-list > .success-item {
        width: 386px;
        margin: 0px 0 20px 0;
    }

.success-item > .img-hover-wrapper {
    width: 100%;
    height: 257px;
}

    .success-item > .img-hover-wrapper > img {
      
    }

.success-item > div:nth-of-type(2) {
    padding: 20px;
    border: 1px solid #DCDCDC;
    border-top: none;
}

    .success-item > div:nth-of-type(2) > p {
        font-size: 16px;
        color: #222222;
    }

.success-item > div:nth-of-type(2) > div {
    display: flex;
    margin: 13px 0 0 0;
    justify-content: space-between;
    align-items: center;

}
    .success-item > div:nth-of-type(2) > div > span {
        font-size: 12px;
        color: #888888;
    }


/* sitename组件 */
.sitename-list {
    display: none;
    justify-content: center;
    flex-wrap: wrap;
}

.site-02 .sitename-list,
.site-03 .sitename-list {
    padding: 111px 148px;
}
.sitename-list li {
    text-align: center;
}
.sitename-list li:not(:nth-last-of-type(1)) {
    margin: 0 100px 0 0;
}

.sitename-list li.active > a {
    font-size: 20px;
    font-weight: 400;
    color: #222222;
}

.sitename-list li.active > i {
    display: block;
    width: 87px;
    height: 3px;
    background: #222222;
    margin: 28px auto 0 auto;
}


.sitename-list li:not(.active) > a {
    font-size: 20px;
    font-weight: 300;
    color: #555555;
    font-weight: 500;
}



/* 网站解决方案组件 */

.site-solution-list {
    padding: 110px 0 90px;
    background-color: #F7F7F7;
}

    .site-solution-list > h2:nth-of-type(1) {
        font-size: 36px;
        font-weight: 400;
        color: #222222;
        text-align: center;
        margin: 0 0 50px 0;
    }



/* 懒得看组件 */

.lazy-box {
    padding: 110px 0 0px 0;
}

.site-02 .lazy-box {
    background-color: #ffffff;
}

.lazy-box > h2:nth-of-type(1) {
    width: 374px;
    height: 54px;
    line-height: 54px;
    border: 1px solid #222222;
    text-align: center;
    margin: auto;
    font-size: 30px;
    font-weight: 400;
    color: #222222;
}

.lazy-box > h3:nth-of-type(1) {
    font-size: 36px;
    font-weight: 400;
    color: #222222;
    text-align: center;
    margin: 27px auto 0;
}

.lazy-box > h4:nth-of-type(1) {
    font-size: 18px;
    font-weight: 300;
    color: #555555;
    text-align: center;
    margin: 13px auto 0;
}

.img-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 72px;
}

    .img-list > .img-item:not(:nth-of-type(3n)) {
        margin: 17px 16.5px 0 0;
    }

    .img-list > .img-item {
        width: 389px;
        height: 235px;
        position: relative;
        margin-top: 17px;
    }

.img-item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-item > div {
    position: absolute;
    right: 34px;
    bottom: 23px;
}

    .img-item > div > a {
        font-size: 16px;
        font-weight: 300;
        color: #FFFFFF;
    }

/* 顾问组件 */
.counselor-box {
    padding: 20px 0;
    width: 100%;
    display: flex;
    justify-content: center;

}
.counselor-box>img {
    width: 150px;
    height: 150px;
}
    /* 进步组件 */
    .advance-box {
        padding: 89px 0 180px 0;
    }

    .advance-box > h2:nth-of-type(1) {
        font-size: 36px;
        font-weight: bold;
        color: #222222;
        text-align: center;
    }

    .advance-box > h3:nth-of-type(1) {
        width: 417px;
        height: 54px;
        line-height: 54px;
        border: 1px solid #222222;
        text-align: center;
        margin: 44px auto 0;
        font-size: 30px;
        font-weight: 400;
        color: #222222;
    }

/* 正确选择组件 */

i.right-after {
    display: inline-block;
    width: 26px;
    height: 26px;
    margin: 0 24px 0 0;
    background: url(../img/right_icon.png);
    background-size: 100%;
    background-repeat: no-repeat;
    flex: none;
}


/* 五星选择组件 */

i.star-after {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin: 0 24px 0 0;
    background: url(../img/star_icon.png);
    background-size: 100%;
}

/* 如何在线营销组件 */

.how-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 89px;
    margin-top: 89px;
}

.how-item-1 {
    width: 393px;
    padding: 34px 36px 29px 28px;
    background-color: #374B7A;
    margin: 0 10px 0 0;
    transition: all .5s ease;
}

    .how-item-1 > p:nth-of-type(1) {
        font-size: 22px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .how-item-1 > p:nth-of-type(2) {
        font-size: 18px;
        font-weight: 400;
        color: #FFFFFF;
        margin: 86px 0 0 0;
    }

.how-item-2 {
    width: 191px;
    padding: 34px 34px 33px 30px;
    background-color: #4461A0;
    margin: 0 10px 0 0;
    transition: all .5s ease;
}

    .how-item-2 > p:nth-of-type(1) {
        font-size: 16px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .how-item-2 > p:nth-of-type(2) {
        font-size: 14px;
        font-weight: 400;
        color: #FFFFFF;
        margin: 56px 0 0 0;
    }


.how-item-3 {
    width: 394px;
    padding: 34px 38px 29px 28px;
    background-color: #374B7A;
    margin: 0 10px 0 0;
    transition: all .5s ease;
}

    .how-item-3 > p:nth-of-type(1) {
        font-size: 22px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .how-item-3 > p:nth-of-type(2) {
        font-size: 18px;
        font-weight: 400;
        color: #FFFFFF;
        margin: 86px 0 0 0;
    }



.how-item-4 {
    width: 191px;
    padding: 34px 34px 33px 30px;
    background-color: #4461A0;
    margin: 0 0px 0 0;
    transition: all .5s ease;
}

    .how-item-4 > p:nth-of-type(1) {
        font-size: 16px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .how-item-4 > p:nth-of-type(2) {
        font-size: 14px;
        font-weight: 400;
        color: #FFFFFF;
        margin: 56px 0 0 0;
    }



.how-item-5 {
    width: 393px;
    padding: 35px 36px 29px 27px;
    background-color: #374B7A;
    margin: 10px 10px 0 0;
    transition: all .5s ease;
}

    .how-item-5 > p:nth-of-type(1) {
        font-size: 22px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .how-item-5 > p:nth-of-type(2) {
        font-size: 18px;
        font-weight: 400;
        color: #FFFFFF;
        margin: 86px 0 0 0;
    }


.how-item-6 {
    width: 394px;
    padding: 35px 36px 29px 28px;
    background-color: #374B7A;
    margin: 10px 10px 0 0;
    transition: all .5s ease;
}

    .how-item-6 > p:nth-of-type(1) {
        font-size: 22px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .how-item-6 > p:nth-of-type(2) {
        font-size: 18px;
        font-weight: 400;
        color: #FFFFFF;
        margin: 83px 0 0 0;
    }

.how-item-7 {
    width: 191px;
    padding: 44px 34px 37px 30px;
    background-color: #4461A0;
    margin: 10px 10px 0 0;
    transition: all .5s ease;
}

    .how-item-7 > p:nth-of-type(1) {
        font-size: 16px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .how-item-7 > p:nth-of-type(2) {
        font-size: 14px;
        font-weight: 400;
        color: #FFFFFF;
        margin: 69px 0 0 0;
    }


.how-item-8 {
    width: 191px;
    background-color: #4461A0;
    margin: 10px 0px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s ease;
}

.how-item-1:hover, .how-item-3:hover, .how-item-5:hover, .how-item-6:hover {
    background-color: #4461A0;
}


.how-item-2:hover, .how-item-4:hover, .how-item-7:hover, .how-item-8:hover {
    background-color: #374B7A;
}
/* 分页组件 */
.page-component {
    display: flex;
    justify-content: center;
    margin: auto;
    padding: 104px 0;
}

    .page-component > span,
    .page-component > a {
        width: 40px;
        line-height: 40px;
        text-align: center;
        color: #808080;
        border: 1px solid #CCCCCC;
        margin: 0 5px;
    }

    .page-component .active {
        background: #2A62FF;
        color: #ffffff;
    }

    .page-component > .prev {
        margin-right: 15px;
    }

    .page-component > .next {
        margin-left: 15px;
    }


/* 回到顶部组件 */
.gotop-component {
    position: fixed;
    right: 0;
    top: 50%;
}

    .gotop-component > .customer,
    .gotop-component > .mobile,
    .gotop-component > .qrcode, .gotop-component > .gotop {
        display: block;
        width: 48px;
        height: 48px;
        margin: 0 0 1px 0;
    }

    .gotop-component > span.customer {
        background: #2A62FF url(../img/customer.png);
        background-size: cover;
    }


    .gotop-component > span.mobile {
        background: #2A62FF url(../img/mobile.png);
        background-size: cover;
    }

    .gotop-component > span.qrcode {
        background: #2A62FF url(../img/qrcode_icon.png);
        background-size: cover;
    }

    .gotop-component > span.gotop {
        background: #fff url(../img/gotop_icon.png);
        background-size: cover;
    }
    .gotop-component > span.customer-hover,
    .gotop-component > span.mobile-hover {
        position: absolute;
        display: none;
        line-height: 64px;
        width: 224px;
        background: url(../img/top_icon.png);
        background-size: cover;
        font-size: 16px;
        font-weight: 300;
        color: #2A62FF;
        left: -224px;
        padding: 0 0 0px 20px;
    }

.gotop-component > span.qrcode-hover {
    display: none;
    left: -126px;
    top: 48px;
    position: absolute;
    width: 120px;
    height: 120px;
    background: #2A62FF url(../img/qrcode.png);
    background-size: cover;
}
    /*.gotop-component > span.customer:hover ~ .customer-hover {
        display: block;
    }

    .gotop-component > span.mobile:hover ~ .mobile-hover {
        display: block;
    }
.gotop-component > span.qrcode:hover ~ .qrcode-hover {
    display: block;
}*/
    .gotop-component > span.customer-hover {
        top: 0;
    }

    .gotop-component > span.mobile-hover {
        top: 48px;
    }


 



/* 底部组件 */
.year-box {
    background: #242C3B;
}

.copyright-box {
    background: #1D2330;
    padding: 40px 0 40px;
}

.year-contact {
    display: flex;
}

.year {
    width: 386px;
    height: 164px;
    background: #2A62FF;
    padding: 28px 0 0 78px;
}

    .year > p:nth-of-type(1) {
        font-size: 60px;
        font-weight: 500;
        color: #FFFFFF;
    }

    .year > p:nth-of-type(2) {
        font-size: 32px;
        font-weight: 400;
        color: #FFFFFF;
        margin: 20px 0 0 0;
    }

.advisory {
    margin: 0 170px 0 85px;
    flex-grow: 1;
}

    .advisory > p:nth-of-type(1) {
        font-size: 28px;
        font-weight: 300;
        color: #FFFFFF;
        margin: 26px 0 0 0;
    }

    .advisory > p:nth-of-type(2) {
        font-size: 12px;
        font-weight: 300;
        color: #FFFFFF;
        margin: 5px 0px 0 0;
    }

    .advisory > .btns {
        margin: 35px 0 0 0;
    }

.btns > span {
    width: 162px;
    line-height: 48px;
    background: #2A62FF;
    border-radius: 24px;
    display: inline-block;
    font-size: 16px;
    font-weight: 300;
    color: #FFFFFF;
    text-align: center;
}

    .btns > span:nth-of-type(1) {
        margin: 0 20px 0 0;
    }

.phone > div:nth-of-type(1) {
    margin: 107px 0 16px 0;
}

.phone > div > span:nth-of-type(1) {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 300;
    color: #2A62FF;
}

.phone > div > span:nth-of-type(2) {
    font-size: 20px;
    font-family: Source Han Sans CN;
    font-weight: 300;
    color: #FFFFFF;
}

.year-nav {
    padding: 90px 0 38px;
    display: flex;
    justify-content: space-between;
}

    .year-nav > ul {
        display: flex;
    }

        .year-nav > ul > li {
            margin: 0 60px 0 0;
        }

            .year-nav > ul > li > a {
                display: block;
            }

                .year-nav > ul > li > a:nth-of-type(1) {
                    font-size: 20px;
                    font-weight: 400;
                    color: #FFFFFF;
                }

                .year-nav > ul > li > a:not(:nth-of-type(1)) {
                    font-size: 16px;
                    font-weight: 300;
                    color: #6E6F72;
                    margin: 30px 0 0 0;
                }

.year-nav > ul > li>a:nth-of-type(6) ~a {
                display: none;
            }

    .year-nav > div > div {
        text-align: center;
    }

        .year-nav > div > div:nth-of-type(1) ~ div {
            display: none;
        }

    .year-nav img {
        display: block;
    }

    .year-nav span {
        display: block;
        font-size: 16px;
        font-weight: 300;
        color: #828282;
        margin: 15px auto 19px auto;
    }

.copyright-box > div > div {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright-box > div > p,
.copyright-box span {
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #808080;
}

    .copyright-box > div > p:nth-of-type(1) {
    }

.copyright-box > div {
    text-align: center;
}


/* pc端特有样式 */

@media (min-width: 1200px) {
}

/* 移动端特有样式 */
@media (max-width: 1199.98px) {

    /* wap端swiper组件 */
    .index-banner, .no-index-banner {
        height: auto;
        padding-top: 13.33vw;
    }

    .nav {
        width: 100%;
        display: block;
    }

    .nav-box {
        display: block;
    }

        .nav-box > li > ul {
            display: none;
        }

    .center-head {
        display: block;
        width: 100%;
        position: fixed;
        background-color: #FFFFFF;
    }

    .head {
        height: 13.33vw;
        background-color: #FFFFFF;
    }

    .logo {
        width: 92%;
        height: 13.33vw;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo-img {
        width: 30%;
        height: 60%;
        background-image: url(../img/logo_selected.png);
    }

    .word-line {
        display: none;
    }

    .search {
        display: none;
    }

    .nav > li.current > .line {
        width: 90%;
        margin: 0 5%;
        background: #fff;
    }

    .nav > li {
        padding: 0 5.33vw;
    }


        .nav > li > a {
            font-size: 4.26vw;
            height: 13.33vw;
            line-height: 13.33vw;
            color: #222222;
            width: 100%;
        }

    .nav > li > .line {
        bottom: 0px;
    }

    .banner-arrow {
        width: 13.33vw;
    }

    /* wap端导航切换组件 */
    .icon-bar {
        display: block;
        width: 5.86vw;
        height: 0.533vw;
        border-radius: 1px;
        margin-bottom: 1.33vw;
        background: #1A1A1A;
    }

        .icon-bar:last-child {
            margin-bottom: 0;
        }


    .right {
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 13.33vw;
        width: 100%;
        height: 0;
        overflow: hidden;
        padding-top: 0;
        transition: all 600ms linear 0s;
        background-color: rgba(255, 255, 255, 0.95);
    }

    /* 遮罩层组件 */
    .mask {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1000;
        background: rgba(0, 0, 0, .5);
    }


    /* 营销组件*/

    .market-box {
        padding: 10px 0 30px;
    }

        .market-box > h2:nth-of-type(1) {
            font-size: 4.8vw;
            margin: 20px 0 20px 0;
            padding: 0 10%;
            font-weight: 500;
            line-height: 1.5;
        }



    .question-list {
        padding: 0 2%;
    }

    .market-box .question-list > .question-item {
        width: 48%;
        height: 82.6vw;
        padding: 0 4vw 0px;
        margin: 2.6vw 0;
    }
    .index-market-box  .question-list > .question-item:nth-of-type(5) {
        display: none;
    }

    .question-item > i {
        font-size: 8.26vw;
        font-weight: bold;
        margin: 56vw 0 1.33vw 0;
        display: block;
    }

    .question-item > p {
        font-size: 3.2vw;
        line-height: 3.73vw;
    }

    .solution-box {
        padding: 0 2%;
    }

    .solution-box > h2:nth-of-type(1) {
        font-size: 20px;
        font-weight: 500;
        margin: 30px 0 10px 0;
    }

    .solution-box > h3:nth-of-type(1) {
        font-size: 12px;
    }

    .solution-list {
        padding: 0 2%;
    }

    .solution-item > i {
        font-size: 14px;
        margin: 20px 0 10px 0;
    }



    /* 找到你组件 */


    .your-list {
        padding: 30px 0% 40px;
        display: flex;
        justify-content: space-between;
    }

    .your-item > img {
        width: 50%;
    }

    .your-item > i:nth-of-type(1) {
        font-size: 14px;
        line-height: 24px;
        margin: 10px 0px 0px;
    }

    .your-item > i:not(:nth-of-type(1)) {
        display: none;
        font-size: 12px;
        line-height: 18px;
    }


    /* 成功案例组件 */
    .success-box > h2 {
        font-size: 20px;
        font-weight: 500;
        text-align: center;
        margin: 40px 0 10px 0;
    }

    .success-box > h3 {
        font-size: 12px;
    }

    .success-box > ul {
        justify-content: flex-start;
        margin: 20px 1% 10px 1%;
    }


        .success-box > ul > li {
            min-width: initial;
            margin: 0 1.06vw;
            padding:  0;
            width: 22%;
        }

        .success-box > ul > li:nth-of-type(8)~li {
            display: none;
        }
            .success-box > ul > li i {
        margin: 2.66vw auto 10px auto;
    }

            .success-box > ul > li.active > i, .success-box > ul > li:hover i {
                width: 6.13vw;
                height: 2px;
                margin: 5px auto 0 auto;
            }

 

            .success-box > ul > li > a.active {
                font-size: 12px;
            }

            .success-box > ul > li > a {
                font-size: 3.733vw;
            }

    .success-list {
        padding: 0 2%;
        justify-content: space-between;
    }

        .success-list > .success-item {
            width: 48%;
            margin: 0px 0 14.4px 0;
        }

    .success-list > .success-item:nth-of-type(9) {
        display: none;
    }

            .success-list > .success-item:not(:nth-of-type(3n)) {
                margin-right: 0px;
            }

    .success-item >.img-hover-wrapper {
        height: 30.66vw;
    }
    .success-item > img {
    }

    .success-item > div:nth-of-type(2) {
        padding: 20px;
    }

        .success-item > div:nth-of-type(2) > p {
            font-size: 3.73vw;
        }

    .success-item > div:nth-of-type(2) > div {
        margin: 10px 0 0 0;
    }

        .success-item > div:nth-of-type(2) > div > img {
            width: 10px;
        }

    .sitename-list {
        background-color: #F7F7F7;
        display: flex;
        padding: 15px 0 20px;
    }

    /*  sitename组件*/
        .sitename-list li:not(:nth-last-of-type(1)) {
            text-align: center;
            margin: 16px 2.66vw 0 2.66vw;
        }
        .sitename-list li:nth-last-of-type(1) {
            text-align: center;
            margin: 16px 2.66vw 0 2.66vw;
        }
    .sitename-list li.active > a {
        font-size: 3.733vw;
    }

        .sitename-list li:not(.active) > a {
            font-size: 3.733vw;
        }

    .sitename-list li.active > i {
        width: 11.466vw;
        height: 3px;
        margin: 4px auto 0 auto;
    }


    /*  网站解决方案组件*/

    .site-solution-list {
        padding: 10px 2% 30px;
        margin: 0px 0 0 0;
    }

        .site-solution-list > h2:nth-of-type(1) {
            font-size: 18px;
            margin: 0 0 10px 0;
        }


    .site-solution-item {
        padding: 15px 5px 20px 5px;
        margin-top: 10px;
    }

        .site-solution-item > div > p:nth-of-type(1) {
            font-size: 16px;
        }


        .site-solution-item > div > div:nth-of-type(1) {
            margin: 12px 0 0 0;
            font-size: 12px;
        }

        .site-solution-item > img {
            width: 45px;
        }

    /* 懒得看组件 */
    .lazy-box {
        padding: 30px 0 10px 0;
    }

        .lazy-box > h2:nth-of-type(1) {
            width: 187px;
            height: 27px;
            line-height: 27px;
            border: 1px solid #222222;
            text-align: center;
            margin: auto;
            font-size: 14px;
            font-weight: 400;
            color: #222222;
        }

        .lazy-box > h3:nth-of-type(1) {
            font-size: 18px;
            margin: 13px auto 0;
        }

        .lazy-box > h4:nth-of-type(1) {
            font-size: 14px;
        }

    .img-list {
        margin-top: 20px;
        justify-content: space-between;
    }

        .img-list > .img-item {
            width: 48%;
            height: auto;
            margin-top: 10px;
        }

            .img-list > .img-item:not(:nth-of-type(3n)) {
                margin: 10px 0px 0 0;
            }

    .img-item > div {
        position: absolute;
        right: 17px;
        bottom: 12px;
    }

        .img-item > div > a {
            font-size: 12px;
        }

        .img-item > div > img {
            width: 8px;
        }
    /* 找顾问组件 */
    .counselor-box > img {
        width: 75px;
        height: 75px;
    }

    /* 进步组件 */
    .advance-box {
        padding: 30px 0 30px 0;
    }


        .advance-box > h2:nth-of-type(1) {
            font-size: 18px;
            margin: 10px auto 0;
        }


        .advance-box > h3:nth-of-type(1) {
            width: 210px;
            height: 27px;
            line-height: 27px;
            margin: 10px auto 0;
            font-size: 15px;
        }

    /* 正确选择组件 */
    i.right-after {
        width: 13px;
        height: 13px;
        margin: 0 4px 0 0;
    }

    /* 五星选择组件 */
    i.star-after {
        width: 14px;
        height: 14px;
        margin: 0 12px 0 0;
    }

    /* 如何营销组件 */
    .how-list {
        display: none;
        margin-bottom: 30px;
        margin-top: 30px;
        justify-content: space-between;
    }

        .how-list > div {
            width: 33%;
            margin-right: 0;
            padding: 7px 7px 6px 4px;
        }

            .how-list > div:nth-of-type(6) ~ div {
                width: 48%;
                margin-right: 0;
            }

    .how-item-1 {
        background-color: #374B7A;
    }

        .how-item-1 > p:nth-of-type(1) {
            font-size: 12px;
        }

        .how-item-1 > p:nth-of-type(2) {
            font-size: 12px;
            margin: 16px 0 0 0;
        }

    .how-item-2 > p:nth-of-type(1) {
        font-size: 12px;
    }

    .how-item-2 > p:nth-of-type(2) {
        font-size: 12px;
        margin: 10px 0 0 0;
    }


    .how-item-3 > p:nth-of-type(1) {
        font-size: 12px;
    }

    .how-item-3 > p:nth-of-type(2) {
        font-size: 12px;
        margin: 10px 0 0 0;
    }

    .how-item-4 {
        margin: 10px 0 0 0;
    }

        .how-item-4 > p:nth-of-type(1) {
            font-size: 12px;
        }

        .how-item-4 > p:nth-of-type(2) {
            font-size: 12px;
            margin: 10px 0 0 0;
        }


    .how-item-5 > p:nth-of-type(1) {
        font-size: 12px;
    }

    .how-item-5 > p:nth-of-type(2) {
        font-size: 12px;
        margin: 10px 0 0 0;
    }

    .how-item-6 > p:nth-of-type(1) {
        font-size: 12px;
        font-weight: 400;
        color: #FFFFFF;
    }

    .how-item-6 > p:nth-of-type(2) {
        font-size: 12px;
        margin: 10px 0 0 0;
    }

    .how-item-7 > p:nth-of-type(1) {
        font-size: 12px;
    }

    .how-item-7 > p:nth-of-type(2) {
        font-size: 12px;
        margin: 10px 0 0 0;
    }
    .how-item-8>img {
        width: 37px;
    }


    /* 分页组件 */

    .page-component {
        padding: 20px 0;
    }

        .page-component > span,
        .page-component > a {
            width: 30px;
            line-height: 30px;
            margin: 0 5px;
        }

        .page-component .active {
        }

        .page-component > .prev {
            margin-right: 15px;
        }

        .page-component > .next {
            margin-left: 15px;
        }

    /* 回到顶部组件 */
    .gotop-component {
        display: none;
    }

    /* 底部组件 */

    .year-box {
        position: relative;
        padding: 0 0%;
    }

    .year-nav ul {
        display: none;
    }

    .year-contact {
        display: block;
        padding: 0 0 30px;
    }

    .year {
        width: auto;
        height: auto;
        background: #2A62FF;
        padding: 10px 2% 10px 2%;
        display: flex;
        align-items: flex-end;
       
    }

        .year > p:nth-of-type(1) {
            font-size: 24px;
            margin: 0 5px 0 0;
        }

        .year > p:nth-of-type(2) {
            font-size: 12px;
            margin: 0;
        }

    .advisory {
        margin: 30px 2% 0 2%;
        flex-grow: 1;
    }

        .advisory > p:nth-of-type(1) {
            font-size: 14px;
            margin: 13px 0 0 0;
        }

    .btns > span:nth-of-type(1) {
        margin: 0 10px 0 0;
    }

    .btns > span {
        width: 81px;
        line-height: 24px;
        background: #2A62FF;
        border-radius: 12px;
        font-size: 12px;
    }
    .phone {
        padding: 20px 2% 0;
    }

    .phone > div:nth-of-type(1) {
        margin: 10px 0 10px 0;
    }

    .phone > div > span:nth-of-type(1) {
        font-size: 12px;
    }

    .phone > div > span:nth-of-type(2) {
        font-size: 14px;
    }

    .advisory > p:nth-of-type(2) {
    }

    .advisory > .btns {
        margin: 20px 0 0 0;
    }

    .year-nav {
        padding: 0;
        position: absolute;
        right: 0;
        bottom: 30px;
    }

        .year-nav > div {
            display: flex;
            justify-content: space-between;
            width: 100%;
            justify-content: center;
        }
            .year-nav > div>div:not(:nth-last-of-type(1)) {
                margin-right: 30px;
            }
            .year-nav img {
                width: 80px;
            }

        .year-nav span {
            font-size: 12px;
            font-weight: 300;
            margin: 10px auto 0px auto;
        }




    .copyright-box {
        padding: 30px 0 20px;
    }

        .copyright-box > div > p,
        .copyright-box span {
            font-size: 12px;
        }
}
