107 lines
1.5 KiB
CSS
107 lines
1.5 KiB
CSS
@import "./config.css";
|
|
.footer{
|
|
|
|
position: fixed;
|
|
bottom: 0;
|
|
height: 1rem;
|
|
width: 100%;
|
|
background: var(--whiteColor);
|
|
z-index: 999;
|
|
left: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
}
|
|
.footer li{
|
|
text-align: center;
|
|
}
|
|
.footer li img{
|
|
width: 20%;
|
|
|
|
|
|
}
|
|
.footer li p{
|
|
font-size: .2rem;
|
|
margin-top: .06rem;
|
|
color: #08080822;
|
|
user-select: none;
|
|
}
|
|
|
|
.footer li .active {
|
|
color: black
|
|
}
|
|
|
|
.content {
|
|
margin-top: .9rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
|
|
|
|
.pub_title {
|
|
width: 100%;
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
height: .9rem;
|
|
background: var(--themeColor);
|
|
color: #fff;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0 .16rem;
|
|
box-sizing: border-box;
|
|
}
|
|
.pub_title i {
|
|
font-size: .4rem;
|
|
color: var( --blackColor);
|
|
font-weight: bolder;
|
|
|
|
|
|
}
|
|
.pub_title span {
|
|
font-size: .3rem;
|
|
|
|
|
|
color: var( --blackColor);
|
|
|
|
}
|
|
|
|
|
|
.item_fz {
|
|
width: 49%;
|
|
/* background: red; */
|
|
margin-bottom: 0.9rem;
|
|
}
|
|
|
|
.item_fz .img {
|
|
width: 100%;
|
|
margin-bottom: .3rem;
|
|
}
|
|
|
|
.item_fz .img img {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: .4rem;
|
|
}
|
|
|
|
.item_fz p {
|
|
font-size: .3rem;
|
|
color: black;
|
|
margin-bottom: 0.2rem;
|
|
}
|
|
.user_info{
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.user_info img {
|
|
width: 0.7rem;
|
|
height: 0.7rem;
|
|
margin-right: 0.2rem;
|
|
border-radius: 1rem;
|
|
}
|
|
.user_info span{
|
|
font-size: .24rem;
|
|
color: #999;
|
|
}
|