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.
48 lines
693 B
48 lines
693 B
3 years ago
|
.box {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
background: #fff;
|
||
|
font-size: 15px;
|
||
|
color: black;
|
||
|
box-sizing: border-box;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
overflow-y: auto;
|
||
|
}
|
||
|
|
||
|
.imgbox {
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
align-content: flex-start;
|
||
|
}
|
||
|
|
||
|
.imageItemBox {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
width: 220px;
|
||
|
border: 1px solid #F2F2F2;
|
||
|
margin: 6px;
|
||
|
|
||
|
.imgbox {
|
||
|
width: 100%;
|
||
|
height: 250px;
|
||
|
|
||
|
img {
|
||
|
display: block;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.coord {
|
||
|
height: 25px;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
}
|
||
|
}
|
||
|
.footer{
|
||
|
margin: 6px 0;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
}
|