.bannetp {
    width: 100%;
    height: 50vh;
    position: relative;
}

.bannetp>img {
    width: 100%;
    height: 100%;
}

.bannetp>h1 {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 9;
    font-size: 50px;
    font-weight: 600;
    color: #ffffff;
}





.train-box{
    padding: 60px 0;
}
.train-box h2 {
    text-align: center;
    font-size: 36px;
    color: #222222;
}




.train-ul{
    margin-top: 60px;
}
.train-ul li{
    padding: 35px 0;
    cursor: pointer;
}
.train-ul li:nth-child(odd){
    background-color: #f5f5f5;
}
.trainul-itm{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.trainul-itm > img{
    width: 15%;
    height: 160px;
}

.item-txt{
    width: 83%;
    margin-left: 10px;
}
.item-txt h3{
    font-size: 24px;
}
.item-txt span{
    font-size: 14px;
    color: #999999;
    margin-top: 15px;
    display: inline-block;
}
.item-txt p{
    font-size: 16px;
    color: #666666;
    margin-top: 15px;
}

.item-txt a{
    font-size: 14px;
    color: #00a0e9;
    padding: 10px 30px;
    border: 1px solid #00a0e9;
    border-radius: 5px;
    display: inline-block;
    margin-top: 25px;
}
.item-txt:hover a{
    background-color: #00a0e9;
    color: #ffffff !important;
}





.trainb-tm{
    display: flex;
    justify-content: center;
    padding: 0px 0 30px;
}







@media screen and (max-width:768px) {
    .bannetp {
        width: 100%;
        height: 20vh;
        position: relative;
    }

    .bannetp>img {
        width: 100%;
        height: 100%;
    }

    .bannetp>h1 {
        position: absolute;
        top: 50%;
        left: 5%;
        transform: translateY(-50%);
        z-index: 9;
        font-size: .4rem;
        font-weight: 600;
        color: #ffffff;
    }




    .train-box{
        padding: .4rem 0;
    }
    .train-box h2 {
        text-align: center;
        font-size: .3rem;
        color: #222222;
    }

    
    
    
    .train-ul{
        margin-top: .4rem;
    }
    .train-ul li{
        padding: .35rem 0;
        cursor: pointer;
    }
    .train-ul li:nth-child(odd){
        background-color: #f5f5f5;
    }
    .trainul-itm{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    .trainul-itm > img{
        width: auto;
        height: 1.6rem;
    }
    
    .item-txt{
        width: 90%;
        margin-left: .1rem;
        margin-top: .2rem;
    }
    .item-txt h3{
        font-size: .24rem;
    }
    .item-txt span{
        font-size: .14rem;
        color: #999999;
        margin-top: .15rem;
        display: inline-block;
    }
    .item-txt p{
        font-size: .16rem;
        color: #666666;
        margin-top: .15rem;
    }
    
    .item-txt a{
        font-size: .14rem;
        color: #00a0e9;
        padding: .1rem .3rem;
        border: 1px solid #00a0e9;
        border-radius: 5px;
        display: inline-block;
        margin-top: .25rem;
    }
    .item-txt:hover a{
        background-color: #00a0e9;
        color: #ffffff !important;
    }
    
    




}