tabbar.wxss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /* page{
  2. background: #FFF;
  3. } */
  4. .tabbar-view{
  5. position: fixed;
  6. width: 100%;
  7. background: #FFF;
  8. bottom: 0;
  9. display: flex;
  10. height: 119rpx;
  11. padding-top: 20rpx;
  12. border-top: 1rpx solid #EEE;
  13. color: #CCC;
  14. z-index: 999999;
  15. }
  16. .tabbar-view .tabber-view-nav{
  17. text-align: center;
  18. margin: 0 auto;
  19. font-size: 24rpx;
  20. position: relative;
  21. }
  22. .titleImg{
  23. height: 50rpx;
  24. width: 50rpx;
  25. }
  26. .curTitle{
  27. color: #cc6031;
  28. }
  29. .isAppleStyle{
  30. padding-bottom: 20rpx;
  31. }
  32. .liveShow{
  33. font-size: 36rpx;
  34. width: 120rpx;
  35. line-height: 120rpx;
  36. border: 1px solid #EEE;
  37. background: linear-gradient(90deg, rgba(236, 58, 78, 1) 0%, rgba(255, 115, 115, 1) 100%);
  38. color: #FFF;
  39. border-radius: 100rpx;
  40. position: relative;
  41. top: -20rpx;
  42. box-shadow: 0 0 10rpx #999;
  43. top: -60rpx;
  44. }
  45. .liveShowBg{
  46. width: 120rpx;
  47. height: 120rpx;
  48. border-radius: 50%;
  49. position: absolute;
  50. top: 0;
  51. left: 0;
  52. animation: pulse 3s infinite;
  53. }
  54. @keyframes pulse {
  55. 0% {
  56. box-shadow: 0 0 4px 2px #fff;
  57. }
  58. 50% {
  59. box-shadow: 0 0 4px 2px #EC3A4E;
  60. }
  61. 100% {
  62. box-shadow: 0 0 4px 2px #fff;
  63. }
  64. }
  65. .nav-item{
  66. position: absolute;
  67. left: 0;
  68. width: 100% !important;
  69. top: 0;
  70. height: 100%;
  71. padding: 0 !important;
  72. opacity: 0;
  73. }