@charset "utf-8";

.hxys {
    /*  float:left;
      width:100%;*/
}

.hxys ul {
    list-style:none;
}

.hxys ul li {
    float:left;
    width:48%;
    height:165px;
    overflow:hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.hxys ul li .pic {
    /* float:left;*/
    width:80px;
    padding-top:10px;
}

.hxys ul li .pic img {
    width:50px;
    height:50px;
}

.hxys ul li .text {
    /*float:left;*/
    width:calc(100% - 80px);
    -webkit-animation: none;
    animation: none;
    opacity: 1;
    margin: 10px 0 0;
    white-space: pre-wrap;
}

.hxys ul li .text span {
    /* float:left;*/
    width:100%;
    height:30px;
    line-height:30px;
    font-weight:bold;
    color: #333;
    -webkit-animation: none;
    animation: none;
}

.hxys ul li .text p {
    /*    float:left;*/
    width:100%;
    text-align:left;
    line-height:24px;
    color: #333;
    -webkit-animation: none;
    animation: none;
}


@media  (max-width: 767px){
    .hxys ul li{
        width: 100%;
        height: auto;
    }
}