.p-box{
    display: flex;
    justify-content: space-between;
}
.p-item{
    width: 48%;
    background: linear-gradient(90deg, #4bb980 25%, #017f7e 100%);
    border-radius: 20px;
    padding: 4% 2% 4% 0%;
    position: relative;
    transition: all 0.36s;
}
.p-item:last-child{
    background: linear-gradient(90deg, #017f7e 25%, #4bb980 100%);
}
.p-item a{
    display: flex;
}
.p-item a:hover{
    color: #fff;
}
.p-left{
    width: 50%;
}
.p-left h1{
    font-size: 2.1rem;
    transform: scale(1) translateX(20px);
    transition: all 0.36s;
}
.p-left span{
    display:block;
    transform: scale(1.1) translateX(30px);
    transition: all 0.36s;
}
.p-item a:hover h1,.p-item a:hover span{
    transform: scale(0.9) translateX(0px);
}
.p-right{
    width: 60%;
    position: absolute;
    right: 0;
    top: -5%;
    transition: all 0.36s;
    transform: scale(0.7) translateY(-60px) translateX(100px);
}
.p-item a:hover .p-right{
    transform: scale(1) translateY(-80px) translateX(0px);
}
.p-right img{width:100%;}
@media (max-width: 767px) {
    .p-box{flex-wrap:wrap;}
    .p-item{
        width: 100%;
        margin-top: 11%;
        height: 300px;
        /*overflow: hidden;*/
    }
    .p-item:first-child{
        margin-top: 0;
    }
    .p-item:last-child{
        margin-bottom: 4%;
    }
    .p-left{width: 100%;color: #fff;}
    .p-left h1 {
        transform: unset;
        font-size: 2rem;
        width: 100%;
        text-align: center;
    }
    .p-right{width: 100%;transform:scale(0.8) translateY(100px) translateX(6px);}
    .p-left span{
        transform: unset;
        text-align: center;
        font-size: 1rem;
    }
    .p-item a:hover h1{
        transform: scale(0.8) translateX(0px);
    }
    .p-item a:hover .p-right{transform: scale(1.15) translateY(-40px) translateX(20px);}
    .i-tit p{
        line-height: 1.5;
        font-size: 14px;
    }
    .tit-44{font-size:22px;}
    .i-about .i-tit h2{
        padding-top: 4%;
        background: linear-gradient(90deg, #fff 25%, #fff 100%);
        -webkit-background-clip: text;
    }
    .i-about .i-tit p{
         background: linear-gradient(90deg, #fff 25%, #fff 100%);
        -webkit-background-clip: text;
    }
}














