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.
42 lines
845 B
42 lines
845 B
4 years ago
|
*{
|
||
|
-webkit-touch-callout: none;
|
||
|
-webkit-user-select: none;
|
||
|
-khtml-user-select: none;
|
||
|
-moz-user-select: none;
|
||
|
-ms-user-select: none;
|
||
|
user-select: none;
|
||
|
scrollbar-width: none; /* Firefox */
|
||
|
}
|
||
|
::-webkit-scrollbar {
|
||
|
display: none; /* Chrome Safari */
|
||
|
}
|
||
|
|
||
|
.planlist{
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
overflow-y: auto;
|
||
|
}
|
||
|
.contant{
|
||
|
box-sizing: border-box;
|
||
|
padding: 20px;
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
justify-content: space-between;
|
||
|
.contantitem{
|
||
|
div{
|
||
|
width: 110px;
|
||
|
height: 110px;
|
||
|
img{
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
}
|
||
|
p{
|
||
|
text-align: center;
|
||
|
font-size: 14px;
|
||
|
margin: 2px 0;
|
||
|
width: 110px;
|
||
|
}
|
||
|
}
|
||
|
}
|