12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- @charset "UTF-8";
- /* 需要放到文件最上面 */
- /* 水平间距 */
- /* 水平间距 */
- /*
- 以下变量是默认值,如不需要修改可以不用给下面的变量重新赋值
- */
- /* 水平间距 */
- .me-tabs {
- position: relative;
- background-color: #fff;
- box-sizing: border-box;
- overflow-y: hidden;
- height: 96rpx;
- }
- .me-tabs.tabs-fixed {
- z-index: 990;
- position: fixed;
- top: 0px;
- left: 0;
- width: 100%;
- }
- .me-tabs .tabs-item {
- position: relative;
- white-space: nowrap;
- box-sizing: border-box;
- }
- .me-tabs .tabs-flex {
- display: flex;
- }
- .me-tabs .tabs-flex .tab-item {
- margin-right: 20rpx;
- position: relative;
- color: #08979c;
- position: relative;
- text-align: center;
- box-sizing: border-box;
- height: 96rpx;
- display: flex;
- align-items: center;
- }
- .me-tabs .tabs-flex .tab-item:last-child {
- margin-right: 0px;
- color: #8c8c8c;
- }
- .me-tabs .tabs-flex .tab-item .inherit-icons {
- margin-left: 20rpx;
- }
- .me-tabs .tabs-flex .tab-item .line {
- width: 40rpx;
- }
|