.banner{
    width: 100%;
    position: relative;
    background-image: url('../images/banner_jl.png');
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
}
.banner img{
    width: 100%;
    max-width: 1920px;
    height: auto;
    opacity: 0;
}
.banner .con{
    width: 120rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.banner .con h1{
    font-size: 8rem;
    line-height: 1.5;
    color: #fff;
    font-weight: bold;
}
.banner .con p{
    font-size: 2rem;
    line-height: 1.5;
    color: #fff;
}

@media screen and (max-width: 960px) {
    .banner .con{
        width: 100%;
        box-sizing: border-box;
        padding: 0 3vmin;
    }
    .banner .con h1{
        font-size: 11vmin;
    }
    .banner .con p{
        font-size: 3vmin;
    }
}

.list{
    width: 120rem;
    margin-top: 4rem;
}
.list .item{
    width: 100%;
    border-bottom: 1px solid #D6DCEA;
    padding: 4rem 0;
}
.list .item:nth-child(1){
    border-top: 1px solid #D6DCEA;
}
.list .item .title{
    display: flex;
    align-items: center;
}
.list .item .title h3{
    font-size: 3.2rem;
    line-height: 1.5;
    color: #41414D;
    font-weight: bold;
}
.list .item .title img{
    width: 2rem;
    height: 2rem;
    margin-left: .6rem;
}
.list .item .title p{
    margin-left: 2rem;
    font-size: 1.6rem;
    line-height: 2;
    border-radius: .4rem;
    padding: 0 1.2rem;
    color: #786FCD;
    background-color: #F1F0F9;
}
.list .item .title p+p{
    color: #5AAFF8;
    background-color: #EDF7FE;
}
.list .item .title p+p+p{
    color: #68CDD5;
    background-color: #EDF9FA;
}
.item .text{
    width: 100%;
    margin-top: 3rem;
}
.item .text p{
    font-size: 2.8rem;
    line-height: 1.5;
    color: #41414D;
    text-align: justify;
}
.item .time{
    display: flex;
    align-items: center;
    margin-top: 3rem;
}
.item .time p{
    font-size: 2.4rem;
    line-height: 1.5;
    color: #6A6E78;
}
.item .time .like{
    margin-left: 6rem;
    display: flex;
    align-items: center;
    
}
.item .time .like img{
    width: 3.8rem;
    height: 3.8rem;
    cursor: pointer;
}
.item .time .like p{
    margin-left: 1rem;
}
@media screen and (max-width: 960px) {
    .list{
        width: 100%;
        margin-top: 6vmin;
        box-sizing: border-box;
        padding: 0 4vmin;
    }
    .list .item{
        width: 100%;
        padding: 4vmin 0;
    }
    .list .item .title h3{
        font-size: 4vmin;
    }
    .list .item .title img{
        margin-left: 1vmin;
        width: 3vmin;
        height: 3vmin;
    }
    .list .item .title p{
        margin-left: 3vmin;
        font-size: 2.5vmin;
        line-height: 2;
        border-radius: .8vmin;
        padding: 0 1.8vmin;
    }
    .item .text{
        margin-top: 4vmin;
    }
    .item .text p{
        font-size: 4vmin;
    }
    .item .time{
        margin-top: 4vmin;
    }
    .item .time p{
        font-size: 3.5vmin;
    }
    .item .time .like{
        margin-left: 8vmin;
    }
    .item .time .like img{
        width: 5vmin;
        height: 5vmin;
    }
    .item .time .like p{
        margin-left: 1vmin;
    }
}