45 lines
787 B
CSS
45 lines
787 B
CSS
.my_head{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 4rem;
|
|
flex-direction: column;
|
|
background: #fb7299;
|
|
}
|
|
.my_head i{
|
|
font-size: 1.2rem;
|
|
margin-bottom: 0.2rem;
|
|
color: #fff;
|
|
}
|
|
.my_head p{
|
|
font-size: 0.32rem;
|
|
color: #fff;
|
|
}
|
|
.my_content{
|
|
padding-bottom: 1rem;
|
|
}
|
|
.my_content li:first-child{
|
|
margin-top: 0.2rem;
|
|
}
|
|
.my_content li a{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 0 0.3rem;
|
|
height: 0.96rem;
|
|
}
|
|
.my_content_li_left{
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.my_content_li_left i{
|
|
font-size: 0.4rem;
|
|
margin-right: 0.2rem;
|
|
}
|
|
.my_content_li_left p{
|
|
font-size: 0.3rem;
|
|
}
|
|
.my_content_li_right{
|
|
font-size: 0.28rem;
|
|
color: #c3c0c0;
|
|
} |