style.scss 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. .footer-box {
  2. position: fixed;
  3. bottom: 0;
  4. z-index: 10;
  5. width: 100vw;
  6. max-width: 4.02rem;
  7. height: .6rem;
  8. background-color: #292929;
  9. ul {
  10. width: 100%;
  11. height: 100%;
  12. padding-bottom: 0.12rem;
  13. display: flex;
  14. flex-direction: row;
  15. align-items: flex-end;
  16. li {
  17. position: relative;
  18. width: 20%;
  19. display: flex;
  20. flex-direction: column;
  21. justify-content: center;
  22. align-items: center;
  23. &.active {
  24. .icon-box {
  25. position: relative;
  26. span {
  27. color: #ff6a01;
  28. }
  29. }
  30. label {
  31. color: #ff6a01;
  32. }
  33. }
  34. .icon-box {
  35. position: relative;
  36. width: 100%;
  37. height: auto;
  38. display: flex;
  39. align-items: center;
  40. justify-content: center;
  41. span {
  42. font-size: .18rem;
  43. color: #a7a7a7;
  44. }
  45. .icon-afiliado {
  46. width: .55rem;
  47. height: .55rem;
  48. background: url('/img/iconTab/afiliado.png') no-repeat;
  49. background-size: 100%;
  50. margin-bottom: .05rem;
  51. }
  52. .icon-rs {
  53. position: absolute;
  54. bottom: -0.03rem;
  55. right: 0.05rem;
  56. font-size: .12rem;
  57. width: .25rem;
  58. height: .3rem;
  59. background: url('/img/iconTab/rs.png') no-repeat;
  60. background-size: 100%;
  61. }
  62. .icon-hot {
  63. position: absolute;
  64. top: -0.02rem;
  65. right: 0.02rem;
  66. font-size: .12rem;
  67. width: .25rem;
  68. height: .25rem;
  69. background: url('/img/iconTab/hot.png') no-repeat;
  70. background-size: 100%;
  71. font-weight: normal;
  72. }
  73. }
  74. label {
  75. font-size: .1rem;
  76. color: #a7a7a7;
  77. }
  78. }
  79. }
  80. }