39 lines
892 B
Plaintext
39 lines
892 B
Plaintext
![]() |
.sel{
|
||
|
margin-bottom: 10px;
|
||
|
width:13%;
|
||
|
}
|
||
|
.tablist{
|
||
|
display: flex;
|
||
|
flex-direction:row;
|
||
|
flex-wrap: nowrap;
|
||
|
justify-content:flex-start;
|
||
|
align-items:center;
|
||
|
// width:100%;
|
||
|
height:50px;
|
||
|
background: #FFFFFF;
|
||
|
color:#F62A2B;
|
||
|
border-radius: 3px;
|
||
|
box-sizing: border-box;
|
||
|
.tab{
|
||
|
// width:220px;
|
||
|
box-sizing: border-box;
|
||
|
cursor: pointer;
|
||
|
background: #FFFFFF;
|
||
|
color:#F62A2B;
|
||
|
height:50px;
|
||
|
// float:left;
|
||
|
width: max-content;
|
||
|
display: block;
|
||
|
position: relative;
|
||
|
text-align: center;
|
||
|
line-height: 50px;
|
||
|
font-size: 15px;
|
||
|
border:1px solid rgba(174, 174, 174, 1);
|
||
|
border-radius: 3px;
|
||
|
&:hover{
|
||
|
transition:background 0.3s;
|
||
|
background: #F62A2B !important;
|
||
|
color:#FFFFFF !important;
|
||
|
}
|
||
|
}
|
||
|
}
|