155 lines
2.8 KiB
CSS
155 lines
2.8 KiB
CSS
.header {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
z-index: 999;
|
|
width: 100%;
|
|
|
|
height: 1rem;
|
|
background-color: #000000;
|
|
opacity: 0.7;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding-left: 0.24rem;
|
|
padding-right: 0.4rem;
|
|
box-sizing: border-box;
|
|
}
|
|
.header img {
|
|
height: 0.65rem;
|
|
}
|
|
.header .open {
|
|
width: 1.44rem;
|
|
height: 0.52rem;
|
|
background-color: #d0302c;
|
|
border-radius: 0.08rem;
|
|
font-size: 0.24rem;
|
|
color: #ffffff;
|
|
text-align: center;
|
|
line-height: 0.52rem;
|
|
}
|
|
|
|
.content {
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.banner {
|
|
height: 10.07rem;
|
|
position: relative;
|
|
}
|
|
.banner img {
|
|
height: 100%;
|
|
}
|
|
.banner .page{
|
|
width: 1rem;
|
|
height: 0.48rem;
|
|
background-color: rgb(0 0 0 / 60%);
|
|
border-radius: 0.24rem;
|
|
font-size: 0.28rem;
|
|
color: #ffffff;
|
|
text-align: center;
|
|
line-height: 0.48rem;
|
|
position: absolute;
|
|
right: 0.4rem;
|
|
bottom: 0.47rem;
|
|
}
|
|
|
|
.user_info {
|
|
padding-top: 0.17rem;
|
|
padding-bottom: 0.44rem;
|
|
border-bottom: 0.16rem solid #f3f3f3;
|
|
}
|
|
.user_info .user_wrap {
|
|
display: flex;
|
|
margin-bottom: 0.24rem;
|
|
}
|
|
.user_info .text {
|
|
font-size: 0.32rem;
|
|
line-height: 0.5rem;
|
|
color: #333333;
|
|
}
|
|
.user_info .user_wrap img{
|
|
width: 0.72rem;
|
|
height: 0.72rem;
|
|
margin-right: 0.16rem;
|
|
}
|
|
.user_info .user_wrap .user_name{}
|
|
.user_info .user_wrap .user_name .title{
|
|
font-size: 0.28rem;
|
|
color: #333333;
|
|
margin-bottom: 0.05rem;
|
|
}
|
|
.user_info .user_wrap .user_name .time{
|
|
font-size: 0.24rem;
|
|
color: #999999;
|
|
}
|
|
|
|
.comment {}
|
|
.comment .title {
|
|
height: 1.01rem;
|
|
background-color: #ffffff;
|
|
line-height: 1.01rem;
|
|
font-size: 0.32rem;
|
|
color: #333333;
|
|
padding-left: 0.24rem;
|
|
}
|
|
.comment_list {}
|
|
.comment_list li {
|
|
display: flex;
|
|
margin-bottom: 0.4rem;
|
|
padding-top: 0.3rem;
|
|
}
|
|
.comment_list li .user_ava{
|
|
width: 0.7rem;
|
|
height: 0.71rem;
|
|
margin-right: 0.2rem;
|
|
}
|
|
.comment_list li .list_text{
|
|
flex: 1;
|
|
}
|
|
.list_text .text_user{}
|
|
.list_text .text_user .user_title{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 0.1rem;
|
|
}
|
|
.list_text .text_user .user_title span{
|
|
font-size: 0.28rem;
|
|
color: #333333;
|
|
}
|
|
.list_text .text_user .user_title .zan{
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.list_text .text_user .user_title .zan img{
|
|
width: 0.26rem;
|
|
height: 0.27rem;
|
|
margin-right: 0.1rem;
|
|
}
|
|
.list_text .text_user .user_title .zan span{
|
|
font-size: 0.24rem;
|
|
color: #999999;
|
|
}
|
|
.list_text .text_user .time{
|
|
font-size: 0.2rem;
|
|
color: #999999;
|
|
margin-bottom: 0.38rem;
|
|
}
|
|
.list_text .text_content{
|
|
font-size: 0.28rem;
|
|
line-height: 0.42rem;
|
|
color: #333333;
|
|
}
|
|
|
|
.all_comment {
|
|
width: 7.02rem;
|
|
height: 0.88rem;
|
|
border-radius: 0.08rem;
|
|
border: solid 0.02rem #d0302c;
|
|
margin: 0 auto 0.4rem;
|
|
font-size: 0.28rem;
|
|
line-height: 0.88rem;
|
|
color: #d0302c;
|
|
text-align: center;
|
|
} |