117 lines
2.0 KiB
CSS
117 lines
2.0 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 .active i,
|
|
.footer li .active p{
|
|
color: var(--themeColor);
|
|
}
|
|
.footer li a {}
|
|
.footer li a i {}
|
|
.footer li a p{
|
|
|
|
font-size: 0.24rem;
|
|
margin-top: 0.04rem;
|
|
}
|
|
|
|
.content {
|
|
margin-top: .9rem;
|
|
margin-bottom: 1rem;
|
|
height: 100vh;
|
|
}
|
|
|
|
|
|
.list {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: .16rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
.list .item {
|
|
width: 49%;
|
|
margin-bottom: .24rem;
|
|
}
|
|
.list .item .img {
|
|
position: relative;
|
|
}
|
|
.list .item .img img {
|
|
width: 100%;
|
|
}
|
|
.list .item .img span {
|
|
position: absolute;
|
|
z-index: 1;
|
|
color: #fff;
|
|
right: .2rem;
|
|
bottom: .28rem;
|
|
font-size: .24rem;
|
|
background: var(--themeColor);
|
|
padding: .06rem .18rem;
|
|
border-radius: .6rem;
|
|
}
|
|
|
|
.list .item .text{}
|
|
.list .item .text .title{
|
|
font-size: 0.34rem;
|
|
font-weight: 400;
|
|
margin-top: 0.2rem;
|
|
}
|
|
.list .item .text .model,
|
|
.list .item .text .mechanism{
|
|
font-size: 0.28rem;
|
|
color: #bdb7b7;
|
|
}
|
|
|
|
.list .item .tags{
|
|
margin-top: 0.1rem;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
.list .item .tags a{
|
|
font-size: 0.24rem;
|
|
flex-shrink: 0;
|
|
padding: 0.08rem 0.18rem;
|
|
background: var(--themeColor);
|
|
margin-right: 0.1rem;
|
|
color: #fff;
|
|
border-radius: 0.2rem;
|
|
margin-bottom: 0.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 .2rem;
|
|
box-sizing: border-box;
|
|
}
|
|
.pub_title i {
|
|
font-size: .4rem;
|
|
}
|
|
.pub_title span {
|
|
font-size: .36rem;
|
|
flex: 1;
|
|
margin-left: 0.28rem;
|
|
margin-right: 0.18rem;
|
|
} |