/***********通用基本类1************/
/*格式化样式*/
* {
    box-sizing: border-box
}

html, body {
    width: 100%;
    height: 100%;
    position: relative;
}

html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, button, fieldset, input, textarea, p, blockquote, table, th, td {
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.cursor {
    cursor: pointer;
}

header, footer, section, article, aside, nav, address, figure, figcaption, menu, details {
    display: block;
}

fieldset, img {
    border: 0;
    display: block;
}

address, caption, cite, code, dfn, em, strong, th, var {
    font-style: normal;
    font-weight: normal
}

ol, ul {
    list-style: none
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal
}

a {
    text-decoration: none
}

/*------------ position ------------*/
.pr {
    position: relative
}

.pa {
    position: absolute
}

.pf {
    position: fixed
}

/*--------- 宽高 ---------*/
.w {
    width: 100%
}

.h {
    height: 100%
}

/*------------ float ------------*/
.fl {
    float: left;
}

.fr {
    float: right;
}

.clear::after {
    content: "";
    display: table;
    clear: both;
}

/*------------ clear-float ---------*/
.clear::after {
    content: "";
    display: table;
    clear: both;
    visibility: hidden;
}

.hide {
    display: none;
}

.opacity1 {
    opacity: 0;
}

.block {
    display: block;
}

.item-animation {
    animation: ani-fadein 1s linear;
}

@keyframes ani-fadein {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

body {
    background: #fff;
    color: #000;
    margin: 0;
    padding: 0;
    font-family: Regular;
    font-size: 100% !important;
    overflow-x: hidden;
}

/*滚动条样式*/
body::-webkit-scrollbar { /*滚动条整体样式*/
    width: 4px; /*高宽分别对应横竖滚动条的尺寸*/
    height: 4px;
}

body::-webkit-scrollbar-thumb { /*滚动条里面小方块*/
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.2);
}

body::-webkit-scrollbar-track { /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: rgba(0, 0, 0, 0.1);
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    width: 0.5rem !important;
    height: 1rem !important;
    background-image: url("../images/softIndex/Prev.png");
    background-size: 0.4rem auto !important;
    left: 0 !important;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    width: 0.5rem !important;
    height: 1rem !important;
    background-image: url("../images/softIndex/Next.png");
    background-size: 0.4rem auto !important;
    right: 0 !important;
}

.swiper-pagination-bullet {
    width: 0.49rem !important;
    height: 2px;
    border-radius: 0 !important;

}

.swiper-pagination-bullet-active {
    background: #fff !important;
}

.swiper-pagination-bullet {
    background: #999999;
}

/* --------------------------------------------------------------*/
html, body {
    position: relative;
    height: 100%;
}

body {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
}

.swiper-container {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

/*-- 头部导航 --*/
.nav {
    top: 0;
    left: 0;
    height: 1.23rem;
    z-index: 999;
    padding: 0 1.9rem;
    position: absolute;
}

.nav .logo {
    /*width: 26%;*/
    /*height: 100%;*/
    width: 154px;
    height: 100px;
    background: url("../../images/logo_white.png") no-repeat center;
    background-size: 100% auto;
}

.nav .logo > .logoLink {
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
}

.nav .menu {
    width: 50%;
    height: 100%;
    position: relative;
}

.menuBtn {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: url("../images/softIndex/menu.png") center no-repeat;
    background-size: 100% auto;
    width: 0.3rem;
    height: 0.3rem;

}

.menuList {
    width: 100%;
    height: 100%;
    top: 0;
    right: -130%;
    position: relative;
    cursor: pointer;
}

.menuList .ListItem {
    width: 20%;
    line-height: 1.2rem;
    font-size: 0.18rem;
    color: rgba(224, 224, 224, 1);
    text-align: center;
    animation: all 0.5 linear;
}

.menuList .ListItem.Active {
    border-bottom: 0.02rem solid rgba(232, 32, 117, 1);
    color: rgba(250, 0, 107, 1);
}

.nav.addBg {
    background: url("../images/softIndex/menuBg.png") no-repeat center;
    background-size: 100% 100%;
}

.menuList > .closeBtn {
    top: 50%;
    right: -8%;
    width: 0.23rem;
    height: 0.23rem;
    transform: translateY(-50%);
    background: url("../images/softIndex/colsebtn.png") no-repeat center;
    background-size: 0.23rem auto;

}

/*-- 头部  --*/
.header {
    opacity: 1;
    height: 9.8rem;
}

.header .swiper-container-horizontal > .swiper-pagination {
    bottom: 5%;
}

.header .swiper-pagination-bullet {
    height: 0.04rem;
    position: relative;
}

.header .swiper-pagination-bullet:after {
    content: '';
    display: block;
    position: absolute;
    top: -200%;
    left: 0;
    width: 100%;
    height: 0.2rem;
    border: 1px dashed rgba(255, 255, 255, 0);
}

.H_container {
    width: 100%;
    height: 100%;
    background: url("../images/softIndex/banner1Bg.png") no-repeat center;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    overflow: hidden;
}

.textLeftBox {
    left: 1.93rem;
    top: 3.29rem;
    z-index: 1;
}

.textLeftBox > h1 {
    /*width: 8rem;*/
    height: 0.8rem;
    font-size: 0.8rem;
    font-weight: bolder;
    color: rgba(232, 32, 117, 1);
    line-height: 0.8rem;
    position: relative;
    margin-bottom: 0.4rem;
}

.textLeftBox > h1:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: -0.66rem;
    width: 1.2rem;
    height: 0.04rem;
    background: #E82075;
}

.textLeftBox > h2 {
    width: 3.74rem;
    height: 0.4rem;
    font-size: 0.4rem;
    color: rgba(255, 255, 255, 1);
    line-height: 0.4rem;
    margin-bottom: 0.48rem;
}

.textLeftBox > p {
    width: 5.91rem;
    height: 0.26rem;
    font-size: 0.26rem;
    color: rgba(255, 255, 255, 1);
    line-height: 0.26rem;
    margin-bottom: 0.77rem;
}

.textLeftBox > .bannerMore > a {
    display: block;
    color: #fff;
    width: 2.21rem;
    height: 0.57rem;
    line-height: 0.57rem;
    padding-left: 0.56rem;
    text-align: left;
    background: url("../images/softIndex/bannerMore.png") no-repeat center;
    background-size: 2.21rem auto;
}

.ImgRightBox {
    display: none;
    width: 11.1rem;
    height: 8.32rem;
    right: 0;
    top: 1.29rem;
    transform: translate3d(0px, 0px, 0px);
    transform-style: preserve-3d;
    /*z-index: 10;*/
}

.ImgRightBox > img {
    width: 100%;
}

.banner0-1 {
    width: 9rem;
    height: 8.62rem;
    top: 2rem;
    right: -0.49rem;
    z-index: -1;
}

.banner1-1 {
    width: 0.88rem;
    height: 0.89rem;
    top: 3.5rem;
    right: 0.7rem;
    opacity: 0;
    animation: banner1-1 1s linear forwards 1s;
    transform: translate3d(0px, 0px, 0px);
    transform-style: preserve-3d;
}

@keyframes banner1-1 {
    from {
        top: 3.5rem;
        right: 0.7rem;
        opacity: 0;
    }
    to {
        top: 2.5rem;
        right: 1.7rem;
        opacity: 1;
    }
}

.banner1-2 {
    width: 2.15rem;
    height: 1.98rem;
    top: 4.5rem;
    right: -0.4rem;
    opacity: 0;
    animation: banner1-2 1s linear forwards 1s;
    transform: translate3d(0px, 0px, 0px);
    transform-style: preserve-3d;
}

@keyframes banner1-2 {
    from {
        top: 4.5rem;
        right: -0.4rem;
        opacity: 0;
    }
    to {
        top: 2.5rem;
        right: 1.6rem;
        opacity: 1;
    }
}

.banner1-3 {
    width: 3.99rem;
    height: 2.82rem;
    opacity: 0;
    top: 2.3rem;
    right: 1.2rem;
    animation: banner1-3 1s linear forwards 1s;
    transform: translate3d(0px, 0px, 0px);
    transform-style: preserve-3d;
}

@keyframes banner1-3 {
    from {
        top: 4.3rem;
        right: -0.8rem;
        opacity: 0;
    }
    to {
        top: 2.3rem;
        right: 1.2rem;
        opacity: 1;
    }
}

.banner1-4 {
    width: 4.76rem;
    height: 4.28rem;
    top: 3.4rem;
    right: 1.2rem;
    opacity: 0;
    animation: banner1-4 1s linear forwards 1s;
    transform: translate3d(0px, 0px, 0px);
    transform-style: preserve-3d;
}

@keyframes banner1-4 {
    from {
        top: 3.4rem;
        right: 1.2rem;
        opacity: 0;
    }
    to {
        top: 1.4rem;
        right: 3.2rem;
        opacity: 1;
    }
}

.banner1-5 {
    width: 2.71rem;
    height: 2.44rem;
    top: 5.8rem;
    right: 1.8rem;
    opacity: 0;
    animation: banner1-5 1s linear forwards 1s;
    transform: translate3d(0px, 0px, 0px);
    transform-style: preserve-3d;
}

@keyframes banner1-5 {
    from {
        top: 5.8rem;
        right: 1.8rem;
        opacity: 0;
    }
    to {
        top: 3.8rem;
        right: 3.8rem;
        opacity: 1;
    }
}

.banner1-6 {
    width: 4.71rem;
    height: 4.35rem;
    top: 5.6rem;
    right: 1.5rem;
    opacity: 0;
    animation: banner1-6 1s linear forwards 1s;
    transform: translate3d(0px, 0px, 0px);
    transform-style: preserve-3d;
}

@keyframes banner1-6 {
    from {
        top: 5.6rem;
        right: 1.5rem;
        opacity: 0;
    }
    to {
        top: 3.6rem;
        right: 3.5rem;
        opacity: 1;
    }
}

/*.banner1-7{*/
/*width: 4rem;*/
/*height:3.65rem;*/
/*top: 5rem;*/
/*right: 3.8rem;*/
/*opacity: 1;*/
/*animation: banner1-7 1s linear forwards 1s;*/
/*transform: translate3d(0px, 0px, 0px);*/
/*transform-style: preserve-3d;*/
/*}*/
@keyframes banner1-7 {
    from {
        top: 7rem;
        right: 1.8rem;
        opacity: 0;
    }
    to {
        top: 5rem;
        right: 3.8rem;
        opacity: 1;
    }
}

.banner1-8 {
    width: 3.04rem;
    height: 2.82rem;
    top: 5.1rem;
    right: 3rem;
    opacity: 0;
    animation: banner1-8 1s linear forwards 1s;
    transform: translate3d(0px, 0px, 0px);
    transform-style: preserve-3d;
}

@keyframes banner1-8 {
    from {
        top: 7.1rem;
        right: 1rem;
        opacity: 0;
    }
    to {
        top: 5.1rem;
        right: 3rem;
        opacity: 1;
    }
}

.banner1-9 {
    width: 2.24rem;
    height: 2.06rem;
    top: 7.05rem;
    right: 0.15rem;
    opacity: 0;
    animation: banner1-9 1s linear forwards 1s;
    transform: translate3d(0px, 0px, 0px);
    transform-style: preserve-3d;
}

@keyframes banner1-9 {
    from {
        top: 7.05rem;
        right: 0.15rem;
        opacity: 0;
    }
    to {
        top: 5.05rem;
        right: 2.15rem;
        opacity: 1;
    }
}

.banner2-1 {
    width: 3.7rem;
    height: 3.38rem;
    top: 7rem;
    right: 2.08rem;
    opacity: 0;
    animation: banner2-1 1s linear forwards 1s;
    transform: translate3d(0px, 0px, 0px);
    transform-style: preserve-3d;
}

@keyframes banner2-1 {
    from {
        top: 7rem;
        right: 2.08rem;
        opacity: 0;
    }
    to {
        top: 5rem;
        right: 4.08rem;
        opacity: 1;
    }
}

.banner2-2 {
    width: 1.53rem;
    height: 1.4rem;
    top: 8.8rem;
    right: 3.1rem;
    opacity: 0;
    animation: banner2-2 1s linear forwards 1s;
    transform: translate3d(0px, 0px, 0px);
    transform-style: preserve-3d;
}

@keyframes banner2-2 {
    from {
        top: 8.8rem;
        right: 3.1rem;
        opacity: 0;
    }
    to {
        top: 6.8rem;
        right: 5.1rem;
        opacity: 1;
    }
}

.banner2-3 {
    width: 2.17rem;
    height: 1.96rem;
    top: 8.75rem;
    right: 4.3rem;
    opacity: 0;
    animation: banner2-3 1s linear forwards 1s;
    transform: translate3d(0px, 0px, 0px);
    transform-style: preserve-3d;
}

@keyframes banner2-3 {
    from {
        top: 8.75rem;
        right: 4.3rem;
        opacity: 0;
    }
    to {
        top: 6.75rem;
        right: 6.3rem;
        opacity: 1;
    }
}

.banner2-4 {
    width: 4.52rem;
    height: 3.72rem;
    top: 4.6rem;
    right: 5.1rem;
    opacity: 0;
    animation: banner2-4 1s linear forwards 1s;
    transform: translate3d(0px, 0px, 0px);
    transform-style: preserve-3d;
    z-index: -1;
}

@keyframes banner2-4 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.banner2-5 {
    width: 9.67rem;
    height: 7.95rem;
    top: 1.3rem;
    right: 1.4rem;
    opacity: 0;
    animation: banner2-5 1s linear forwards 1s;
    transform: translate3d(0px, 0px, 0px);
    transform-style: preserve-3d;
    z-index: -1;
}

@keyframes banner2-5 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.banner2-6 {
    width: 9.67rem;
    height: 7.95rem;
    top: 1.2rem;
    right: 1.45rem;
    opacity: 0;
    z-index: -1;
    animation: banner2-6 1s linear forwards 1s;
    transform: translate3d(0px, 0px, 0px);
    transform-style: preserve-3d;
}

@keyframes banner2-6 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.banner0-1 > img {
    width: 100%;
}

.banner1-1 > img {
    width: 100%;
}

.banner1-2 > img {
    width: 100%;
}

.banner1-3 > img {
    width: 100%;
}

.banner1-4 > img {
    width: 100%;
}

.banner1-5 > img {
    width: 100%;
}

.banner1-6 > img {
    width: 100%;
}

.banner1-7 > img {
    width: 100%;
}

.banner1-8 > img {
    width: 100%;
}

.banner1-9 > img {
    width: 100%;
}

.banner2-1 > img {
    width: 100%;
}

.banner2-2 > img {
    width: 100%;
}

.banner2-3 > img {
    width: 100%;
}

.banner2-4 > img {
    width: 100%;
}

.banner2-5 > img {
    width: 100%;
}

#banner2-6 > img {
    width: 100%;
}

/*-- banner2 --*/
.textLeftBox1 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
}

.textLeftBox1 > .logo {
    width: 3.94rem;
    height: 0.43rem;
    margin: 0 auto 0.37rem auto;
    background: url("../images/softIndex/banner2logo.png") center no-repeat;
    background-size: 100% auto;
}

.ImgRightBox1 {
    display: none;
    width: 18.16rem;
    height: 7.37rem;
    margin: 1.23rem auto 0 auto;
    transform: translate3d(0px, 0px, 0px) scale(0);
    transform-style: preserve-3d;
}

@keyframes ImgRightBox1-1 {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 1;

    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

.ImgRightBox1 > img {
    width: 100%;
}

.ImgRightBox12 {
    width: 16.52rem;
    height: 7.34rem;
    margin: 0.8rem auto 0 auto;
    transform: translate3d(0px, 0px, 0px) scale(0);
    transform-style: preserve-3d;
    animation: ImgRightBox1-1 2s linear infinite;
    opacity: 0;
}

.ImgRightBox12 > img {
    width: 100%;
}

.banner2-2-2 {
    width: 0.7rem;
    height: 0.7rem;
    top: 1.63rem;
    left: 4.52rem;
    transform: translate3d(0px, 0px, 0px);
    transform-style: preserve-3d;

}

.banner2-2-3 {
    width: 5.17rem;
    height: 1.96rem;
    top: 4.5rem;
    left: .5rem;
    transform: translate3d(0px, 0px, 0px);
    transform-style: preserve-3d;

}

.banner2-2-4 {
    width: 2.73rem;
    height: 2.08rem;
    bottom: 0.9rem;
    left: 1.2rem;
    transform: translate3d(0px, 0px, 0px);
    transform-style: preserve-3d;

}

.banner2-2-5 {
    width: 0.7rem;
    height: 0.7rem;
    top: 6.69rem;
    left: 7.35rem;
    transform: translate3d(0px, 0px, 0px);
    transform-style: preserve-3d;

}

.banner2-2-6 {
    width: 5.96rem;
    height: 2.5rem;
    top: 1.5rem;
    right: 0.5rem;
    transform: translate3d(0px, 0px, 0px);
    transform-style: preserve-3d;
}

.banner2-2-7 {
    width: 5.28rem;
    height: 2.96rem;
    top: 5.8rem;
    right: 1.5rem;
    transform: translate3d(0px, 0px, 0px);
    transform-style: preserve-3d;
}

.banner2-2-2 > img {
    width: 100%;
    height: 100%;

}

.banner2-2-3 > img {
    width: 100%;

}

.banner2-2-5 > img {
    width: 100%;

}

.banner2-2-6 > img {
    width: 100%;
}

.banner2-2-7 > img {
    width: 100%;
}

.textLeftBox1 > p {
    text-align: center;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 1);
    line-height: 0.6rem;
}

/*-- banner3 ---*/
.textLeftBox2 {
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    z-index: 99;
}

.textLeftBox2 > .logo {
    width: 3.94rem;
    height: 0.43rem;
    margin: 0 auto 0.73rem auto;
    background: url("../images/softIndex/banner2logo.png") center no-repeat;
    background-size: 100% auto;
}

.textLeftBox2 > p {
    text-align: center;
    height: 0.52rem;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 1);
    line-height: 0.52rem;
    margin-bottom: 0.51rem;
}

.textLeftBox2 > .banner3more > a {
    display: block;
    width: 2.21rem;
    height: 0.57rem;
    color: #fff;
    line-height: 0.57rem;
    padding-left: 0.56rem;
    text-align: left;
    background: url(../images/softIndex/bannerMore.png) no-repeat center;
    background-size: 2.21rem auto;
    margin: 0 auto;
}

.ImgRightBox2 {
    display: block;
    padding-top: 1.23rem;
    width: 20.95rem;
    height: 8.43rem;
}

.banner3Top {
    display: block;
    top: 0;
    left: 23.5%;
    width: 10.82rem;
    height: 6.49rem;
    transform: translate3d(0px, 0px, 0px);
    transform-style: preserve-3d;
}

.banner3Top > img {
    width: 100%;
}

.ImgRightBox2 > img {
    width: 100%;
    margin-left: 10%;
}

.ImgRightBox3 {
    display: none;
}

/*-- 行业口碑 --*/
.newAdd {
    /*padding-top: 0.9rem;*/
    background: url("../images/softIndex/newAddBg.png") no-repeat center;
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
    /*min-height: 8.17rem;*/
}

.aboutSpace {
    text-align: center;
}

.aboutSpace > h1 {
    margin: 0 auto;
    width: 4.55rem;
    background: url("../images/softIndex/aboutspace.png") no-repeat center;
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
    height: 0.88rem;
}

.aboutSpace > h2 {
    font-size: 0.42rem;
    height: 0.89rem;
    line-height: 0.89rem;
    color: #000;

}

.aboutSpace > p {
    line-height: 0.5rem;
    font-size: 0.3rem;
    color: rgba(0, 0, 0, 0.8);
}

.industry {
    padding: 0 9%;
}

.industry > .itemList {
    width: 25%;
    float: left;
    /*padding-top: 1rem;*/
}

.industry > .itemList > h1 {
    height: 1.1rem;
    margin: 0.84rem 0 0.32rem 0;
}

.industry > .itemList:nth-child(1) h1 {
    width: 1.01rem;
    background: url("../images/softIndex/10_1.png") no-repeat center;
    -webkit-background-size: 99% auto;
    background-size:99% auto;
    margin-left: 39%;
}
.industry > .itemList:nth-child(2) h1 {
    width: 1.05rem;
    background: url("../images/softIndex/80_1.png") no-repeat center;
    -webkit-background-size: 99% auto;
    background-size: 99% auto;
    margin-left: 39%;
}
.industry > .itemList:nth-child(3) h1 {
    width: 1.4rem;
    background: url("../images/softIndex/100_1.png") no-repeat center;
    -webkit-background-size: 99% auto;
    background-size: 99% auto;
    margin-left: 37%;
}
.industry > .itemList:nth-child(4) h1 {
    width: 1.44rem;
    background: url("../images/softIndex/800_1.png") no-repeat center;
    -webkit-background-size: 99% auto;
    background-size: 99% auto;
    margin-left: 34%;
}
.industry > .itemList:nth-child(5) h1 {
    width: 1.61rem;
    background: url("../images/softIndex/500_.png") no-repeat center;
    -webkit-background-size: 99% auto;
    background-size: 99% auto;
    margin-left: 27%;
}
.industry > .itemList:nth-child(6) h1 {
    width: 1.12rem;
    background: url("../images/softIndex/20_.png") no-repeat center;
    -webkit-background-size: 99% auto;
    background-size: 99% auto;
    margin-left: 35%;
}
.industry > .itemList > p {
    width: 2.2rem;
    height: 0.68rem;
    font-size: 0.3rem;
    color: #383838;
    line-height: 0.34rem;
    margin: 0 auto 0.57rem auto;
    text-align: center;
    font-weight: 600;
    position: relative;
    white-space:nowrap;
}

.industry > .itemList > p:before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0.1rem;
    transform: translateX(-50%);
    width: 0.43rem;
    height: 0.03rem;
    background: #eb1c74;
}

.industry > .itemList > p > span {
    width: 100%;
    display: block;
}

/* -- ability --*/
.ability {
    height: 12.56rem;
    background: url("../images/softIndex/abilityBg.png") center no-repeat;
    background-size: 100% 100%;
    padding-top: 1.22rem;
}

.ability > h1 {
    width: 2.53rem;
    height: 1rem;
    background: url("../images/softIndex/Ability.png") center no-repeat;
    background-size: 2.53rem auto;
    margin: 0 auto 0.28rem auto;
}

.ability > p {
    height: 0.56rem;
    font-size: 0.42rem;
    color: rgba(223, 223, 223, 1);
    line-height: 0.56rem;
    text-align: center;
    margin-bottom: 0.6rem;
}

.ability > .abilityBtnBox {
    height: 0.74rem;
    margin: 0 auto 0.8rem auto;
    overflow: hidden;
    width: 4.42rem;
}

.ability > .abilityBtnBox > .abilityBtn {
    width: 2.21rem;
    height: 0.56rem;
    font-size: 0.24rem;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    border: 1px solid #bd0557;
    cursor: pointer;
    line-height: 0.56rem;
    margin-right: -0.01rem;
}

.ability > .abilityBtnBox > .abilityBtn.Active {
    height: 0.74rem !important;
    background: url("../images/softIndex/abilityBtn.png") center no-repeat;
    background-size: 2.21rem auto;
    border: 1px solid rgba(255, 255, 255, 0);
    line-height: 0.56rem;
}

.ability .Marketing {
    padding: 0 15%;
}

.ability .Marketing:last-child {
    padding: 1.4rem 15%;
}

.ability .Marketing .MarkList {
    width: 33.33%;
    height: 3.36rem;
}

.ability .Marketing2 > .MarkList {
    width: 25% !important;
}

.ability .Marketing .MarkList > h1 {
    margin: 0 auto;
    width: 1.6rem;
    height: 1.6rem;

}

.ability .Marketing .MarkList:nth-child(1) h1 {
    background: url("../images/softIndex/merge-icon-4.png");
    background-repeat: no-repeat !important;
    background-position: 0 bottom;
    background-size: 100%;
}

.ability .Marketing .MarkList:nth-child(3) h1 {
    background: url("../images/softIndex/ability1-1.png");
    background-repeat: no-repeat !important;
    background-position: 0 bottom;
    background-size: 100%;
}

.ability .Marketing .MarkList:nth-child(2) h1 {
    background: url("../images/softIndex/ability11-2.png");
    background-repeat: no-repeat !important;
    background-position: 0 bottom;
    background-size: 100%;
}

.ability .Marketing .MarkList:nth-child(4) h1 {
    background: url("../images/softIndex/merge-icon-3.png");
    background-repeat: no-repeat !important;
    background-position: 0 bottom;
    background-size: 100%;
}

.ability .Marketing .MarkList:nth-child(5) h1 {
    background: url("../images/softIndex/merge-icon-5.png");
    background-repeat: no-repeat !important;
    background-position: 0 bottom;
    background-size: 100%;
}

.ability .Marketing .MarkList:nth-child(6) h1 {
    background: url("../images/softIndex/merge-icon-6.png");
    background-repeat: no-repeat !important;
    background-position: 0 bottom;
    background-size: 100%;
}

.ability .Marketing .MarkList h1.h1hove {
    animation: ability1 .5s steps(29) forwards;
}

.ability .Marketing .MarkList h1.h1Leave {
    animation: ability2 .5s steps(29) forwards;
}

@keyframes ability1 {
    0% {
        background-position: 0 bottom;
    }
    100% {
        background-position: 0 top;
    }
}

@keyframes ability2 {
    0% {
        background-position: 0 top;
    }
    100% {
        background-position: 0 bottom;
    }
}

.ability .Marketing:last-child .MarkList:nth-child(1) h1 {
    background: url("../images/softIndex/merge-icon-7.png");
    background-repeat: no-repeat;
    background-position: 0 bottom;
    background-size: 100%;
}

.ability .Marketing:last-child .MarkList:nth-child(2) h1 {
    background: url("../images/softIndex/merge-icon-8.png");
    background-repeat: no-repeat !important;
    background-position: 0 bottom;
    background-size: 100%;
}

.ability .Marketing:last-child .MarkList:nth-child(3) h1 {
    background: url("../images/softIndex/merge-icon-9.png");
    background-repeat: no-repeat !important;
    background-position: 0 bottom;
    background-size: 100%;
}

.ability .Marketing:last-child .MarkList:nth-child(4) h1 {
    background: url("../images/softIndex/merge-icon-10.png");
    background-repeat: no-repeat !important;
    background-position: 0 bottom;
    background-size: 100%;
}

.ability .Marketing .MarkList > h2 {
    width: 100%;
    /*height: 0.2rem;*/
    font-size: 0.2rem;
    color: rgba(255, 255, 255, 1);
    line-height: 0.28rem;
    margin-bottom: 0.21rem;
    text-align: center;
}

.ability .Marketing .MarkList > p {
    width: 100%;
    height: 0.52rem;
    font-size: 0.16rem;
    color: rgba(172, 172, 172, 1);
    line-height: 0.26rem;
    text-align: center;
}

/*-- case --*/
.case {
    padding-top: 1rem;
    background: #fff;
}

.caseLastBottom {
    margin-bottom: 1.4rem;
}

.case > h1 {
    margin: 0 auto 0.3rem auto;
    position: relative;
}
#case1>h1{
    width: 3.48rem;
    height: 0.74rem;
    background: url("../images/softIndex/Digital Marketing.png") center no-repeat;
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
}
#case2>h1{
    width: 8.04rem;
    height: 0.75rem;
    background: url("../images/softIndex/Technology Research.png") center no-repeat;
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
}
.case > h1:before {
    content: '';
    display: block;
    width: 0.38rem;
    height: 2px;
    background: rgba(232, 32, 117, 1);
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);

}

.case > h2 {
    text-align: center;
    /*height: 0.42rem;*/
    font-size: 0.42rem;
    color: rgba(68, 68, 68, 1);
    line-height: 0.55rem;
    margin-bottom: 0.77rem;
}

.case > .caseBox {
    padding: 0 1.5%;
}

.case > .caseBox .caseList {
    height: 3.8rem;
    width: 32.65%;
    position: relative;
}

.case > .caseBox .caseList:nth-child(3n-1) {
    margin: 0 1%;
}

.case > .caseBox .caseList:nth-child(1), .caseList:nth-child(2), .caseList:nth-child(3) {
    margin-bottom: 1%;
}

.case > .caseBox .caseList > img {
    width: 100%;
}

.case > .caseBox .caseList > a {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(235, 41, 115, .7);
    padding-top: 1.36rem;
    opacity: 0;
    transition: all 0.3s linear;
    cursor: Default;:;
}

.case > .caseBox .caseList > a:hover {
    opacity: 1;
}

.case > .caseBox .caseList > a > h1 {
    text-align: center;
    height: 0.34rem;
    font-size: 0.32rem;
    color: rgba(255, 255, 255, 1);
    line-height: 0.34rem;
    position: relative;
    margin-bottom: 0.47rem;
}

.case > .caseBox .caseList > a > h1:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -89%;
    left: 50%;
    transform: translateX(-50%);
    width: 0.42rem;
    height: 2px;
    background: #fff;
    margin: 0 auto;
}

.case > .caseBox .caseList > a > p {
    text-align: center;
    height: 0.42rem;
    font-size: 0.18rem;
    color: rgba(255, 255, 255, 1);
    line-height: 0.42rem;
}

/*-- cooperative --*/
.cooperative {
    height: 9.14rem;
    background: url("../images/softIndex/cooperativeBg.png") center no-repeat;
    background-size: 100% auto;
    padding-top: 0.9rem;
}

.cooperative h1 {
    width: 8.34rem;
    height: 0.6rem;
    margin: 0 auto 0.72rem auto;
    background: url("../images/softIndex/cooperative.png") no-repeat center;
    background-size: 100% auto;
    position: relative;
}

.cooperative h1:before {
    content: '';
    display: block;
    position: absolute;
    bottom: -60%;
    left: 50%;
    transform: translateX(-50%);
    width: 0.42rem;
    height: 2px;
    background: rgba(235, 41, 115, 1);
    margin: 0 auto;
}

.cooperative > p {
    text-align: center;
    height: 0.42rem;
    font-size: 0.36rem;
    color: rgba(68, 68, 68, 1);
    line-height: 0.42rem;
    margin-bottom: 0.54rem;
}

.cooperative > .cooperativeBox {
    padding: 0 15%
}

.cooperative .cooperativeList {
    width: 16.6%;
    height: 1.2rem;
    transition: all .5s linear;
    position: relative;
}

.cooperative .cooperativeList:nth-child(1) {
    background: url("../images/UCD/1.png") center no-repeat !important;
    background-size: 100% auto !important;

}

.cooperative .cooperativeList:nth-child(1):after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../images/UCD/1-1.png") no-repeat center;
    opacity: 0;
    background-size: 100% 100%;
}

.cooperative .cooperativeList:nth-child(1):hover {
    background: url("../images/UCD/1-1.png") center no-repeat !important;
    background-size: 100% auto !important;
    opacity: 1;
}

.cooperative .cooperativeList:nth-child(2) {
    background: url("../images/UCD/2.png") center no-repeat !important;
    background-size: 100% auto !important;
}

.cooperative .cooperativeList:nth-child(2):after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../images/UCD/1-2.png") no-repeat center;
    opacity: 0;
    background-size: 100% 100%;
}

.cooperative .cooperativeList:nth-child(2):hover {
    background: url("../images/UCD/1-2.png") center no-repeat !important;
    background-size: 100% auto !important;
    opacity: 1;
}

.cooperative .cooperativeList:nth-child(3) {
    background: url("../images/UCD/3.png") center no-repeat !important;
    background-size: 100% auto !important;
}

.cooperative .cooperativeList:nth-child(3):after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../images/UCD/1-3.png") no-repeat center;
    opacity: 0;
    background-size: 100% 100%;
}

.cooperative .cooperativeList:nth-child(3):hover {
    background: url("../images/UCD/1-3.png") center no-repeat !important;
    background-size: 100% auto !important;
    opacity: 1;
}

.cooperative .cooperativeList:nth-child(4) {
    background: url("../images/UCD/4.png") center no-repeat !important;
    background-size: 100% auto !important;
}

.cooperative .cooperativeList:nth-child(4):after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../images/UCD/1-4.png") no-repeat center;
    opacity: 0;
    background-size: 100% 100%;
}

.cooperative .cooperativeList:nth-child(4):hover {
    background: url("../images/UCD/1-4.png") center no-repeat !important;
    background-size: 100% auto !important;
    opacity: 1;
}

.cooperative .cooperativeList:nth-child(5) {
    background: url("../images/UCD/5.png") center no-repeat !important;
    background-size: 100% auto !important;
}

.cooperative .cooperativeList:nth-child(5):after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../images/UCD/1-5.png") no-repeat center;
    opacity: 0;
    background-size: 100% 100%;
}

.cooperative .cooperativeList:nth-child(5):hover {
    background: url("../images/UCD/1-5.png") center no-repeat !important;
    background-size: 100% auto !important;
    opacity: 1;
}

.cooperative .cooperativeList:nth-child(6) {
    background: url("../images/UCD/6.png") center no-repeat !important;
    background-size: 100% auto !important;
}

.cooperative .cooperativeList:nth-child(6):after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../images/UCD/1-6.png") no-repeat center;
    opacity: 0;
    background-size: 100% 100%;
}

.cooperative .cooperativeList:nth-child(6):hover {
    background: url("../images/UCD/1-6.png") center no-repeat !important;
    background-size: 100% auto !important;
    opacity: 1;
}

.cooperative .cooperativeList:nth-child(7) {
    background: url("../images/UCD/7.png") center no-repeat !important;
    background-size: 100% auto !important;
}

.cooperative .cooperativeList:nth-child(7):after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../images/UCD/1-7.png") no-repeat center;
    opacity: 0;
    background-size: 100% 100%;
}

.cooperative .cooperativeList:nth-child(7):hover {
    background: url("../images/UCD/1-7.png") center no-repeat !important;
    background-size: 100% auto !important;
    opacity: 1;
}

.cooperative .cooperativeList:nth-child(8) {
    background: url("../images/UCD/8.png") center no-repeat !important;
    background-size: 100% auto !important;
}

.cooperative .cooperativeList:nth-child(8):after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../images/UCD/1-8.png") no-repeat center;
    opacity: 0;
    background-size: 100% 100%;
}

.cooperative .cooperativeList:nth-child(8):hover {
    background: url("../images/UCD/1-8.png") center no-repeat !important;
    background-size: 100% auto !important;
    opacity: 1;
}

.cooperative .cooperativeList:nth-child(9) {
    background: url("../images/UCD/9.png") center no-repeat !important;
    background-size: 100% auto !important;
}

.cooperative .cooperativeList:nth-child(9):hover {
    background: url("../images/UCD/1-9.png") center no-repeat !important;
    background-size: 100% auto !important;
}

.cooperative .cooperativeList:nth-child(10) {
    background: url("../images/UCD/10.png") center no-repeat !important;
    background-size: 100% auto !important;
}

.cooperative .cooperativeList:nth-child(10):after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../images/UCD/1-10.png") no-repeat center;
    opacity: 0;
    background-size: 100% 100%;
}

.cooperative .cooperativeList:nth-child(10):hover {
    background: url("../images/UCD/1-10.png") center no-repeat !important;
    background-size: 100% auto !important;
    opacity: 1;
}

.cooperative .cooperativeList:nth-child(11) {
    background: url("../images/UCD/11.png") center no-repeat !important;
    background-size: 100% auto !important;
}

.cooperative .cooperativeList:nth-child(11):hover {
    background: url("../images/UCD/1-11.png") center no-repeat !important;
    background-size: 100% auto !important;
}

.cooperative .cooperativeList:nth-child(12) {
    background: url("../images/UCD/12.png") center no-repeat !important;
    background-size: 100% auto !important;
}

.cooperative .cooperativeList:nth-child(12):after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../images/UCD/1-12.png") no-repeat center;
    opacity: 0;
    background-size: 100% 100%;
}

.cooperative .cooperativeList:nth-child(12):hover {
    background: url("../images/UCD/1-12.png") center no-repeat !important;
    background-size: 100% auto !important;
    opacity: 1;
}

.cooperative .cooperativeList:nth-child(13) {
    background: url("../images/UCD/13.png") center no-repeat !important;
    background-size: 100% auto !important;
}

.cooperative .cooperativeList:nth-child(13):after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../images/UCD/1-13.png") no-repeat center;
    opacity: 0;
    background-size: 100% 100%;
}

.cooperative .cooperativeList:nth-child(13):hover {
    background: url("../images/UCD/1-13.png") center no-repeat !important;
    background-size: 100% auto !important;
    opacity: 1;
}

.cooperative .cooperativeList:nth-child(14) {
    background: url("../images/UCD/14.png") center no-repeat !important;
    background-size: 100% auto !important;
}

.cooperative .cooperativeList:nth-child(14):after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../images/UCD/1-14.png") no-repeat center;
    opacity: 0;
    background-size: 100% 100%;
}

.cooperative .cooperativeList:nth-child(14):hover {
    background: url("../images/UCD/1-14.png") center no-repeat !important;
    background-size: 100% auto !important;
    opcaity: 1;
}

.cooperative .cooperativeList:nth-child(15) {
    background: url("../images/UCD/15.png") center no-repeat !important;
    background-size: 100% auto !important;
}

.cooperative .cooperativeList:nth-child(15):after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../images/UCD/1-15.png") no-repeat center;
    opacity: 0;
    background-size: 100% 100%;
}

.cooperative .cooperativeList:nth-child(15):hover {
    background: url("../images/UCD/1-15.png") center no-repeat !important;
    background-size: 100% auto !important;
    opacity: 1;
}

.cooperative .cooperativeList:nth-child(16) {
    background: url("../images/UCD/16.png") center no-repeat !important;
    background-size: 100% auto !important;
}

.cooperative .cooperativeList:nth-child(16):after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../images/UCD/1-16.png") no-repeat center;
    opacity: 0;
    background-size: 100% 100%;
}

.cooperative .cooperativeList:nth-child(16):hover {
    background: url("../images/UCD/1-16.png") center no-repeat !important;
    background-size: 100% auto !important;
    opacity: 1;
}

.cooperative .cooperativeList:nth-child(17) {
    background: url("../images/UCD/17.png") center no-repeat !important;
    background-size: 100% auto !important;
}

.cooperative .cooperativeList:nth-child(17):after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../images/UCD/1-17.png") no-repeat center;
    opacity: 0;
    background-size: 100% 100%;
}

.cooperative .cooperativeList:nth-child(17):hover {
    background: url("../images/UCD/1-17.png") center no-repeat !important;
    background-size: 100% auto !important;
    opacity: 1;
}

.cooperative .cooperativeList:nth-child(18) {
    background: url("../images/UCD/18.png") center no-repeat !important;
    background-size: 100% auto !important;
}

.cooperative .cooperativeList:nth-child(18):after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../images/UCD/1-18.png") no-repeat center;
    opacity: 0;
    background-size: 100% 100%;
}

.cooperative .cooperativeList:nth-child(18):hover {
    background: url("../images/UCD/1-18.png") center no-repeat !important;
    background-size: 100% auto !important;
    opacity: 1;
}

.cooperative .cooperativeList:nth-child(19) {
    background: url("../images/UCD/19.png") center no-repeat !important;
    background-size: 100% auto !important;
}

.cooperative .cooperativeList:nth-child(19):after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../images/UCD/1-19.png") no-repeat center;
    opacity: 0;
    background-size: 100% 100%;
}

.cooperative .cooperativeList:nth-child(19):hover {
    background: url("../images/UCD/1-19.png") center no-repeat !important;
    background-size: 100% auto !important;
    opacity: 1;
}

.cooperative .cooperativeList:nth-child(20) {
    background: url("../images/UCD/20.png") center no-repeat !important;
    background-size: 100% auto !important;
}

.cooperative .cooperativeList:nth-child(20):after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../images/UCD/1-20.png") no-repeat center;
    opacity: 0;
    background-size: 100% 100%;
}

.cooperative .cooperativeList:nth-child(20):hover {
    background: url("../images/UCD/1-20.png") center no-repeat !important;
    background-size: 100% auto !important;
    opacity: 1;
}

.cooperative .cooperativeList:nth-child(21) {
    background: url("../images/UCD/21.png") center no-repeat !important;
    background-size: 100% auto !important;
}

.cooperative .cooperativeList:nth-child(21):after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../images/UCD/1-21.png") no-repeat center;
    opacity: 0;
    background-size: 100% 100%;
}

.cooperative .cooperativeList:nth-child(21):hover {
    background: url("../images/UCD/1-21.png") center no-repeat !important;
    background-size: 100% auto !important;
    opacity: 1;
}

.cooperative .cooperativeList:nth-child(22) {
    background: url("../images/UCD/22.png") center no-repeat !important;
    background-size: 100% auto !important;
}

.cooperative .cooperativeList:nth-child(22):after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../images/UCD/1-22.png") no-repeat center;
    opacity: 0;
    background-size: 100% 100%;
}

.cooperative .cooperativeList:nth-child(22):hover {
    background: url("../images/UCD/1-22.png") center no-repeat !important;
    background-size: 100% auto !important;
    opacity: 1;
}

.cooperative .cooperativeList:nth-child(23) {
    background: url("../images/UCD/23.png") center no-repeat !important;
    background-size: 100% auto !important;
}

.cooperative .cooperativeList:nth-child(23):after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../images/UCD/1-23.png") no-repeat center;
    opacity: 0;
    background-size: 100% 100%;
}

.cooperative .cooperativeList:nth-child(23):hover {
    background: url("../images/UCD/1-23.png") center no-repeat !important;
    background-size: 100% auto !important;
    opacity: 1;
}

.cooperative .cooperativeList:nth-child(24) {
    background: url("../images/UCD/24.png") center no-repeat !important;
    background-size: 100% auto !important;
}

.cooperative .cooperativeList:nth-child(24):after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../images/UCD/1-24.png") no-repeat center;
    opacity: 0;
    background-size: 100% 100%;
}

.cooperative .cooperativeList:nth-child(24):hover {
    background: url("../images/UCD/1-24.png") center no-repeat !important;
    background-size: 100% auto !important;
    opacity: 1;
}

/*-- footer --*/
.footer {
    height: 4.23rem;
    background: rgba(55, 61, 66, 1);
    padding-left: 2.15rem;
}

.erweima {
    width: 60%;
    margin-top: 0.85rem;

}

.erweimaBox {
    width: 2rem;
    height: 2rem;
    margin-right: 0.24rem;
}

.erweimaBox > img {
    width: 100%;
}

.erweima .erweimaBox > p {
    margin-top: 0.15rem;
    width: 1.25rem;
    height: 0.26rem;
    font-size: 0.18rem;
    color: rgba(215, 216, 217, 1);
    line-height: 0.26rem;
    letter-spacing: 0.02rem;
    white-space: nowrap;
}

.footerApp {
    display: none;
}

.poInfo > h1 {
    /*width: 2.77rem;*/
    height: 0.26rem;
    font-size: 0.2rem;
    color: rgba(215, 216, 217, 1);
    line-height: 0.26rem;
    margin-bottom: 0.07rem;
}

.poInfo > .InfoList {
    width: 4rem;
    margin-top: 0.14rem;
    height: 0.26rem;
    font-size: 0.18rem;
    color: rgba(215, 216, 217, 1);
    line-height: 0.26rem;
}

.poInfo > .InfoList:nth-of-type(1) {
    padding-left: 0.3rem;
    background: url("../images/softIndex/Group1.png") 0 50% no-repeat;
    background-size: 0.15rem auto;
    white-space: nowrap;
}

.poInfo > .InfoList:nth-of-type(2) {
    padding-left: 0.3rem;
    background: url("../images/softIndex/Group2.png") 0 50% no-repeat;
    background-size: 0.19rem auto;
}

.poInfo > .InfoList:nth-of-type(3) {
    padding-left: 0.3rem;
    background: url("../images/softIndex/Group3.png") 0 50% no-repeat;
    background-size: 0.23rem auto;
}

.Info {
    width: 40%;
    height: 100%;
}

.Info .textList {
    width: 33.333333%;
    padding-top: 0.76rem;
}

.Info .textList .InfoListH {
    height: 0.26rem;
    font-size: 0.18rem;
    color: rgba(215, 216, 217, 1);
    line-height: 0.26rem;
    margin-bottom: 0.1rem;
}

.Info .textList .InfoListItem li > a {
    display: block;
    line-height: 0.4rem;
    font-size: 0.18rem;
    color: rgba(149, 152, 155, 1);
}

/*-- bottom --*/
.bottom {
    display: block;
    padding: 0 2.12rem;
    line-height: 0.79rem;
    height: 0.79rem;
    background: #262626;
}

.bottom .leftT {
    width: 60%;
    font-size: 0.18rem;
    color: rgba(143, 144, 144, 1);
}

.bottom .rightT {
    width: 40%;
}

.bottom .rightT > a {
    display: block;
    float: right;
    color: rgba(143, 144, 144, 1);
    margin: 0 0.1rem;
    font-size: 0.18rem;
}

/*--upper--*/
.upper {
    display: block;
    position: fixed;
    right: 0;
    top: 80%;
    width: 0.54rem;
    height: 0.54rem;
    /*border: 1px solid rgba(221,221,221,.5);*/
    background: #ddd url("../images/softIndex/upper.png") no-repeat center;
    background-size: 0.24rem auto;
    transition: all 0.5s ease-in-out;
    z-index: 999;
}

@media only screen and (min-width: 320px) and (max-width: 968px) {
    .upper, .ImgRightBox2, .banner3Top, .closeBtn, .menuBtn, .swiper-button-next, .swiper-button-prev {
        display: none;
    }

    .swiper-container, .swiper-wrapper {
        height: auto !important;
    }

    .header {
        height: auto !important;
    }

    .nav {
        width: 100%;
        height: 2.1rem;
        background: url("../images/softIndex/header_app.png") center no-repeat;
        background-size: 100% auto;
        padding: 0 !important;
        position: fixed !important;
    }

    .logo {
        float: none !important;
        margin: 0.44rem auto 0.46rem auto;
        /*width: 1.333rem !important;*/
        /*height: 0.26rem !important;*/
        width: 100px !important;
        height: 20px !important;
        background: url("../images/softIndex/appLogo.png") center no-repeat;
        background-size: 100% auto;
    }

    .menu {
        float: none !important;
        width: 100% !important;
        padding: 0 5% !important;
        height: auto !important;
    }

    .menu .menuList {
        position: static !important;
        height: auto !important;
    }

    .menu .menuList .ListItem {
        text-align: center;
        height: 0.78rem;
        font-size: 0.24rem;
        line-height: 0.78rem;
    }

    .H_container {
        height: 7.69rem !important;
    }

    .banner2Img {
        display: none;
    }

    .ImgRightBox1 {
        display: block;
        width: 100%;
        transform: translate3d(0px, 0px, 0px) scale(1) !important;
        transform-style: preserve-3d;
        height: 4.2rem !important;
    }

    .ImgRightBox1 > img {
        width: 100%;
    }

    .textLeftBox1 {
        padding-top: 1rem;
    }

    .textLeftBox1 > .logo {
        width: 2.19rem;
        height: 0.43rem;
        margin-bottom: 0.3rem !important;
    }

    .textLeftBox1 > p {
        width: 4.97rem;
        height: 0.34rem;
        font-size: 0.33rem;
        color: rgba(255, 255, 255, 1);
        line-height: 0.33rem;
        margin: 0 auto;
    }

    .textLeftBox2 {
        top: 62%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 99;
    }

    .ImgRightBox3 {
        display: block;
        width: 100%;
        height: 4.18rem;
    }

    .ImgRightBox3 > img {
        width: 100%;
    }

    .textLeftBox2 > .logo {
        width: 3.56rem;
        height: 0.43rem;
        margin-bottom: 0.48rem;
    }

    .textLeftBox2 > p {
        width: 5.96rem;
        height: 0.52rem;
        font-size: 0.52rem;
        color: rgba(255, 255, 255, 1);
        line-height: 0.52rem;
        margin: 0 auto 0.58rem auto;
    }

    .textLeftBox2 > .banner3more > a {
        display: block;
        width: 2.21rem;
        height: 0.57rem;
        color: #fff;
        font-size: 0.23rem;
        line-height: 0.57rem;
        padding-left: 0.56rem;
        text-align: left;
        background: url(../images/softIndex/bannerMore.png) no-repeat center;
        background-size: 2.21rem auto;
        cursor: pointer;
        margin: 0 auto;
    }

    .H_container .textLeftBox {
        top: 2.86rem !important;
        left: 0.76rem !important;
        text-align: left !important;
    }

    .H_container .textLeftBox > h1 {
        height: 0.52rem !important;
        font-size: 0.52rem !important;
        line-height: 0.52rem !important;
        margin-bottom: 0.26rem !important;
        text-align: left !important;
    }

    .H_container .textLeftBox > h1:before {
        content: "";
        display: none;
    }

    .H_container .textLeftBox > h2 {
        height: 0.26rem !important;
        font-size: 0.26rem !important;
        line-height: 0.26rem !important;
        margin-bottom: 0.25rem !important;
        text-align: left !important;
    }

    .H_container .textLeftBox > p {
        font-size: 0.23rem;
        color: rgba(255, 255, 255, 1);
        line-height: 0.35rem;
        text-align: left !important;
        height: auto !important;
        margin-bottom: 1.01rem !important;
    }

    .H_container .textLeftBox .bannerMore > a {
        height: 0.57rem !important;
        font-size: 0.23rem !important;
        line-height: 0.57rem !important;
        padding-left: 0.56rem !important;
    }

    .H_container .ImgRightBox {
        display: block;
        width: 5.21rem;
        height: 4.17rem;
        right: 0 !important;
        top: 3.48rem !important;
    }

    .bannerBox {
        display: none;
    }
    .newAdd{
        width: 100%;
        background: rgba(255,255,255,0) !important;
    }
    .aboutSpace{
        padding: 0 10%;
    }
    .industry {
        /*padding: 0 !important;*/
        /*height: 4.9rem !important;*/
        /*background: url("../images/softIndex/industryApp.png") center no-repeat !important;*/
        /*background-size: 100% 100% !important;*/
    }

    .industry > .itemList {
        width: 50%;
        float: left;
        padding-top: 0.53rem;
        padding: 0.53rem 5% 0 5% !important;
        position: relative;
    }

    .industry > .itemList:nth-child(2n-1):before {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        right: 0;
        width: 0.02rem;
        height: 0.67rem;
        opacity: 0.4;
        background: rgba(208, 208, 208, 1);
    }

    .industry > .itemList:nth-child(1):after, .itemList:nth-child(2):after,.itemList:nth-child(3):after,.itemList:nth-child(4):after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 0.02rem;
        opacity: 0.4;
        background: rgba(208, 208, 208, 1);
    }


    .industry > .itemList > p {
        width: 100%;
        text-align: center;
        font-size: 0.24rem;
        line-height: 0.36rem;
        margin: 0 auto 0.39rem auto !important;
    }

    .ability {
        height: 20.18rem;
        background: url("../images/softIndex/abilityApp.png") no-repeat center !important;
        background-size: 100% auto !important;
        padding-top: 1.15rem !important;
    }

    .ability > h1 {
        width: 1.62rem !important;
        height: 0.75rem !important;
        margin-bottom: 0.41rem !important;
        background: url(../images/softIndex/Ability.png) center no-repeat;
        background-size: 100% auto;
        position: relative;
    }

    .ability > h1:before {
        content: '';
        display: block;
        position: absolute;
        bottom: -15%;
        left: 50%;
        transform: translateX(-50%);
        width: 0.38rem;
        height: 0.02rem;
        background: #EB2973;
    }

    .ability > p {
        text-align: center;
        height: 0.56rem;
        font-size: 0.3rem;
        color: rgba(223, 223, 223, 1);
        line-height: 0.56rem;
        margin-bottom: 0.55rem;
    }

    .ability > .abilityBtnBox {
        height: 0.74rem;
        margin: 0 auto 0.29rem auto;
        overflow: hidden;
        width: 4.42rem;
    }

    .ability > .abilityBtnBox > .abilityBtn {
        width: 2.21rem;
        height: 0.56rem;
        font-size: 0.24rem;
        color: rgba(255, 255, 255, 1);
        text-align: center;
        border: 1px solid #bd0557;
        cursor: pointer;
        line-height: 0.56rem;
        margin-right: -0.1px;
    }

    .ability > .abilityBtnBox > .abilityBtn.Active {
        height: 0.74rem !important;
        background: url("../images/softIndex/abilityBtn.png") center no-repeat;
        background-size: 2.21rem auto;
        border: 1px solid rgba(255, 255, 255, 0);
        line-height: 0.56rem;
    }

    .ability .Marketing {
        padding: 0 !important;
    }

    .ability .MarkList, .ability .Marketing2 > .MarkList {
        padding-top: 1.12rem !important;
        width: 50% !important;
        height: auto !important;
        overflow: hidden;
    }

    .ability .Marketing .MarkList > p {
        height: 1.6rem !important;
        text-align: center !important;
        font-size: 0.24rem !important;
        line-height: 0.4rem !important;
    }

    .case {
        padding-top: 1.1rem;
    }
    #case2>h1{
        width: 7.04rem !important;
    }
    .case > h1 {
        margin-bottom: 0.29rem !important;
        width: 1.15rem;
        height: 0.75rem;
        background: url(../images/softIndex/CASE.png) center no-repeat;
        background-size: 100% auto !important;
    }

    .case > h1:before {
        content: '';
        display: block;
        width: 0.38rem;
        height: 0.02rem;
        background: #EB2973;
        position: absolute;
        bottom: -20%;
        left: 50%;
        transform: translateX(-50%);
    }

    .case > h2 {
        margin-bottom: 0.36rem !important;
        height: 0.56rem;
        font-size: 0.3rem;
        color: rgba(0, 0, 0, 1);
        line-height: 0.56rem;
    }

    .caseBox .caseList {
        margin: 0 0.3rem 0.3rem 0.3rem !important;
        width: 6.9rem !important;
        height: auto !important;
    }

    .case > .caseBox {
        padding: 0 !important;
    }

    .case > .caseBox .caseList > img {
        width: 100% !important;
    }

    .caseBox .caseList > a {
        /*display: none !important;*/
    }

    .caseBox .caseList:last-child {
        margin-bottom: 0 !important;
    }

    /*.caseBox .caseList:nth-child(2),.caseList:nth-child(3),.caseList:nth-child(4),.caseList:nth-child(5) {*/
    /*margin: 0.3rem !important;*/
    /*}*/
    .caseLastBottom {
        margin-bottom: 0.72rem !important;
    }

    .cooperative {
        height: 9.14rem;
        padding-top: 1rem !important;
        background: url(../images/softIndex/cooperativeBgApp.png) center no-repeat;
        background-size: 100% 100%;
    }

    .cooperative > h1 {
        width: 4.64rem;
        height: 0.75rem;
        margin-bottom: 0.29rem !important;
    }

    .cooperative h1:before {
        content: '';
        display: block;
        position: absolute;
        bottom: -10%;
        left: 50%;
        transform: translateX(-50%);
        width: 0.42rem;
        height: 0.02rem;
        background: rgba(235, 41, 115, 1);
        margin: 0 auto;
    }

    .cooperative > p {
        height: 0.56rem;
        font-size: 0.3rem;
        color: rgba(0, 0, 0, 1);
        line-height: 0.56rem;
        margin-bottom: 0 !important;
    }

    .cooperativeBox {
        width: 100%;
        padding: 0 0.6rem !important;
    }

    .cooperativeBox .cooperativeList {
        width: 33% !important;
        height: 0.8rem !important;
    }

    .footer {
        display: none;
    }

    .footerApp {
        display: block;
        height: 8.44rem;
        background: #fff;
        padding: 0.7rem 0.35rem 0 0.56rem;
        margin-bottom: 0.31rem;
    }

    .leftCol {
        width: 75%;
        text-align: left;
        margin-bottom: 0.8rem;
    }

    .leftCol > h1 {
        height: 0.39rem;
        font-size: 0.3rem;
        color: rgba(33, 33, 33, 1);
        line-height: 0.39rem;
    }

    .leftCol .InfoList1 {
        font-size: 0.27rem;
        color: rgba(33, 33, 33, 1);
        line-height: 0.39rem;
        margin-top: 0.15rem !important;

    }

    .leftCol .InfoList1:nth-of-type(1) {
        padding-left: 0.4rem;
        background: url("../images/softIndex/1-1.png") 0 7% no-repeat;
        background-size: 0.23rem auto;
    }

    .leftCol .InfoList1:nth-of-type(2) {
        padding-left: 0.4rem;
        background: url("../images/softIndex/1-2.png") 0 50% no-repeat;
        background-size: 0.29rem auto;
    }

    .leftCol .InfoList1:nth-of-type(3) {
        padding-left: 0.4rem;
        background: url("../images/softIndex/1-3.png") 0 50% no-repeat;
        background-size: 0.35rem auto;
    }

    .RightCol > .erweima1 {
        margin-top: 0.1rem;
        width: 1.45rem;
        height: 1.45rem;
    }

    .RightCol > .erweima1 > img {
        width: 100%;

    }

    .RightCol > .erweima1 > p {
        height: 0.32rem;
        font-size: 0.22rem;
        color: rgba(33, 33, 33, 1);
        line-height: 0.32rem;
        letter-spacing: 0.02rem;
        white-space: nowrap;
    }

    .Row2 > li {
        width: 33.3333%;
        text-align: left;
    }

    .Row2 > li > h1 {
        height: 0.39rem;
        font-size: 0.3rem;
        color: rgba(33, 33, 33, 1);
        line-height: 0.39rem;
        margin-bottom: 0.17rem;
    }

    .Row2 > li > .RowList {
        display: block;
        width: 100%;
        font-size: 0.28rem;
        color: rgba(67, 67, 67, 1);
        line-height: 0.6rem;
    }

    .bottom {
        display: none;
    }

}

@media only screen and (min-width: 969px) {
    .menuList .ListItem:hover {
        color: rgba(250, 0, 107, 1);
    }
}
