|
|
|
|
|
.main {
|
|
|
display: -ms-flexbox;
|
|
|
display: flex;
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
-ms-flex-direction: row;
|
|
|
flex-direction: row;
|
|
|
-ms-flex-align: start;
|
|
|
align-items: flex-start;
|
|
|
-ms-flex-pack: start;
|
|
|
justify-content: flex-start;
|
|
|
}
|
|
|
.ivu-card-head p {
|
|
|
text-align: center;
|
|
|
}
|
|
|
.editor-container {
|
|
|
width: 500px;
|
|
|
height: 100%;
|
|
|
-ms-flex-negative: 0;
|
|
|
flex-shrink: 0;
|
|
|
border-right: 1px solid #e4e4e4;
|
|
|
overflow-x: hidden;
|
|
|
overflow-y: scroll;
|
|
|
}
|
|
|
.button-container {
|
|
|
width: 50%;
|
|
|
-ms-flex-positive: 1;
|
|
|
flex-grow: 1;
|
|
|
}
|
|
|
.button-container button {
|
|
|
margin: 10px;
|
|
|
}
|
|
|
.floor-item {
|
|
|
position: relative;
|
|
|
width: 100%;
|
|
|
display: -ms-flexbox;
|
|
|
display: flex;
|
|
|
-ms-flex-direction: row;
|
|
|
flex-direction: row;
|
|
|
-ms-flex-align: start;
|
|
|
align-items: flex-start;
|
|
|
-ms-flex-pack: start;
|
|
|
justify-content: flex-start;
|
|
|
overflow: hidden;
|
|
|
background-color: #fff;
|
|
|
}
|
|
|
.floor-image {
|
|
|
width: 100%;
|
|
|
margin: 5px 5px 5px 5px;
|
|
|
}
|
|
|
.floor-image img {
|
|
|
width: 100%;
|
|
|
float: left;
|
|
|
}
|
|
|
.floor-item:hover .floor-mask {
|
|
|
display: block;
|
|
|
}
|
|
|
.floor-mask {
|
|
|
display: none;
|
|
|
position: absolute;
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
background-color: rgba(0, 0, 0, 0.6);
|
|
|
left: 0;
|
|
|
top: 0;
|
|
|
z-index: 19;
|
|
|
}
|
|
|
.floor-mask .floor-edit-buttons {
|
|
|
position: absolute;
|
|
|
width: 100px;
|
|
|
right: 0;
|
|
|
top: 0;
|
|
|
z-index: 20;
|
|
|
}
|
|
|
.floor-mask .floor-edit-buttons a {
|
|
|
display: inline-block;
|
|
|
width: 40px;
|
|
|
box-sizing: border-box;
|
|
|
background-color: gray;
|
|
|
color: #fff;
|
|
|
margin: 0 5px;
|
|
|
float: left;
|
|
|
text-align: center;
|
|
|
}
|
|
|
.floor-image-three-root {
|
|
|
/* display: flex;
|
|
|
flex-direction: row; */
|
|
|
width: 100%;
|
|
|
margin: 5px 5px 5px 5px;
|
|
|
}
|
|
|
.floor-image-three {
|
|
|
display: -ms-flexbox;
|
|
|
display: flex;
|
|
|
-ms-flex-direction: row;
|
|
|
flex-direction: row;
|
|
|
width: 100%;
|
|
|
height: 200px;
|
|
|
}
|
|
|
.floor-image-three-left {
|
|
|
width: 40%;
|
|
|
height: 100%;
|
|
|
}
|
|
|
.floor-image-three-right-root {
|
|
|
display: -ms-flexbox;
|
|
|
display: flex;
|
|
|
-ms-flex-direction: column;
|
|
|
flex-direction: column;
|
|
|
width: 55%;
|
|
|
height: 100%;
|
|
|
}
|
|
|
.floor-image-three-right-item {
|
|
|
width: 100%;
|
|
|
height: 50%;
|
|
|
}
|
|
|
.floor-image-hot {
|
|
|
width: 100%;
|
|
|
margin: 5px 5px 5px 5px;
|
|
|
}
|
|
|
.hot-image-list {
|
|
|
background-color: white;
|
|
|
width: 100%;
|
|
|
margin: 5px 5px 5px 5px;
|
|
|
}
|
|
|
.hot-image-list-title {
|
|
|
font-size: 25px;
|
|
|
text-align: left;
|
|
|
padding-top: 10px;
|
|
|
}
|
|
|
.hot-image-list-body {
|
|
|
display: -ms-flexbox;
|
|
|
display: flex;
|
|
|
-ms-flex-flow: row wrap;
|
|
|
flex-flow: row wrap;
|
|
|
-ms-flex-line-pack: start;
|
|
|
align-content: flex-start;
|
|
|
background-color: white;
|
|
|
text-align: left;
|
|
|
width: 100%;
|
|
|
}
|
|
|
.hot-image-list-item {
|
|
|
display: -ms-flexbox;
|
|
|
display: flex;
|
|
|
-ms-flex-direction: column;
|
|
|
flex-direction: column;
|
|
|
-ms-flex: 0 0 25%;
|
|
|
flex: 0 0 25%;
|
|
|
-ms-flex-line-pack: center;
|
|
|
align-content: center;
|
|
|
-ms-flex-pack: justify;
|
|
|
justify-content: space-between;
|
|
|
-ms-flex-negative: 0;
|
|
|
flex-shrink: 0;
|
|
|
height: 150px;
|
|
|
}
|
|
|
.hot-image-list-item-5 {
|
|
|
-ms-flex: 0 0 20%;
|
|
|
flex: 0 0 20%;
|
|
|
height: 120px;
|
|
|
}
|
|
|
.item-image {
|
|
|
margin-top: 10px;
|
|
|
-o-object-fit: contain;
|
|
|
object-fit: contain;
|
|
|
width: 100%;
|
|
|
height: 100px;
|
|
|
/* align-content: center;
|
|
|
justify-content: center; */
|
|
|
}
|
|
|
.item-image-5 {
|
|
|
height: 80px;
|
|
|
}
|
|
|
.item-title {
|
|
|
width: 110px;
|
|
|
margin-top: 10px;
|
|
|
padding-left: 10px;
|
|
|
padding-right: 10px;
|
|
|
text-align: center;
|
|
|
/* -webkit-line-clamp: 1; */
|
|
|
/* max-lines: 1; */
|
|
|
/* line-clamp: 1; */
|
|
|
white-space: nowrap;
|
|
|
display: inline-block;
|
|
|
/* display: -webkit-box; */
|
|
|
/* display: inline-flex; */
|
|
|
overflow: hidden;
|
|
|
text-overflow: ellipsis;
|
|
|
}
|
|
|
.item-title-5 {
|
|
|
width: 88px;
|
|
|
}
|
|
|
.sort-tab-body {
|
|
|
display: -ms-flexbox;
|
|
|
display: flex;
|
|
|
-ms-flex-direction: row;
|
|
|
flex-direction: row;
|
|
|
}
|
|
|
.sort-tab {
|
|
|
padding-right: 10px;
|
|
|
padding-left: 10px;
|
|
|
} |