12345678910111213141516171819202122232425262728293031323334353637 |
- .active{
- border-bottom: #3da9f1 1px solid;
- background-color: #eee;
- }
- .active-tab {
- display: -webkit-box;
- width: 100%;
- background-color: #ffffff;
- height: 42px;
- box-sizing: border-box;
- }
- .active-tab .tab-item {
- display: -webkit-box;
- -webkit-box-flex: 1;
- height: 30px;
- margin-top: 6px;
- /* padding: 0px 14%; */
- width: 20px;
- }
- .active-tab .tab-item div {
- display:-webkit-box;
- width: 100%;
- height: 100%;
- -webkit-box-pack: center;
- -webkit-box-align: center;
- font-size: 15px;
- cursor:pointer;
- }
- .active-tab .tab-item div.active {
- border-bottom: 2px solid #3da9f1;
- }
- .tabStyle{
- white-space:nowrap;
- }
|