|
|
@@ -251,19 +251,36 @@ export default {
|
|
|
font-size: 17px;
|
|
|
font-weight: 600;
|
|
|
color: #000;
|
|
|
+ div{
|
|
|
+ width: 410px;
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ white-space: nowrap;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
#store-list table>tbody .store-message {
|
|
|
- margin-top: 15px;
|
|
|
- color: #999;
|
|
|
+ margin-top: 5px;
|
|
|
+ color: #666;
|
|
|
width: 100%;
|
|
|
overflow: hidden;
|
|
|
text-overflow: ellipsis;
|
|
|
display: -webkit-box;
|
|
|
-webkit-box-orient: vertical;
|
|
|
- -webkit-line-clamp: 3;
|
|
|
+ -webkit-line-clamp: 2;
|
|
|
line-height: 18px;
|
|
|
}
|
|
|
+ #store-list table>tbody tr:hover{
|
|
|
+ box-shadow: 1px 1px 12px rgb(145, 197, 239);
|
|
|
+ -moz-box-shadow: 1px 1px 12px rgb(145, 197, 239);
|
|
|
+ -o-box-shadow: 1px 1px 12px rgb(145, 197, 239);
|
|
|
+ -webkit-box-shadow: 1px 1px 12px rgb(145, 197, 239) ;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+ #store-list table>tbody tr:first-child:hover{
|
|
|
+ box-shadow: none;
|
|
|
+ cursor: default ;
|
|
|
+ }
|
|
|
#store-list table>tbody tr td{
|
|
|
padding: 15px;
|
|
|
}
|