.typeList{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.typeListItem{
    line-height: 50px;
    width: 140px;
    font-size: 14px;
    padding: 0 40px;
    color: #333;
    border: 1px solid #DDDDDD;
    border-right: none;
    cursor: pointer;
    text-align: center;
}
.typeListItem:last-child{
    border-right: 1px solid #DDDDDD;
}
.typeListItemActived{
    background: #1890FF;
    color: #fff;
}
.productList{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 110px;
}
.productItem{
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 70px;
}
.productItem:first-child{
    width: 52%;
}
.productItem:last-child{
    width: 48%;
}
.itemBox{
    display: flex;
    flex-direction: column;
}
.itemBoxLists{
    padding: 14px 20px 18px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(222, 222, 222, .3);
    margin-bottom: 2px;
    position: relative;
}
.itemBoxLists::after{
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid #ddd;
    border-radius: 50%;
    left: -50px;
    top: 50px;
}
.itemBoxLists::before{
    position: absolute;
    content: '';
    /* width: 5px;
    height: 5px; */
    border-left: 1px solid rgba(222, 222, 222, 1);
    left: -44px;
    top: 60px;
    bottom: -52px;
}
.itemBoxLists:hover::after{
    border: 2px solid #1890ff;
}
.itemBoxLists:last-child::before{
    display: none;
}
.itemBoxLists:hover{
    background-color: #1890ff;
}
.itemBoxLists:hover .listInfo_title,
.itemBoxLists:hover .listInfo_text,
.itemBoxLists:hover .listNum{
    color: #fff;
    opacity: 1;
}
.listInfo_title{
    font-size: 18px;
    line-height: 20px;
    color: #333333;
    font-weight: bold;
}
.listInfo_text{
    font-size: 14px;
    line-height: 16px;
    color: #333;
    margin-top: 16px;
}
.listNum{
    font-size: 40px;
    font-weight: bold;
    color: #999999;
    opacity: 0.3;
}
.pageTitle{
    background: url('./../m_images/Procedures.png') no-repeat center center;
    background-size: 100%;
    width: 500px;
    position: relative;
}
@media (max-width: 992px) {
    .pageTitle{
        padding-top: 0.1;
    }
    .container{
        max-width: 100%!important;
    }
    .productItem{
        width: 100%!important;
        padding: 0 20px!important;
    }
    .productItem:first-child{
        margin-bottom: 20px!important;
    }
    .itemBoxLists{
        padding: 24px 20px;
    }
    .itemBoxLists::before{
        display: none;
    }
    /* .itemBoxLists .listInfo .listInfo_title{
        line-height: 26px;
    }
    .itemBoxLists .listInfo .listInfo_text{
        line-height: 14px;
    } */
    .typeListItem{
        padding: 0;
        font-size: 28px;
        line-height: 60px;
        text-align: center;
    }
    .listInfo_title{
        font-size: 32px;
        line-height: 32px;
       
    }
    .listInfo_text{
        font-size: 28px;
        line-height: 32px;
        color: #333;
        margin-top:6px;
    }
}