25 lines
362 B
CSS
25 lines
362 B
CSS
/* 公共css */
|
|
.padding {
|
|
padding-left: 0.725rem;
|
|
padding-right: 0.75rem;
|
|
}
|
|
|
|
.flex {
|
|
display: flex;
|
|
}
|
|
.flex-align-items {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
|
|
.bottom-line::after {
|
|
content: "";
|
|
position: absolute;
|
|
width: 100%;
|
|
left: 0;
|
|
bottom: 0;
|
|
height: 1px;
|
|
background: #ededed;
|
|
transform: scaleY(0.5);
|
|
} |