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
1004 B
48 lines
1004 B
*{ |
|
-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: flex-start; |
|
.contantitem{ |
|
margin-right: 6px; |
|
div{ |
|
width: 110px; |
|
height: 110px; |
|
img{ |
|
width: 100%; |
|
height: 100%; |
|
cursor: pointer; |
|
} |
|
} |
|
p{ |
|
text-align: center; |
|
font-size: 14px; |
|
margin: 2px 0; |
|
width: 110px; |
|
} |
|
} |
|
@media screen and (min-width:1200px) and (max-width:1300px){ |
|
.contantitem{ |
|
margin-right: 30px; |
|
} |
|
} |
|
} |