75 lines
909 B
CSS
75 lines
909 B
CSS
|
|
body{
|
|
max-width: 750px;
|
|
min-width: 320px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.main-content{
|
|
margin: 0.24rem;
|
|
padding: 0.24rem;
|
|
|
|
}
|
|
|
|
.title{
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 0.36rem;
|
|
}
|
|
|
|
.introduce{
|
|
flex-direction: column;
|
|
display: flex;
|
|
}
|
|
|
|
.introduce div{
|
|
font-size: 0.12rem;
|
|
}
|
|
|
|
.name{
|
|
margin-bottom: 0.1rem;
|
|
}
|
|
|
|
.time{
|
|
margin-right: .5rem;
|
|
}
|
|
|
|
.avatar{
|
|
width: 0.8rem;
|
|
height: 0.8rem;
|
|
border-radius: 5rem;
|
|
margin-right: 0.2rem;
|
|
}
|
|
.pointTitle{
|
|
display: block;
|
|
font-size: 0.30rem;
|
|
font-weight: 700;
|
|
margin-bottom: 0.24rem;
|
|
}
|
|
|
|
.articleContent{
|
|
width: 100%;
|
|
min-height: 10rem;
|
|
background: rgba(242, 242, 242,0.4);
|
|
margin-bottom: 0.48rem;
|
|
position: relative;
|
|
padding: 0.12rem;
|
|
font-size: 0.36rem;
|
|
}
|
|
.articleContent p{
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
.footer{
|
|
padding: 0.12rem 0;
|
|
|
|
}
|
|
.footer div{
|
|
word-break: break-all;
|
|
font-size: 0.12rem;
|
|
line-height: 0.30rem;
|
|
}
|
|
|