.withak{
    width: 90%;
    margin: 1rem auto;
}
.withak .item{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}
.withak .item .left .text{
    display: flex;
    flex-direction: column;
    padding-left: 0.5rem;
    color: #000;
}
.withak .item .right .text{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 0.5rem;
    color: #000;
}
.withak .item .text p{
    font-size: 0.34rem;
    padding-top: 0.1rem;
}
.withak .item .text span{
    font-size: 0.24rem;
    color: #707070;
    padding: 0.2rem 0;
}
.withak .item .text i{
    font-size: 0.58rem;
}
.withak .item:nth-child(odd) .left{
    width: 65%;
}
.withak .item:nth-child(odd) .right{
    width: 34%;
}
.withak .item:nth-child(even) .left{
    width: 34%;
}
.withak .item:nth-child(even) .right{
    width: 65%;
}
.withak .item .imgbox{
    width: 100%;
    height: 4.84rem;
    overflow: hidden;
}
.withak .item img{
    width: 100%;
    height: 100%;
    display: block;
    transition: all 1s;
}
.withak .item .imgbox:hover img{
    transform: scale(1.1);
}


