h5,p{
    margin: 0;
    padding: 0;
}
/*头部样式*/
header {
    background: url(../imgs/product/banner.jpg) no-repeat center;
  }
/*banner样式*/
.buildSystem{
    width: 50%;
    float: right;
    padding-top:13%;
    padding-left: 10%;
}
.buildSystem > h5{
    font-size: 0.35rem;
    color: #333333;
    margin-bottom: 0.3rem;
}
.buildSystem > p{
    font-size: 0.2rem;
    color: #555555;
    margin: 5px 0;
}
/*导航栏样式*/
.product-nav{
    width: 80%;
    margin: 0 auto;
    height: 7.4vh;
}
.product-nav > ul{
    border-bottom: none;
}
.product-nav > ul >li > a{
    padding: 8.7% 0;
    height: 100%;
    color:#333333;   
    font-size: 0.2rem;
    border-radius: 0 !important;
}
.product-nav > ul >li > a:hover{
    font-weight: 700;
    color: #1da6ba; 
    border-bottom:2px solid transparent !important;
    background-color: #ffffff;       
}
.active{
    font-weight: 700;
    color: #1da6ba !important;
    cursor: pointer;
}

/*主体内容样式*/
.product-slogan{
    height: 10.7vh;
    background-color: #f9f9f9;
    border-top: 1px solid #cccccc; 
}
.product-slogan > p{   
    height: 100%;
    margin: 0;
    text-align: center;
    padding-top: 1.5%;
    font-size: 0.24rem;
    color: #058ccc;   
    position: relative;
}
.product-slogan > p::before{
    content: '';
    display: block;
    height: 1px;
    width: 28%;
    position: absolute;
    background-color:#058ccc;
    top:50%;
}
.product-slogan > p::after{
    content: '';
    display: block;
    height: 1px;
    width: 28%;
    position: absolute;
    background-color: #058ccc;
    right: 0;
    top:50%;
}
/*各系统模块公共样式*/
.system {
    height: 43vh;
    display: none;
    justify-content: center; 
    transition: all 1s ease-in-out;  
}
.system > div{
    width: 30%;
}
.system h5{
    font-size: 0.24rem;
    color: #555555;
}
.system span{
    display: block;
    width: 6%;
    height: 2px;
    margin: 8% 0;
    background-color: #3ac0ff;
}
.system p{
    font-size: 0.18rem;
    color: #555555;
    margin: 10px 0;
    margin-left: 20px;
}
/* 各个系统图片样式 */
.onlineSystem-img,
.IVRSystem-img,
.qualityTestSystem-img,
.outboundSystem-img,
.dataAnalysisSystem-img,
.monitoringPlatform-img,
.repository-img,
.SchedulingSystem-img{
    text-align: center;
    line-height: 43vh;
    opacity: 0;
    transform: translateX(200px);
    transition: all 1s ease-in-out;
}
/* 各系统图片过渡初始样式 */
.onlineSystem-img:nth-of-type(odd),
.IVRSystem-img:nth-of-type(odd),
.qualityTestSystem-img:nth-of-type(odd),
.outboundSystem-img:nth-of-type(odd),
.dataAnalysisSystem-img:nth-of-type(odd),
.monitoringPlatform-img:nth-of-type(odd),
.repository-img:nth-of-type(odd),
.SchedulingSystem-img:nth-of-type(odd){
    transform: translateX(-200px);
}
/*各系统介绍内容样式  */
.IVRSystem-describe,
.qualityTestSystem-describe,
.outboundSystem-describe,
.dataAnalysisSystem-describe,
.monitoringPlatform-describe,
.repository-describe,
.SchedulingSystem-describe{
    padding: 12% 3%;
    opacity: 0;
    transition: all 1s ease-in-out;
}
/* 奇数行背景颜色 */
.onlineSystem:nth-of-type(odd),
.IVRSystem:nth-of-type(odd),
.qualityTestSystem:nth-of-type(odd),
.outboundSystem:nth-of-type(odd),
.dataAnalysisSystem:nth-of-type(odd),
.monitoringPlatform:nth-of-type(odd),
.repository:nth-of-type(odd),
.SchedulingSystem:nth-of-type(odd){
    background-color: #f9f9f9;
}
/*智能客服在线系统样式*/
.onlineSystem > .onlineSystem-describe{
    padding: 12% 6%;
    opacity: 0;
    transition: all 1s ease-in-out;  
}

/*产品优势样式*/
.product-advantage .advantage-table{
    border: 1px solid #cccccc;
    width: 65vw;
    height: 59vh;
    margin-left: 17.2%;
    margin-bottom: 5%;
}
.product-advantage h5{
    font-size: 0.3rem;
    color: #333333;
    margin:2% auto;
    text-align: center;
}
.product-advantage .advantage-table tr td{
    text-align: center;
    padding: 4% 0 0;
    cursor: pointer;
    border: 1px solid #cccccc;
    position: relative;
    overflow: hidden;
}
.product-advantage .advantage-table tr td .hover-showBox{
    transform: translateY(0);
    transition: all 0.5s ease-in-out;
}
.product-advantage .advantage-table tr td img{
    height: 50%;
}
.product-advantage .advantage-table tr td span{
    display: block;
    font-size: 0.24rem;
    margin: 7% 0;
    color: #999999;
}
.product-advantage .advantage-table tr td .hover-hideBox{
    position: absolute;
    background-color:#6ab0cf;
    width: 100%;
    height: 100%;
    top:-200px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.product-advantage .advantage-table tr td .hover-hideBox p{
    font-size: 14px;
    color:#ffffff;
    margin: 18% auto;
    text-align: center;
    width: 70%;
}
/*.product-advantage .advantage-table tr td:hover .hover-hideBox{
    top:0;
    opacity: 1;
}
.product-advantage .advantage-table tr td:hover .hover-showBox{
    transform: translateY(50%);
    opacity: 0;
}*/