*{
    margin: 0;
    padding: 0;
}
img{
    vertical-align: bottom;
}
a{
    text-decoration: none;
}
html{
    font-size: 100px;
    text-size-adjust: 100% !important;
}
body{
    background: #ededed;
}
#app{
    max-width: 10rem;
    margin: 0 auto;
    padding: 0 0.3rem;
}
.head{
    width: 100%;
    background: #399c9c;
    color: #fff;
    font-size: 0.2rem;
    padding: 0.2rem 0 0.25rem;
    text-align: center;
    margin-bottom: 0.35rem;
}
.head-content{
    position: relative;
    max-width: 10rem;
    margin: 0 auto;
}
.nav{
    font-size: 0.13rem;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    margin-top: 0.2rem;
}
.nav a{
    color: #fff;
    margin: 0 30px;
}
.nav a:hover{
    color: #9c396b;
}
#items{
    width: 100%;
    position: relative;
    display: flex;
    flex-flow: row wrap;
}
.item{
    width: 48%;
    display: block;
    text-decoration: none;
    color: #000;
    margin-bottom: 0.5rem;
    border-radius: 0.1rem;
    border-bottom: 2px solid #ddd;
    overflow: hidden;
    text-align: justify;
}
.item:nth-child(2n+1){
    margin-right: 4%;
}
.item-img-box{
    width: 100%;
    height: 2.6rem;
    position: relative;
    overflow: hidden;
}
.item-img{
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.3s ease-in-out;
}
.item:hover .item-img{
    transform: scale(1.1);
}
.title{
    font-size: 0.18rem;
    box-sizing: border-box;
    padding: 0.12rem 0.2rem;
    line-height: 0.26rem;
    border-bottom: 0.03rem solid #e2e2e2;
    text-align: left;
    background: #fff;
}
.tip,.time{
    position: relative;
    background: #fff;
    padding: 0.15rem 0.2rem 0;
    box-sizing: border-box;
    color: #7a7e81;
    font-size: 0.12rem;
    text-align: left;
    line-height: 0.2rem;
}
.time{
    text-align: right;
    padding: 0 0.25rem 0.15rem;
    min-height: 0.3rem;
}
@media (max-width: 767px){
    html{
        font-size: 90px;
    }
    .item{
        width: 100%;
        margin-bottom: 0.3rem;
    }
    .item:nth-child(2n+1){
        margin-right: auto;
    }
    .nav{
        margin-top: 0.1rem;
    }
}
