12345678910111213141516171819202122232425262728293031323334353637 |
- /* custom-tab-bar/index.wxss */
- .head {
- position: fixed;
- z-index: 1;
- width: 100%;
- height: 33px;
- line-height: 33px;
- background-color: #fff;
- top: 0;
- display: flex;
- }
- .item {
- flex: 1;
- background-color: #fff;
- text-align: center;
- box-sizing: border-box;
- }
- .text {
- color: #646566;
- height: 2em;
- line-height: 2em;
- font-size: 14px;
- display: inline-block;
- }
- .line {
- width: 4em;
- height: 5rpx;
- margin: 0 auto;
- background-color: #1989fa;
- }
- .act {
- color: #1989fa;
- }
|