12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- .footer-box {
- width: 100%;
- height: auto;
- background-color: #292929;
- display: flex;
- flex-direction: column;
- ul {
- width: 100%;
- height: .6rem;
- 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;
- }
- }
- }
- }
|