40 lines
646 B
CSS
40 lines
646 B
CSS
.header{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 4rem;
|
|
flex-direction: column;
|
|
background: #fb7299;
|
|
}
|
|
.header i{
|
|
font-size: 1.2rem;
|
|
margin-bottom: 0.2rem;
|
|
color: #fff;
|
|
}
|
|
.header p{
|
|
font-size: 0.32rem;
|
|
color: #fff;
|
|
}
|
|
.content ul{
|
|
margin-top: 0.2rem;
|
|
}
|
|
.list_item a {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 0 0.3rem;
|
|
height: 0.96rem;
|
|
}
|
|
.item_left {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.item_left .iconfont {
|
|
font-size: 0.4rem;
|
|
margin-right: 0.2rem;
|
|
}
|
|
.item_left span {
|
|
font-size: 0.3rem;
|
|
}
|
|
|