* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6 {
    font-weight: normal;
}

ul, li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #333;
}

body {
    font-size: 14px;
}

.section {
    position: relative;
    max-width: 850px;
    width: 100%;
    height: auto;
    margin: auto;
}

.banner {
    display: block;
    width: 100%;
    margin: 0 auto;
    max-width: 1920px;
}

#wrapper {
    margin-top: 10px;
    padding: 0 10px;
}

.show { display: block !important; }
.hide { display: none !important; }

.list-box li {
    padding: 20px 15px;
    border-bottom: 1px solid #efefef;
    cursor: pointer;
}

.list-box li img {
    border-radius: 4px;
    display: block;
    object-fit: cover;
}

.list-box li .tag {
    border: 1px solid #ec4b4b;
    border-radius: 6px;
    text-align: center;
    display: inline-block;
    padding: 0 3px;
    color: #ec4b4b;
    margin-right: 5px;
}

.list-box li:hover {
    background: #f6f6f6;
}

.list-box li:hover h3 {
    color: #3a9cff;
}

.list-box li > div {
    width: 100%;
    height: 100%;
}

.list-box li i {
    display: block;
    font-size: 18px;
    font-style: normal;
    color: #aaa;
    padding-top: 10px;
}

.list-box h3 {
    font-size: 23px;
    color: #000;
    min-height: 104px;
}
/* 无图 */
.list-box .li0 span {
    width: 100%;
    padding-left: 0;
}
.list-box .li0 h3 {
    min-height: 60px;
}

/* 单图 */
.list-box .li1 {
    height: auto;
}
.list-box .li1 > div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.list-box .li1 img {
    width: 30%;
}
.list-box .li1 span {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 70%;
    padding-left: 26px;
}

/* 大图 */
.list-box .li2 img {
    width: 100%;
}

.list-box .li2 h3 {
    height: auto;
    min-height: auto;
    padding: 15px 0;
}

/* 多图 */
.list-box .li3 .imgs {
    display: flex;
    gap: 25px;
}
.list-box .li3 img {
    width: 250px;
}
.list-box .li3 h3 {
    height: auto;
    min-height: auto;
    padding: 15px 0;
}

/* 更多 */
.index-ll-more {
    text-align: center;
    height: 40px;
    line-height: 40px;
    color: #aaa;
    width: 400px;
    margin: 20px auto;
    display: none;
    position: relative;
}

/* 手机端专属样式 */
@media only screen and (max-width: 768px) {
    html,body {
        width: 100%;
        overflow-x: hidden;
    }
    .list-box li {
        padding: 1rem .4rem;
    }
    .list-box h3 {
        font-size: 1rem;
        min-height: 2.9rem;
        height: auto;
    }
    .list-box li i {
        font-size: .7rem;
        padding-top: .7rem;
    }
     .list-box li .time {
        font-size: .8rem;
    }
    /* 无图 */
    .list-box .li0 h3 {
        min-height: 2rem;
        padding: 1rem 0 .3rem 0;
    }

    /* 单图 */
    .list-box .li1 img {
        width: 34%;
    }
    .list-box .li1 span {
        width: 66%;
        padding-left: .7rem;
    }

    /* 大图 */
    .list-box .li2 h3 {
        height: auto;
        padding: .8rem 0;
    }

    /* 多图 */
    .list-box .li3 .imgs {
        gap: 3%;
    }
    .list-box .li3 img {
        width: 31%;
    }
    .list-box .li3 h3 {
        padding: 1rem 0 .3rem 0;
    }

    .index-ll-more {
        width: 100%;
        margin: .5rem auto;
        height: 2.6rem;
        line-height: 2.6rem;
    }
    .list-box li:hover {
        background: transparent;
    }

    .list-box li:hover h3 {
        color: '';
    }
}