126 lines
2.2 KiB
CSS
126 lines
2.2 KiB
CSS
.ellipsis {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.content {
|
|
margin-top: 0.9rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
.footer {
|
|
justify-content: space-around;
|
|
display: flex;
|
|
height: 1rem;
|
|
align-items: center;
|
|
position: fixed;
|
|
border-top: 0.02rem solid #e2e2e2;
|
|
width: 100%;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 99;
|
|
background: var(--whiteColor);
|
|
}
|
|
.footer li {
|
|
text-align: center;
|
|
}
|
|
.footer .active a {
|
|
color: var(--themeColor);
|
|
}
|
|
.footer li i{}
|
|
.footer li p{
|
|
font-size: 0.24rem;
|
|
margin-top: 0.04rem;
|
|
}
|
|
|
|
.swiper-slide {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 0.3rem;
|
|
box-sizing: border-box;
|
|
flex-wrap: wrap;
|
|
|
|
height: calc(100vh - 80px - 51px) !important;
|
|
overflow-y: scroll;
|
|
}
|
|
.list_item {
|
|
flex-shrink: 0;
|
|
width: 48%;
|
|
margin-bottom: 0.3rem;
|
|
}
|
|
.list_img {
|
|
position: relative;
|
|
height: 4.9677999999999995rem;
|
|
}
|
|
.list_img img {
|
|
width: 100%;
|
|
border-radius: 0.14rem;
|
|
height: 100%;
|
|
}
|
|
.list_img span {
|
|
bottom: 0.1rem;
|
|
right: 0.16rem;
|
|
position: absolute;
|
|
font-size: 0.24rem;
|
|
background: var(--themeColor);
|
|
color: #fff;
|
|
padding: 0.02rem 0.12rem;
|
|
border-radius: 0.16rem;
|
|
}
|
|
.list_title {
|
|
font-size: 0.34rem;
|
|
font-weight: 400;
|
|
margin-top: 0.2rem;
|
|
}
|
|
.list_model,
|
|
.list_source{
|
|
font-size: 0.28rem;
|
|
color: #bdb7b7;
|
|
}
|
|
.list_source {
|
|
}
|
|
.list_tags {
|
|
margin-top: 0.1rem;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
.list_tags .list_tags_item {
|
|
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_header {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
width: 100%;
|
|
background: var(--themeColor);
|
|
height: 0.9rem;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 0 0.3rem;
|
|
box-sizing: border-box;
|
|
justify-content: space-between;
|
|
z-index: 999;
|
|
}
|
|
.pub_header .left {
|
|
width: 93%;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.pub_header i {
|
|
color: var(--whiteColor);
|
|
}
|
|
.pub_header span {
|
|
font-size: 15px;
|
|
color: var(--whiteColor);
|
|
margin-left: 11px;
|
|
flex: 1;
|
|
} |