.pageheader-navlist-child>a{
    color: #fff;
}
.pageheader-nav .tel{
    color: #fff;
}
.fixed .pageheader-nav .tel{
    color: #0056b3;
}
.fixed .pageheader-navlist-child>a{
    color:rgb(3,28,73);
}
.pageheader-nav .shopImg{
    display: none;
}
.fixed .pageheader-nav img{
    display: none;
}
.fixed .pageheader-nav .shopImg{
    display: block;
}



.banner {
    width: 100%;
    height: 760px;
    background: url(../../images/landinglive/goods/topbg.jpg)no-repeat;
    background-size: 100% 100%;
    padding-top: 72px;

}

.bannerCont {
    width: 1200px;
    margin: 0 auto;
    display: flex;
}

.lunbo {
    width: 450px;
    overflow: hidden;
}

.bannerText {
    padding-left: 50px;
    padding-top: 50px;
    font-size: 30px;
    color: #fff;
    line-height: 1.5;
    flex: 1;
}

.swiper-slide img {
    width: 450px;
}

.bannerText h2 {
    font-size: 50px;
    font-weight: 900;
}

.bannerText h2 span {
    color: #ffff00;
}

.bannerText p span {
    color: #ffff00;
}

.bannerText .btnBox {
    display: flex;
    padding: 30px 0;
}

.btnBox div {
    margin-right: 20px;
    padding: 0 15px;
    line-height: 1.8;
    background: #5ac1ff;
    border-radius: 25px;
}

.characteristic {
    padding-top: 80px;
}

.characteristic>button {
    position: relative;
    height: 68px;
    line-height: 68px;
    padding: 0 34px;
    font-size: 30px;
    margin: 20px auto 0;
    display: block;
    background-image: linear-gradient(134deg, #FFB08C 10%, #FF7B7F 88%);
    color: #ffffff;
    border-radius: 60px;
    transition: .25s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
    overflow: hidden;
    /* left: -197px; */
}

.characteristic>button:before {
    content: "";
    background-color: rgba(255, 255, 255, 0.5);
    height: 100%;
    width: 3em;
    display: block;
    position: absolute;
    top: 0;
    left: -4.5em;
    transform: skewX(-45deg) translateX(0);
    transition: none;
    animation: myfirst 5s linear infinite;
}

@keyframes myfirst {
    75% {
        transform: skewX(-45deg) translateX(0);
        transition: all 0.5s ease-in-out;
    }

    100% {
        transform: skewX(-45deg) translateX(35em);
        transition: all 0.5s ease-in-out;
    }
}

.characteristic>button:hover {
    transform: translateY(-10px)
}



/********************* 内容开始 **********************/
.powerful-tools-area {
    position: relative;
    overflow: hidden;
}

.powerful-tools-area .powerful-shape {
    position: absolute;
}

.powerful-tools-area .powerful-shape.shape-1 {
    width: 488px;
    height: 488px;
    background-color: #f2fcfc;
    border-radius: 50px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 18%;
    left: 10%;
}

@media (max-width: 767px) {
    .powerful-tools-area .powerful-shape.shape-1 {
        width: 320px;
        height: 320px;
    }
}

.powerful-tools-area .powerful-shape.shape-2 {
    top: 30px;
    right: 3%;
    -webkit-animation: rotated 15s infinite linear;
    -moz-animation: rotated 15s infinite linear;
    -o-animation: rotated 15s infinite linear;
    animation: rotated 15s infinite linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .powerful-tools-area .powerful-shape.shape-2 {
        width: 150px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .powerful-tools-area .powerful-shape.shape-2 {
        width: 200px;
    }
}

@media (max-width: 767px) {
    .powerful-tools-area .powerful-shape.shape-2 {
        width: 150px;
    }
}

@-webkit-keyframes rotated {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotated {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.container {
    width: 1200px;
    margin: 0 auto;
}

.powerful-tools-wrapper {
    padding-top: 55px;
    padding-bottom: 110px;
    border-bottom: 1px solid #d7dbe7;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.fadeInLeftBig {
    margin-top: 50px;
    visibility: visible;
    animation-duration: 1s;
    animation-delay: 0.3s;
    animation-name: fadeInLeftBig;
}

.powerful-image .image {
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -o-transform: rotate(-15deg);
    transform: rotate(-15deg);
    margin-left: -75px;
    -webkit-animation: ImgBounce2 2s ease-in-out infinite alternate;
    -moz-animation: ImgBounce2 2s ease-in-out infinite alternate;
    -o-animation: ImgBounce2 2s ease-in-out infinite alternate;
    animation: ImgBounce2 2s ease-in-out infinite alternate;
}

.powerful-tools-content .powerful-content-wrapper {
    padding-top: 38px;
}

.powerful-tools-content .powerful-content-wrapper p {
    font-size: 18px;
    font-weight: 500;
    color: #666e82;
    line-height: 40px;
}

.powerful-tools-content .powerful-content-wrapper .content-list {
    padding-top: 35px;
}

.powerful-tools-content .powerful-content-wrapper .content-list li {
    font-size: 16px;
    font-weight: 500;
    color: #666e82;
    margin-top: 10px;
    position: relative;
    padding-left: 25px;
}

.powerful-tools-content .powerful-content-wrapper .content-list li i {
    color: #ff8257;
    position: absolute;
    top: 5px;
    left: 0;
}

.powerful-tools-content .main-btn {
    padding: 0 50px;
    margin-top: 52px;
    height: 70px;
    line-height: 70px;
}

.main-btn.main-btn-2 {
    color: #fff;
    background-color: #ff8257;
}

.main-btn {
    display: inline-block;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 0;
    padding: 0 30px;
    font-size: 14px;
    height: 45px;
    line-height: 45px;
    border-radius: 4px;
    color: #2e3d62;
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    background-color: #fff;
    -webkit-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.section-title .sub-title {
    font-weight: 600;
    color: #666e82;
    font-size: 16px;
    position: relative;
    padding-top: 35px;
}

.section-title .title {
    font-size: 26px;
    font-weight: 800;
    color: #2e3d62;
    margin-top: 5px;
    letter-spacing: -2px;
}

@-webkit-keyframes ImgBounce2 {
    0% {
        -webkit-transform: translateY(0) rotate(-15deg);
        -moz-transform: translateY(0) rotate(-15deg);
        -ms-transform: translateY(0) rotate(-15deg);
        -o-transform: translateY(0) rotate(-15deg);
        transform: translateY(0) rotate(-15deg);
    }

    100% {
        -webkit-transform: translateY(-20px) rotate(-15deg);
        -moz-transform: translateY(-20px) rotate(-15deg);
        -ms-transform: translateY(-20px) rotate(-15deg);
        -o-transform: translateY(-20px) rotate(-15deg);
        transform: translateY(-20px) rotate(-15deg);
    }
}

.powerful-tools-content .powerful-content-wrapper {
    padding-top: 38px;
}

.powerful-tools-content .powerful-content-wrapper p {
    font-size: 18px;
    font-weight: 500;
    color: #666e82;
    line-height: 40px;
}

@media (max-width: 767px) {
    .powerful-tools-content .powerful-content-wrapper p {
        font-size: 16px;
        line-height: 28px;
    }
}

.powerful-tools-content .powerful-content-wrapper .content-list {
    padding-top: 35px;
}

.powerful-tools-content .powerful-content-wrapper .content-list li {
    font-size: 16px;
    font-weight: 500;
    color: #666e82;
    margin-top: 10px;
    position: relative;
    padding-left: 25px;
}

@media (max-width: 767px) {
    .powerful-tools-content .powerful-content-wrapper .content-list li {
        font-size: 16px;
        line-height: 28px;
    }
}

.powerful-tools-content .powerful-content-wrapper .content-list li i {
    color: #ff8257;
    position: absolute;
    top: 5px;
    left: 0;
}

.powerful-tools-content .main-btn {
    padding: 0 50px;
    margin-top: 52px;
    height: 70px;
    line-height: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .powerful-tools-content .main-btn {
        height: 50px;
        line-height: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .powerful-tools-content .main-btn {
        height: 50px;
        line-height: 50px;
    }
}

@media (max-width: 767px) {
    .powerful-tools-content .main-btn {
        height: 45px;
        line-height: 45px;
        padding: 0 30px;
    }
}

.powerful-tools-content {
    padding-top: 50px;
}







/*------------------------------获取方案------------------------------*/
.hqfa {
    margin: 40px 0
}

.hqfa-main {
    display: flex;
    justify-content: center;
}

.hqfa-main .iptdiv {
    display: flex;
    height: 50px;
    width: 500px;
    border: 1px solid #80b2ff;
    padding: 0 0 0 20px;
    font-size: 18px;
    background-color: rgba(240, 242, 247, 1);
    align-items: center;
    justify-content: space-between;
    border-radius: 4px;
}

.hqfa-main .iptdiv input {
    flex: 1;
    text-align: center;
    font-size: 20px;
    background-color: transparent;
}

.hqfa-main .iptdiv img {
    width: 44px;
}

.hqfa-main>button {
    padding: 0 15px;
    margin-left: 10px;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    background-image: linear-gradient(-30deg, #003ce4, #0069ff);
    border-radius: 4px;
}

.hqfa-main>button:hover {
    background-image: linear-gradient(-30deg, #0069ff, #0069ff);
}


/*----------获取方案的轮播开始----------*/
.hqfa-lunbo {
    width: 400px;
    padding: 10px 0;
    margin: 20px auto 0;
    background-color: #e5efff;
    border-radius: 8px;
}

.hqfa-lunbo>div {
    height: 180px;
    overflow: hidden;
}

.hqfa-lunbo .swiper-wrapper {
    transition-timing-function: linear !important
}

.hqfa-lunbo .swiper-slide {
    display: flex;
    height: 36px;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 20px;
}

.hqfa-lunbo .swiper-slide>p:first-child {
    display: flex;
    align-items: center;
}

.hqfa-lunbo .swiper-slide>p:first-child:before {
    content: '';
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background: url("../../images/landing/tongzhi.png") center;
    background-size: cover;
}

.hqfa-lunbo .swiper-slide em {
    color: #0056b3
}


/*----------获取方案的人数开始----------*/
.hqfa .people-num {
    position: relative;
    width: fit-content;
    margin: 15px auto 0;
    text-align: center;
    font-size: 20px;
}

.hqfa .people-num em {
    position: relative;
    font-weight: bold;
    color: red
}

.hqfa .people-num em:nth-child(2) {
    position: absolute;
    top: 0;
    left: 40px;
    opacity: 1;
    animation: peoplenumanimation 1s linear infinite;
}

@keyframes peoplenumanimation {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
        opacity: 0;
    }
}


/********************************** 功能展示 *********************************/
.gnzs {
    width: 100%;
    padding-top: 50px;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.gnzs .title_bt {
    text-align: center;
    margin-top: 150px;
    margin-bottom: 60px;
}

.gnzs .function-content {
    width: 1200px;
    height: 888px;
    margin: 0 auto;
    position: relative;
    top: 20px;

}

.gnzs .function-content .function-lefts {
    width: 354px;
    position: relative;
    top: 85px;
    left: 52px;

}

.gnzs .function-content .function-center {
    position: relative;
    top: 30px;
    bottom: -1000px !important;
}

.gnzs .function-content .function-right {
    width: 354px;
    position: absolute;
    right: 0px;
    top: 85px;
}

.gnzs .function-content .left {
    float: left;
}

.gnzs .function-content .function-center .function-left {
    display: block;
    position: absolute;
    top: 10px;
    left: 60px;
    z-index: 1;
    border-radius: 20px;
    width: 377px;
    height: 781px;

}

.gnzs .function-content .function-center .function-left1 {
    position: absolute;
    left: 50px;
    display: block;
    z-index: 1;

}

.c-3-3-1 {
    width: 300px;
    height: 74px;
    color: #fff !important;
    border: 1px solid #DBDBDB;
    border-radius: 70px;
}

.c-3-3-1:hover {
    background-color: #4474FF;
}

.c-3-3-2 {
    color: #000
}

.c-3-3-1:hover .c-3-3-2 {
    color: #fff !important;
}

.c-3-3-1 .lan {
    background-color: #fff;
}

.c-3-3-1 .bai {
    background-color: #4474FF;
}

.c-3-3-4 {
    position: relative;
    top: 0;
    left: 40px;
    width: 68px;
    height: 68px;
    border-radius: 68px;
    display: block;
}

.c-3-3-4 img {
    margin-top: 3px;
    margin-left: 3px;
}

.c-3-3-2 {
    width: 200px;
    position: relative;
    left: 100px;
    top: -48px;
    font-size: 22px;
}

.top3 {
    margin-top: 40px;
}

.display {
    display: none !important;
}


/******************************* 专注平台搭建 ******************************/
.bogo_yiduiyi_2 {
    width: 100%;
}

.pdtb60 {
    padding: 60px 0px;
}

.bogo_yiduiyi_center_2 {
    width: 1200px;
    margin: 20px auto 0;
    color: #666;
    line-height: 30px;
    font-size: 16px;
    text-align: center;
}
.bogo_yiduiyi_1000 {
    width: 1200px;
    margin: 30px auto 0;
}
.bogo_yiduiyi_img {
    margin-top: 30px;
    text-align: center;
}
.bogo_yiduiyi_live_dj {
    height: 500px;
    margin-top: 25px;
    float: left;
    width: 45%;
    margin: 0 auto;

    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -o-transform: rotate(-15deg);
    transform: rotate(-15deg);
    margin-left: -75px;
    -webkit-animation: ImgBounce2 2s ease-in-out infinite alternate;
    -moz-animation: ImgBounce2 2s ease-in-out infinite alternate;
    -o-animation: ImgBounce2 2s ease-in-out infinite alternate;
    animation: ImgBounce2 2s ease-in-out infinite alternate;
}
.bogo_yiduiyi_live_dj img {
    width: 100%;
}
.bogo_yiduiyi_live_left {
    float: left;
    width: 50%;
    margin-left: 5%;
}
.bogo_yiduiyi_live_left li {
    margin-top: 25px;
    width: 100%;
    height: 80px;
    background: #fff;
}
.bogo_yiduiyi_live_li {
    float: left;
    width: 80px;
    height: 80px;
}
.bogo_yiduiyi_live_li img {
    width: 100%;
}
.bogo_yiduiyi_live_li_center {
    float: left;
    height: 80px;
    width: calc(100% - 80px);
    text-align: left;
    padding-left: 20px;
}
.bogo_yiduiyi_live_li_title {
    color: #04aefb;
    height: 30px;
    font-size: 20px;
}
.bogo_yiduiyi_live_li_name {
    font-size: 14px;
    line-height: 1.8;
}
.clear {
    clear: both;
}







/*------------------------------常见问题------------------------------*/
.characteristic {
    padding: 20px 0 20px
}


/*----------常见问题列表----------*/
.characteristic-list {
    display: flex;
    width: 1200px;
    margin: 32px auto 0;
    flex-wrap: wrap;
    flex-flow: row wrap;
}

/*常见问题列表的儿子*/
.characteristic-list-child {
    display: flex;
    width: 33.3333333333%;
    padding: 0 16px;
    margin-bottom: 32px;
}

.characteristic-list-child>img {
    width: 48px;
    height: 48px;
    margin-right: 20px;
}

.characteristic-list-child>div {
    flex: 1
}

.characteristic-list-child>div h3 {
    margin-bottom: 8px;
    line-height: 28px;
    font-size: 18px;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.characteristic-list-child>div p {
    line-height: 22px;
    font-size: 14px;
    color: #495770;
}

.characteristic-list-child>div p a {
    color: #0056b3;
    cursor: pointer;
}

.characteristic-list-child>div p a:after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 10px;
    margin-left: 6px;
    background-image: url('https://cdn.huamux.com/pcimgs/index/industrycases-sprite.svg');
    background-position: 96.34146341463415% 65.75342465753424%;
    background-size: 2833.333333333333% auto;
    vertical-align: 0;
    overflow: hidden;
    transition: -webkit-transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
}

.characteristic-list-child>div p a:hover:after {
    transform: translate(3px)
}




/*------------------------------案例列表开始------------------------------*/
.caselist{
    display: flex;
    width: 1200px;
    margin: 0 auto 28px;
    flex-wrap: wrap;
}


/*----------案例列表的儿子----------*/
.caselist-child{
    position: relative;
    width: 372px;
    height: 372px;
    border: 1px solid #dddddd;
    margin: 28px 14px 0;
    font-family: PingFangSC-Medium, PingFang SC;
    border-radius: 10px;
    cursor: pointer;
    outline: none;
    transition: .1s;
    overflow: hidden;
}
.caselist-child:hover{
    border-color: #0065de;
    box-shadow: 0 0 3px #0065de;
}

/*儿子的图片区域*/
.caselist-child-imgdiv{
    position: relative;
    width: 100%;
    height: 181px;
    margin: 0 auto 48px auto;
    background-position: center;
    background-size: cover;
}
.caselist-child-imgdiv p{
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    margin: auto;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    color: #ffffff;
    background-color: rgba(0,0,0,.5);
}
.caselist-child-logo{
    position: absolute;
    z-index: 1;
    top: 130px;
    left: 22px;
    width: 80px;
    height: 80px;
    background-position: center;
    background-size: cover;
    box-shadow: 0 1px 7px 0 rgba(0,0,0,.1);
    border-radius: 50%;
}
.caselist-child>h2{
    width: 100%;
    padding: 0 36px;
    margin: auto;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}
.caselist-child>p{
    width: 100%;
    padding: 0 36px;
    margin: 12px auto;
    line-height: 24px;
    font-size: 14px;
    font-weight: normal;
    color: #555555;
}

/*儿子的列表*/
.caselist-child-list{
    width: 100%;
    margin: auto;
    display: flex;
    padding: 0 36px;
    flex-flow: row wrap;
}
.caselist-child-list li{
    min-width: 33.3333%;
    height: 26px;
    line-height: 26px;
    font-size: 14px;
    color: #555555;
}
.caselist-child-list li:before{
    display: inline-block;
    content: "";
    width: 10px;
    height: 10px;
    margin-right: 6px;
    background-color: #f6ad1e;
}
.caselist-child>button{
    display: flex;
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    width: 125px;
    height: 38px;
    border: solid 1px #cccccc;
    margin: auto;
    background-color: transparent;
    align-items: center;
    justify-content: center;
}
.caselist-child:hover>button{
    color: #fff;
    border-color: #0065de;
    background-color: #0065de
}

/*儿子的隐藏区域*/
.caselist-child-hidediv{
    display: none;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    border-radius: 10px;
    background-color: rgba(0,0,0,.5);
}
.caselist-child-hidediv>div{
    position: absolute;
    top: 72px;
    right: 0;left: 0;
    width: 264px;
    height: 312px;
    margin: auto;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,.5);
    border-radius: 10px;
}
.caselist-child-hidediv>div:after{
    content: "";
    position: absolute;
    right: 0;
    bottom: -16px;
    left: 0;
    width: 32px;
    height: 32px;
    margin: auto;
    background-color: #ffffff;
    border-radius: 0 0 5px 0;
    box-shadow: 5px 5px 5px rgba(0,0,0,.2);
    transform: rotate(45deg);
}
.caselist-child-hidediv>div p{
    width: 100%;
    height: 48px;
    margin: auto;
    text-align: center;
    line-height: 48px;
    font-size: 16px;
    color: #555555;
}
.caselist-child-hidediv>div img{
    position: relative;
    z-index: 1;
    width: 246px;
    height: 246px;
    margin: auto;
}
.no-data{
    display: none;
    padding: 60px 0;
    text-align: center;
}
