You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

201 lines
2.7 KiB

/* CSS Document */
* {
margin: 0;
padding: 0;
font-family: 'Microsoft Yahei', Arial, Verdana, sans-serif;
}
html {
width: 100%;
height: 100%;
overflow: hidden;
}
body {
height: 100%;
width: 100%;
color: #4c4c4c;
font-size: 14px;
}
.statwrap {
padding: 1.5% 1%;
width: 100%;
height: 100%;
box-sizing: border-box;
}
.headtit {
height: 3rem;
}
.seltime {
display: flex;
position: absolute;
top: 110px;
right: 1%;
align-items: center;
width: 67%;
}
.seltime > i {
display: inline-block;
margin: 0 5px 0 0;
width: 24px;
height: 24px;
background: url(../images/icon_can.png) no-repeat;
background-size: 100%;
opacity: .5;
}
.seltime > span {
display: inline-block;
margin: 0 10px;
}
.seltime > span > select {
display: inline-block;
margin: 0 8px 0 0;
padding: 6px;
background: #FFFFFF none;
border: 1px solid #e5e6e7;
border-radius: 6px;
}
.statit {
display: flex;
margin: 1% 0;
width: 60%;
}
.statit > span {
display: inline-block;
margin: 1% 2% 0 0;
min-width: 6%;
height: 2.25rem;
line-height: 1.75;
color: rgba(0,0,0,0.4);
font-size: 1.15rem;
font-weight: 600;
text-align: center;
white-space: nowrap;
cursor: pointer;
}
.statit>span.actit {
background: url(../images/sel_tab.png) no-repeat center bottom;
border-bottom: 3px solid rgba(12, 94, 249,1);
color: rgb(12, 94, 249);
}
.tab_item {
display: none;
position: relative;
margin: 2.0rem 0 0;
height: calc(100% - 9rem);
clear: both;
}
.desktab {
margin: auto;
border: 1px solid #ddd;
border-bottom: 0;
border-right: 0;
table-layout: fixed;
}
.desktab tr {
border-bottom: 1px solid #ddd;
}
.desktab tr:last-child {
border-bottom: 0;
}
.desktab td, .desktab th, .noborder td {
padding: 8px 20px;
height: 42px;
border: 1px solid #ddd;
border-top: 0;
border-left: 0;
color: #666;
line-height: 20px;
word-break: keep-all;
white-space: nowrap;
text-overflow: ellipsis;
text-align: center;
overflow: hidden;
}
.trodd th {
height: 40px;
background: #eaebec;
color: #4c4c4c;
}
.line-clamp {
height: 20px;
overflow: hidden;
white-space: nowrap;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
text-align: left;
text-overflow: ellipsis;
}
.listhead {
width: 100%;
}
.listbody {
position: relative;
height: calc(100% - 60px);
overflow: hidden;
}
.inner {
position: absolute;
left: 0;
top: 0;
right: -6px;
bottom: 0;
overflow-x: hidden;
overflow-y: scroll;
}
.chartbox {
float: left;
margin: 2% 2%;
width: 45%;
height: 90%;
}
/** 滚动条样式 **/
::-webkit-scrollbar-track {
background-color: #F5F5F5;
}
::-webkit-scrollbar {
width: 6px;
height: 10px;
background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb {
border-radius: 6px;
background-color: #999;
}