47 lines
883 B
CSS
47 lines
883 B
CSS
.header {
|
|
position: fixed;
|
|
height: .9rem;
|
|
line-height: 0.9rem;
|
|
top: 0;
|
|
left: 0;
|
|
background: #fff;
|
|
width: 100%;
|
|
padding-left: 0.57rem;
|
|
padding-right: 0.63rem;
|
|
box-sizing: border-box;
|
|
border-bottom: 0.01rem solid #e5e5e5;
|
|
}
|
|
.header .active {
|
|
color: #333;
|
|
}
|
|
.header .active::after {
|
|
content: "";
|
|
width: 0.24rem;
|
|
height: 0.05rem;
|
|
background: #d0302c;
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
}
|
|
.header li {
|
|
color: #999;
|
|
font-size: 0.3rem;
|
|
float: left;
|
|
width: 33.3%;
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
.content {
|
|
margin-top: .9rem;
|
|
}
|
|
.new_list {}
|
|
.new_list li {
|
|
font-size: 0.32rem;
|
|
color: #333333;
|
|
height: 1.2rem;
|
|
background-color: #ffffff;
|
|
line-height: 1.2rem;
|
|
padding-left: 0.61rem;
|
|
border-bottom: 0.01rem solid #e5e5e5;
|
|
} |