.banner-center>img{
    position: absolute;
    right: -110px;
}


/*------------------------------测试服务------------------------------*/
.testservice{padding: 5rem 0 2rem}


/*----------测试服务的列表----------*/
.testservice-list{
    display: flex;
    width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    gap: 1.25rem;
}

/*测试服务列表的儿子*/
.testservice-list-child{
    flex: 1;
    padding: 3rem 2rem 2.5rem;
    background-color: rgb(246,246,249);
    transition-duration: .3s;
    overflow: hidden;
}
.testservice-list-child:hover{
    background-color: #fff;
    box-shadow: 0 4px 20px 0 rgba(0,0,0,.08);
}
.testservice-list-child img{
    width: 4rem;
    height: 4rem;
    margin: 0 auto;
}
.testservice-list-child h3{
    margin: 2rem 0 0.75rem;
    text-align: center;
    line-height: 1.75rem;
    font-size: 1.25rem;
}
.testservice-list-child>div{
    position: relative;
    height: 6em;
}
.testservice-list-child>div p{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    line-height: 2;
    font-size: .875rem;
    opacity: .6;
    transform: translateY(0);
    transition: all .5s;
    visibility: visible;
}
.testservice-list-child:hover>div p{
    opacity: 0;
    transform: translateY(80%);
    visibility: hidden;
}
.testservice-list-child>div ul{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    opacity: 0;
    transform: translateY(80%);
    visibility: hidden;
}
.testservice-list-child:hover>div ul{
    opacity: 1;
    transform: translateY(0);
    transition: all .5s .25s;
    visibility: visible;
}
.testservice-list-child>div ul li{
    text-align: center;
    line-height: 2;
    font-size: .875rem;
    opacity: .6;
}



/*------------------------------云服务运维------------------------------*/
.yfwyw{
    height: 618px;
    background: url('https://cdn.huamux.com/pcimgs/banner/banner-bgimg-web.png') center;
    background-size: cover;
    overflow: hidden;
}
.yfwyw>.center{
    position: relative;
    width: 1200px;
    margin: 0 auto
}
.yfwyw-img{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 520px;
    height: 402px;
    background-size: cover;
}


/*----------云服务运维的标题----------*/
.yfwyw-title{
    position: relative;
    z-index: 1;
    margin: 5rem 0 4.5rem;
}


/*----------云服务运维的主要内容----------*/
.yfwyw-main{width: 675px;}

/*云服务运维的主要内容的tabs切换列表*/
.yfwyw-main-tabslist{
    display: flex;
    padding: 1.25rem 60px;
    background-color: rgb(246,246,249);
    gap: 100px;
}
.yfwyw-main-tabslist button{
    padding: 0;
    line-height: 1.75rem;
    font-size: 1.25rem;
    background-color: transparent;
    cursor: pointer;
}
.yfwyw-main-tabslist button.active{
    border-color: #1c64f2;
    color: #1c64f2;
}

/*云服务运维的主要内容的内容区域*/
.yfwyw-main-content{
    padding: 2.5rem 60px 60px;
    background-color: rgba(255,255,255,.6);
    backdrop-filter: blur(6px)
}
.yfwyw-main-content>.textlist li{
    display: none;
    line-height: 2;
    font-size: .875rem;
    opacity: .6;
}
.yfwyw-main-content>.textlist  li.active{display: block}
.yfwyw-main-content>.logolist {
    display: flex;
    margin-top: 3rem;
    flex-wrap: wrap;
    column-gap: 5rem;
    row-gap: 2.5rem;
}
.yfwyw-main-content>.logolist li{
    display: flex;
    align-items: center;
}
.yfwyw-main-content>.logolist li img{height: 1.25rem}



/*------------------------------项目运营全托管------------------------------*/
.servicecontent{padding: 5rem 0}


/*----------服务内容的列表----------*/
.servicecontent-list{
    display: flex;
    flex-wrap: wrap;
    width: 1200px;
    margin: 2.5rem auto 0;
}

/*服务内容列表的儿子*/
.servicecontent-list-child{
    position: relative;
    width: 50%;
    min-height: 220px;
    border: 1px solid #f7f8fa;
    padding: 2.5rem;
    margin-top: -1px;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
.servicecontent-list-child:first-child{background-image: url("https://cdn.huamux.com/pcimgs/service/test-list-child-bgimg1.png")}
.servicecontent-list-child:nth-child(2){background-image: url("https://cdn.huamux.com/pcimgs/service/test-list-child-bgimg2.png")}
.servicecontent-list-child:nth-child(3){background-image: url("https://cdn.huamux.com/pcimgs/service/test-list-child-bgimg3.png")}
.servicecontent-list-child:nth-child(4){background-image: url("https://cdn.huamux.com/pcimgs/service/test-list-child-bgimg4.png")}
.servicecontent-list-child:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transform: scale(1.06);
    transform-origin: 50% 50%;
    transition: transform .5s,opacity .5s;
}
.servicecontent-list-child:hover:after{
    opacity: 1;
    transform: scale(1);
}
.servicecontent-list-child:first-child:after{background-image: url("https://cdn.huamux.com/pcimgs/service/test-list-child-hover-bgimg1.png")}
.servicecontent-list-child:nth-child(2):after{background-image: url("https://cdn.huamux.com/pcimgs/service/test-list-child-hover-bgimg2.png")}
.servicecontent-list-child:nth-child(3):after{background-image: url("https://cdn.huamux.com/pcimgs/service/test-list-child-hover-bgimg3.png")}
.servicecontent-list-child:nth-child(4):after{background-image: url("https://cdn.huamux.com/pcimgs/service/test-list-child-hover-bgimg4.png")}
.servicecontent-list-child:nth-child(2n){margin-left: -1px}
.servicecontent-list-child h3{
    position: relative;
    z-index: 1;
    margin-bottom: 0.75rem;
    line-height: 1.75rem;
    font-size: 1.25rem;
    font-weight: 500;
}
.servicecontent-list-child p{
    position: relative;
    z-index: 1;
    line-height: 2;
    font-size: .875rem;
    opacity: .6;
}





/******************************以下是移动端样式*******************************/
/******************************以下是移动端样式*******************************/
/******************************以下是移动端样式*******************************/
body[data-mobile] .testservice{padding: 0.4rem 0 0}
body[data-mobile] .testservice-list{
    width: auto;
    padding: 0 0.12rem;
    gap: 0.12rem;
    flex-wrap: wrap;
}
body[data-mobile] .testservice-list-child{
    flex: none;
    width: calc(50% - 0.06rem);
    padding: 0.12rem;
    transition-duration: 0s
}
body[data-mobile] .testservice-list-child:hover{box-shadow: 0 0.04rem 0.2rem 0 rgba(0,0,0,.08);}
body[data-mobile] .testservice-list-child img{
    width: .6rem;
    height: .6rem;
}
body[data-mobile] .testservice-list-child h3{
    margin: 0.16rem 0 0.16rem;
    text-align: center;
    line-height: 1;
    font-size: 0.18rem;
    font-weight: bold;
}
body[data-mobile] .testservice-list-child>div p{
    line-height: 1.75;
    font-size: 0.14rem;
}
body[data-mobile] .testservice-list-child>div ul li{
    line-height: 1.75;
    font-size: 0.14rem;
}
body[data-mobile] .yfwyw{
    position: relative;
    height: auto;
    padding: 0.4rem 0 0.12rem;
}
body[data-mobile] .yfwyw-title{margin: 0 0 0.25rem}
body[data-mobile] .yfwyw>.center,
body[data-mobile] .yfwyw-main{width: auto;}
body[data-mobile] .yfwyw>.center{position: initial}
body[data-mobile] .yfwyw-main{padding: 0 0.12rem}
body[data-mobile] .yfwyw-main-tabslist{
    position: relative;
    z-index: 1;
    padding: 0;
    gap: initial;
    justify-content: center;
}
body[data-mobile] .yfwyw-main-tabslist button{
    flex: 1;
    line-height: 0.40rem;
    font-size: 0.18rem;
}
body[data-mobile] .yfwyw-main-tabslist button.active{background-color: rgba(255,255,255,.6)}
body[data-mobile] .yfwyw-main-content{
    position: relative;
    z-index: 1;
    padding: 0.12rem;
}
body[data-mobile] .yfwyw-main-content>.textlist li{
    line-height: 1.5;
    font-size: 0.16rem;
}
body[data-mobile] .yfwyw-main-content>.logolist{
    margin-top: 0.24rem;
    flex-wrap: wrap;
    column-gap: 0.3rem;
    row-gap: 0.2rem;
}
body[data-mobile] .yfwyw-main-content>.logolist li img{height: 0.2rem!important;}
body[data-mobile] .yfwyw-img{
    bottom: -1rem;
    width: 100%;
    height: auto;
    opacity: .25;
}
body[data-mobile] .servicecontent{padding: 0.4rem 0 0.12rem}
body[data-mobile] .servicecontent-list{
    width: auto;
    padding: 0 0.12rem;
    margin: 0;
}
body[data-mobile] .servicecontent-list-child{
    min-height: auto;
    padding: 0.12rem;
}
body[data-mobile] .servicecontent-list-child:after{display: none}
body[data-mobile] .servicecontent-list-child h3{
    margin-bottom: 0.1rem;
    line-height: 1;
    font-size: 0.18rem;
}
body[data-mobile] .servicecontent-list-child p{
    height: 0.66rem;
    line-height: 0.22rem;
    font-size: .14rem;
}





















