.productlist{padding: 20px 0; overflow:hidden; background:#f5f5f5;}

.productlist .list-box ul li{
    margin: 20px auto;
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
}



.productlist .list-box ul li a{display: flex; margin-bottom:20px; flex-direction: row; justify-content: center;}

.productlist .list-box ul li:nth-child(2n) a{
    flex-direction: row-reverse;
}


.productlist .list-box ul li a .procuct-image{width: 50%; overflow: hidden;}
.productlist .list-box ul li a .procuct-image img{width: 100%; transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
}
.productlist .list-box ul li a .procuct-txt{width: 50%; background-color: #fff; display: flex; justify-content: center;/* padding:20px 0;*/}
.productlist .list-box ul li a .procuct-txt > div {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.productlist .list-box ul li a .procuct-txt > div h4 {
    font-size: 24px;
    color: #000;
    margin-bottom: 50px;
    position: relative;
}

.productlist .list-box ul li a:hover .procuct-txt > div h4 {
    color: #004da1;
}

.productlist .list-box ul li a:hover .procuct-image img {
    transform: scale(1.05);
}


.productlist .list-box ul li a .procuct-txt > div h4:after {
    position: absolute;
    left: 0;
    bottom: -30px;
    width: 50px;
    height: 3px;
    z-index: 2;
    background: #ef0909;
    content: "";
    transition: all 0.5s;
}

.productlist .list-box ul li a:hover .procuct-txt > div h4:after {
    background: #004da1;
}

.productlist .list-box ul li a .procuct-txt > div p,
.productlist .list-box ul li a .procuct-txt > div span
{
    color: #606060;
    font-size: 16px;
}

.productlist .list-box ul li a .procuct-txt > div p{
    text-indent: 2em;
    letter-spacing: 2px;
    line-height: 30px;
    margin-bottom: 20px;
}
.productlist .list-box ul li a .procuct-txt > div span
{
    width: 160px;
    padding: 15px 20px;
    border: 1px solid #d7d7d7;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.productlist .list-box ul li a .procuct-txt > div span i{
    font-size: 16px;
    line-height: 23px;
}

.productlist .list-box ul li a:hover .procuct-txt > div span
{
    color: #fff;
    background: #004da1;
    border-color: #004da1;
}

@media(max-width:767px){
    .productlist .list-box ul{margin:0 -4px;}
    .productlist .list-box ul li{margin: 20px 0; padding:4px;}

    .productlist .list-box ul li a{display: flex; margin-bottom:20px; flex-direction: column-reverse !important;}

    .productlist .list-box ul li a .procuct-txt,
    .productlist .list-box ul li a .procuct-image
    {
        width: 100%;
    }

    .productlist .list-box ul li a .procuct-txt{
        padding: 20px 0;
    }
}
