| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- /* 公告列表 */
- .notice-list {
- background: #f7f7f7;
- padding-bottom: 40px;
- }
- .notice-list .list {
- background: #fff;
- }
- .notice-list .list .item {
- padding: 25px 30px;
- cursor: pointer;
- display: flex;
- position: relative;
- }
- .notice-list .list .item::after {
- position: absolute;
- bottom: 0;
- left: 30px;
- right: 30px;
- display: block;
- width: auto;
- height: 1px;
- content: " ";
- font-size: 0;
- background: #eee;
- }
- .notice-list .list .item:last-child::after {
- height: 0;
- }
- .notice-list .list .item .tit {
- flex: 1;
- font-size: 14px;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 1;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .notice-list .list .item:hover .tit {
- font-weight: 600;
- }
- .notice-list .list .item .time {
- color: #999;
- }
- .notice-list .list .item:hover .time {
- color: #000;
- }
- .notice-list .pages {
- justify-content: center;
- }
- .empty-tips {
- text-align: center;
- color: #999;
- }
- .empty-tips > img {
- width: 250px;
- height: 200px;
- }
- /* 公告列表 end */
|