123456789101112131415161718192021222324252627282930313233 |
- .topCaseInfo{
- align-items: center;
- background: rgba(0, 0, 0, .3);
- padding: .05rem 0;
- &>*{
- margin-left: .05rem;
- line-height: .2rem;
- font-size: .12rem;
- color: #fff;
- }
- i{
- font-size: .15rem;
- }
- a{
- color: #fb6b2f;
- text-decoration: underline;
- margin-left: .1rem;
- }
- &>*:first-child{
- margin-left: .2rem;
- }
- &>div{
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin: 0 .2rem 0 .2rem;
- font-size: 0;
- span{
- font-size: .12rem;
- color: #fff;
- }
- }
- }
|