123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- /* .wrap {
- } */
- .wrap .list {
- padding: 3.75rem 0 0;
- width: 90rem;
- margin: 0 auto;
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- }
- .wrap .list > :not(:nth-child(3n)) {
- margin-right: 1.875rem;
- }
- .list .list-item {
- width: 27.5rem;
- background: #f4f4f4;
- padding: 1.875rem;
- margin-bottom: 1.875rem;
- }
- .list .list-item .item-cover {
- width: 27.5rem;
- height: 18.3125rem;
- background: #000;
- transform: translate(-1.875rem, -1.875rem);
- }
- .list .list-item .item-time {
- font-size: 0.875rem;
- font-weight: 400;
- color: #1d52a2;
- height: 1rem;
- }
- .list .list-item .item-title {
- font-size: 1rem;
- font-weight: 500;
- color: #222222;
- height: 2.75rem;
- margin-top: 1.25rem;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- }
- .list .list-item .item-detail {
- font-size: 0.875rem;
- font-weight: 400;
- color: #444444;
- height: 4.375rem;
- 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-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: 2.5rem;
- height: 2.5rem;
- border: 0.0625rem solid rgba(151, 151, 151, 0.2);
- text-align: center;
- line-height: 2.5rem;
- user-select: none;
- font-size: 1rem;
- font-weight: 400;
- color: #222222;
- cursor: pointer;
- }
- .pagination :first-child,
- .pagination :last-child {
- font-size: 1.5rem;
- }
- .pagination .current {
- background: #1d52a2;
- color: #ffffff;
- }
|