main {

    width: 1200px;

    margin: auto

}



.listBox {

    width: 100%;

    height: 100%

}



.listTitle {

    width: 100%;

    height: 30px;

    margin-top: 50px;

    display: flex;

    border-bottom: 1px dashed gray

}



.listTitle h2 {

    font: 700 22px/16px 'Open Sans', sans-serif;

    text-transform: uppercase;

    color: #fff;

    float: left;

    height: 100%;

    line-height: 30px;

    font-size: 20px;

    background-color: #900;

    padding: 0 10px

}



.listDetail {

    width: 100%;

    height: auto;

    display: flex;

    justify-content: space-between;

    flex-wrap: wrap

}



.listSmallBox {

    width: 15.6364%;

    overflow: hidden;

    margin-top: 30px;

    border: 1px solid #d3d3d3;

    box-shadow: 0 0 4px rgb(0 0 0/11%);

    cursor: default;

    transition: all .3s

}



.listSmallBox:hover {

    transform: scale(1.05);

    cursor: pointer

}



.listImg {

    width: 100%

}



.listImg img {

    width: 100%;
    min-height: 11rem;

}



.listTxt {

    width: 100%;

    padding: 5px 10px;

    overflow: hidden

}



.listTxt h4 {

    color: #900;

    font-size: 14px;

    margin: 5px 0;

    display: inline-block;

    white-space: nowrap;

    width: 100%;

    overflow: hidden;

    text-overflow: ellipsis

}



.listTxt ul {

    margin-top: 5px;

    display: flex

}



.listTxt ul li {

    background-color: #ddd;

    color: #222;

    display: block;

    font: normal 11px/14px Arial, Helvetica, sans-serif;

    margin: 0;

    padding: 0 4px;

    text-rendering: optimizeLegibility;

    text-decoration: none;

    text-transform: uppercase;

    white-space: nowrap;

    margin-left: 2px;

    height: 15px;

    line-height: 15px

}



.listTxt p {

    line-height: 1.3;

    margin-top: 7px;

    overflow: hidden;

    text-overflow: ellipsis;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical

}



.listNum {

    width: 100%;

    height: 30px;

    background-color: #f6f6f6;

    border-top: 1px solid #d3d3d3

}



@media screen and (max-width: 960px) {

    main {

        width: 90%

    }



    .listSmallBox {

        width: 48%

    }



    .banner {

        height: 180px !important

    }

}