1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- .footer-box {
- width: 100%;
- height: .6rem;
- background-color: #292929;
- ul {
- width: 100%;
- height: 100%;
- padding-bottom: 0.12rem;
- display: flex;
- flex-direction: row;
- align-items: flex-end;
- li {
- position: relative;
- z-index: 10;
- width: 20%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
-
- &.active {
- .icon-box {
- position: relative;
-
- span {
- color: #ff6a01;
- }
- }
- label {
- color: #ff6a01;
- }
- }
- .icon-box {
- position: relative;
- width: 100%;
- height: auto;
- display: flex;
- align-items: center;
- justify-content: center;
- span {
- font-size: .18rem;
- color: #a7a7a7;
- }
- .icon-afiliado {
- width: .55rem;
- height: .55rem;
- background: url('/img/iconTab/afiliado.png') no-repeat;
- background-size: 100%;
- margin-bottom: .05rem;
- }
- .icon-rs {
- position: absolute;
- bottom: -0.03rem;
- right: 0.05rem;
- font-size: .12rem;
- width: .25rem;
- height: .3rem;
- background: url('/img/iconTab/rs.png') no-repeat;
- background-size: 100%;
- }
- .icon-hot {
- position: absolute;
- top: -0.02rem;
- right: 0.02rem;
- font-size: .12rem;
- width: .25rem;
- height: .25rem;
- background: url('/img/iconTab/hot.png') no-repeat;
- background-size: 100%;
- font-weight: normal;
- }
- }
- label {
- font-size: .1rem;
- color: #a7a7a7;
- }
- }
- }
- }
|