12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- .cl-tabbar {
- /* #ifndef MP-TOUTIAO */
- display: flex;
- /* #endif */
- width: 100%;
- z-index: 100;
- position: relative;
- border-top-width: 1rpx;
- border-top-style: solid;
- padding-bottom: env(safe-area-inset-bottom);
- cl-tabbar-item {
- flex: 1;
- }
- &-item {
- display: inline-flex;
- justify-content: center;
- align-items: center;
- height: 100%;
- width: 100%;
- box-sizing: border-box;
- position: relative;
- float: left;
- &__block {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- &__label {
- font-size: 24rpx;
- }
- &__image {
- &.selected-icon-path {
- display: none;
- }
- }
- .cl-badge {
- padding: 3rpx 10rpx;
- }
- &.is-active {
- .cl-tabbar-item__image {
- &.selected-icon-path {
- display: block;
- }
- &.icon-path {
- display: none;
- }
- }
- }
- }
- }
|