123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- .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 #191C6E;
- opacity: 1;
- border-radius: 15px;
- font-size: 14px;
- color: #191C6E;
- 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;
- }
|