58 lines
1.1 KiB
CSS
58 lines
1.1 KiB
CSS
body,html{
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
float: left;
|
|
/*background-image: url(../../../../img/home/menu/background.png);
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;*/
|
|
}
|
|
#title{
|
|
width: 100%;
|
|
height: 5%;
|
|
float: left;
|
|
font-size: 23px;
|
|
line-height:40px;
|
|
text-align: center;
|
|
color: #fff;
|
|
background-color: #293861;
|
|
}
|
|
#mapContent{
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
#mapDiv{
|
|
width: 100%;
|
|
height: 95%;
|
|
float: left;
|
|
margin-bottom: 0.8%;
|
|
}
|
|
#photo{
|
|
position: absolute;
|
|
top: 5.2%;
|
|
width: 30%;
|
|
height: 30%;
|
|
z-index: 99;
|
|
}
|
|
#photo img{
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.fixed-table-body::-webkit-scrollbar {/*滚动条整体样式*/
|
|
width: 10px; /*高宽分别对应横竖滚动条的尺寸*/
|
|
height: 10px;
|
|
}
|
|
.fixed-table-body::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
|
|
border-radius: 10px;
|
|
-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
|
|
background: #2A9D9D;
|
|
}
|
|
.fixed-table-body::-webkit-scrollbar-track {/*滚动条里面轨道*/
|
|
-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
|
|
border-radius: 10px;
|
|
background: #121B1C;
|
|
}
|
|
.fixed-table-body::-webkit-scrollbar-corner {
|
|
} |