33 lines
596 B
CSS
33 lines
596 B
CSS
.active {
|
|
color: #0089dc !important;
|
|
}
|
|
.margin {
|
|
margin-left: 0.23rem;
|
|
margin-right : 0.25rem;
|
|
}
|
|
.text {
|
|
font-size: 11px;
|
|
transform: scale(0.9);
|
|
color: #666;
|
|
display: inline-block;
|
|
}
|
|
.line::after {
|
|
content: "";
|
|
width: calc(100% + 0.23rem + 0.25rem);
|
|
height: 0.16rem;
|
|
background-color: #f3f3f3;
|
|
display: inline-block;
|
|
position: absolute;
|
|
left: -0.23rem;
|
|
right: -0.25rem;
|
|
bottom: -0.54rem;
|
|
}
|
|
|
|
.title {
|
|
height: 1.01rem;
|
|
background-color: #ffffff;
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 0.32rem;
|
|
color: #333333;
|
|
} |