74 lines
1.3 KiB
CSS
74 lines
1.3 KiB
CSS
|
|
body,
|
||
|
|
html {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
float: left;
|
||
|
|
background-color: #F2F2F2;
|
||
|
|
}
|
||
|
|
* {
|
||
|
|
scrollbar-width: thin; /* 或者auto, none */
|
||
|
|
scrollbar-color: #888 #f1f1f1;
|
||
|
|
}
|
||
|
|
.header-left{
|
||
|
|
width: 20%;
|
||
|
|
height: 100%;
|
||
|
|
display: flex;
|
||
|
|
justify-content: center;
|
||
|
|
align-items: center;
|
||
|
|
margin-right: 5%;
|
||
|
|
}
|
||
|
|
.select-box{
|
||
|
|
width: 40%;
|
||
|
|
height: 100%;
|
||
|
|
display: flex;
|
||
|
|
justify-content: center;
|
||
|
|
align-items: center;
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
.header-right{
|
||
|
|
width: 60%;
|
||
|
|
height: 100%;
|
||
|
|
display: flex;
|
||
|
|
/*justify-content: center;*/
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
.tab-box{
|
||
|
|
width: 60%;
|
||
|
|
margin-left: 5%;
|
||
|
|
height: 100% !important;
|
||
|
|
border: 0px !important;
|
||
|
|
}
|
||
|
|
.layui-tab .layui-tab-title{
|
||
|
|
display: flex;
|
||
|
|
}
|
||
|
|
.layui-tab .layui-tab-title li{
|
||
|
|
position: relative;
|
||
|
|
margin: 0;
|
||
|
|
padding: 0 15px;
|
||
|
|
text-align: center;
|
||
|
|
line-height: normal;
|
||
|
|
cursor: pointer;
|
||
|
|
height: 100% !important;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
}
|
||
|
|
.layui-tab .layui-tab-title li img{
|
||
|
|
width: 16px;
|
||
|
|
height: 16px;
|
||
|
|
}
|
||
|
|
.layui-this{
|
||
|
|
font-weight: bold!important;
|
||
|
|
color: #fff!important;
|
||
|
|
background-color: #F56C6C;
|
||
|
|
}
|
||
|
|
.layui-tab-title .layui-this:after{
|
||
|
|
|
||
|
|
height:100%!important;
|
||
|
|
}
|
||
|
|
.layui-tab-item{
|
||
|
|
height: 100%;
|
||
|
|
}
|