37 lines
516 B
Plaintext
37 lines
516 B
Plaintext
.container{
|
|
width: 100%;
|
|
height: 100vh;
|
|
}
|
|
map{
|
|
width: 100%;
|
|
height: 45%;
|
|
}
|
|
.list-box{
|
|
width: 100%;
|
|
height: 25%;
|
|
}
|
|
.list-ul{
|
|
width: 100%;
|
|
height: 30%;
|
|
background: chocolate;
|
|
overflow: auto;
|
|
}
|
|
.list-dk-title{
|
|
text-align: center;
|
|
line-height: 40px;
|
|
}
|
|
.list-dk-ul{
|
|
width: 95%;
|
|
height: calc(100% - 45px);
|
|
margin: 0 auto;
|
|
border-top: 1px solid #ccc;
|
|
border-bottom: 1px solid #ccc;
|
|
overflow: auto;
|
|
}
|
|
.list-dk-li{
|
|
width: 90%;
|
|
line-height: 40px;
|
|
margin: 0 auto;
|
|
font-size: 16px;
|
|
}
|