/* 产品-01： 轮播展示 */
.erp-goods-item-01{
    width: 455px;
    height: 432px;
    position: absolute;
    top: 202px;
    right: 200px;
    -webkit-animation: scalegoods 3s linear forwards;
    animation: scalegoods 3s linear forwards;
}

@keyframes scalegoods{
    0% {
        transform: scale(0.1); 
    }
    100% {
        transform: scale(1);
    }
}
@-webkit-keyframes scalegoods{
    0% {
        transform: scale(0.2); 
    }
    100% {
        transform: scale(1);
    }
}
.erp-goods-item-phone{
    width: 105px;
    height: 207px;
    position: absolute;
    top: 383px;
    right: 172px; 
    -webkit-animation: opacity 3s linear forwards;
    animation: opacity 3s linear forwards;
    display: none;
}

@keyframes opacity{
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: rotate(-10deg);
    }
}
@-webkit-keyframes opacity{
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
        transform: rotate(-10deg);
    }
}

@keyframes shake{
    0% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(10deg); 
    }
    100% {
        transform: rotate(0deg);
    }
}
@-webkit-keyframes shake{
    0% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(10deg); 
    }
    100% {
        transform: rotate(0deg);
    }
}
#tab-title{
        width: 90%;
        margin: auto;
}
#tab-title li {
    flex: 1;
    padding:0 30px;
    text-align:center;
    line-height: 40px; 
    position:relative;
    z-index:1000;
    border-radius: 10px;
    cursor: pointer;
}
#tab-title,#wrap {
    clear:both; 
}
#wrap {  
    position:relative;
    top:-1px;
    padding:10px;
    margin: 80px auto;
}
#wrap .tab-item {
    display:none;
    box-shadow:0px 1px 20px 0px rgba(0, 0, 0, 0.4);
}
.tab-active{
    color: #ffffff;
    background-color: #4DB3FE;
}

/* 选中显示 */
.show-img{
    width: 600px;
    height: 400px;
    overflow: hidden;
}

    .show-right{
        width: 50%; 
    }
    .show-right span{
        margin: 0 60px;
        color: #464F55;
        line-height: 40px;
    }
    .show-right span:first-child{ 
        margin-top: 100px;
    }
    
    .show-right span:nth-child(3){ 
        margin-top: 40px;
    }


    /* 便捷工具 */
    .erp-setting-item{
        width: 570px;
        margin: 30px 0;
        padding: 50px 0;
    }
    .erp-setting-item:first-child{
        margin-right: 60px;
    }

    .erp-setting-item .erp-set-item-img{
        width: 300px;
        margin: auto;
    }
    .erp-setting-item p:nth-child(2){
        margin:30px 0 60px 0;
    }
