1234567891011121314151617181920212223242526272829 |
- .footer-box {
- width: 100%;
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: end;
- .text {
- height: .81rem;
- background-color: #131212;
- color: #7d7d7d;
- font-size: .12rem;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
- padding: 0 .36rem;
- .iconfontIcon {
- color: #e53535;
- font-size: .18rem;
- }
- }
- }
|