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.
124 lines
2.3 KiB
124 lines
2.3 KiB
.container {
|
|
width: 1200px;
|
|
margin: auto;
|
|
}
|
|
|
|
.el-breadcrumb {
|
|
margin-top: 30px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.container_title>div {
|
|
margin-right: 4px;
|
|
}
|
|
|
|
.container_title>div:nth-child(3) {
|
|
color: #999999;
|
|
}
|
|
|
|
.container_list {
|
|
margin-top: 6px;
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
grid-row-gap: 20px;
|
|
}
|
|
|
|
.container_list_item {
|
|
width: 284px;
|
|
height: 470px;
|
|
background: #FFFFFF;
|
|
-webkit-box-shadow: 0px 2px 16px rgba(79, 109, 143, 0.12);
|
|
box-shadow: 0px 2px 16px rgba(79, 109, 143, 0.12);
|
|
opacity: 1;
|
|
border-radius: 8px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.container_list_item_image {
|
|
width: 100%;
|
|
height: 284px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.container_list_item_image>img {
|
|
width: 100%;
|
|
height: 100%;
|
|
-o-object-fit: cover;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.container_list_item_content {
|
|
padding: 26px 20px 21px 20px;
|
|
}
|
|
|
|
.container_list_item_content_title {
|
|
color: #282828;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.container_list_item_content_value {
|
|
letter-spacing: 0;
|
|
overflow: hidden;
|
|
display: -webkit-box;
|
|
-o-text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
-webkit-line-clamp: 2;
|
|
/*要显示的行数*/
|
|
-webkit-box-orient: vertical;
|
|
color: #999999;
|
|
height: 45px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.container_list_item_handle {
|
|
padding: 0 20px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.container_list_item_handle_detils {
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -moz-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-align: center;
|
|
-webkit-align-items: center;
|
|
-moz-box-align: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
-webkit-box-pack: center;
|
|
-webkit-justify-content: center;
|
|
-moz-box-pack: center;
|
|
-ms-flex-pack: center;
|
|
justify-content: center;
|
|
border: 1px solid #2C8EFF;
|
|
opacity: 1;
|
|
border-radius: 15px;
|
|
font-size: 14px;
|
|
color: #2C8EFF;
|
|
width: 100px;
|
|
height: 29px;
|
|
|
|
}
|
|
|
|
.container_list_item_handle_detils>span:nth-child(1) {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.pagination {
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -moz-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-box-pack: center;
|
|
-webkit-justify-content: center;
|
|
-moz-box-pack: center;
|
|
-ms-flex-pack: center;
|
|
justify-content: center;
|
|
margin-top: 70px;
|
|
margin-bottom: 100px;
|
|
} |