123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- .wrap {
- padding-top: 2.75rem;
- background: #f5f5f5;
- }
- .wrap .list {
- padding: 0.9375rem;
- }
- .list .list-item {
- width: 100%;
- background: #fff;
- margin-bottom: 1.25rem;
- }
- .list .list-item .item-cover {
- width: 100%;
- height: 13.75rem;
- background: #000;
- }
- .list .list-item .item-bottom {
- background: #fff;
- padding: 0.9375rem;
- }
- .list .list-item .item-bottom .item-time {
- font-size: 0.875rem;
- font-weight: 400;
- color: #1d52a2;
- }
- .list .list-item .item-bottom .item-title {
- font-size: 1rem;
- font-weight: 500;
- color: #222222;
- margin-top: 1.25rem;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- }
- .list .list-item .item-bottom .item-detail {
- font-size: 0.875rem;
- font-weight: 400;
- color: #444444;
- margin-top: 1.25rem;
- margin-bottom: 1.875rem;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 3;
- }
- .list .list-item .item-bottom .item-view-detail {
- font-size: 0.875rem;
- font-weight: 500;
- color: #888888;
- text-decoration: none;
- }
- .wrap .pagination {
- display: flex;
- align-items: center;
- justify-content: center;
- margin-bottom: 2.5rem;
- }
- .pagination :not(:last-child) {
- margin-right: 0.625rem;
- }
- .pagination .pagination-item {
- width: 1.875rem;
- height: 1.875rem;
- border: 0.0625rem solid rgba(151, 151, 151, 0.2);
- text-align: center;
- line-height: 1.875rem;
- user-select: none;
- font-size: 0.875rem;
- font-weight: 400;
- color: #222222;
- cursor: pointer;
- }
- .pagination :first-child,
- .pagination :last-child {
- font-size: 1.25rem;
- line-height: 1.5rem;
- }
- .pagination .current {
- background: #1d52a2;
- color: #ffffff;
- }
|