1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- .new2 .body {
- margin-top: 90px;
- padding: 10px 0;
- }
- .new2 .body .list .list-item {
- text-decoration: none;
- color: black;
- display: flex;
- justify-content: flex-start;
- align-items: start;
- padding-bottom: 10px;
- margin-bottom: 10px;
- border-bottom: 1px solid #e6e6e6;
- }
- .new2 .body .list-header {
- height: 50px;
- position: relative;
- margin-bottom: 20px;
- background-size: cover;
- -webkit-background-size: 100% 160px;
- -moz-background-size: 100% auto;
- background-position: center center;
- border-bottom: 1px solid #e6e6e6;
- }
- .new2 .body .list-header img {
- width: 100%;
- }
- .new2 .body .list-header div {
- position: absolute;
- color: black;
- bottom: 0;
- left: 10px;
- }
- .new2 .body .list-header div p{
- color: #777;
- }
- .new2 .body .list-header div h3 {
- font-size: 16px;
- margin-bottom: 5px;
- }
- .new2 .body .list .list-item:hover {
- color: #03C762;
- }
- .new2 .body .list .list-item .item-img {
- flex: 1;
- padding: 0 20px;
- }
- @media screen and (max-width: 768px) {
- .new2 .body .list .list-item .item-img {
- padding: 0 10px;
- }
- }
- .new2 .body .list .list-item .item-img img {
- width: 100%;
- border-radius: 5px;
- }
- .new2 .body .list .list-item .item-img img:hover {
- transform: scale(1.1);
- }
- .new2 .body .list .list-item .item-detail {
- flex: 4;
- height: 100%;
- position: relative;
- overflow: hidden;
- }
- @media screen and (max-width: 768px) {
- .new2 .body .list .list-item .item-detail {
- flex: 2;
- }
- }
- .new2 .body .list .list-item .item-detail .title {
- font-weight: 400;
- }
- @media screen and (max-width: 768px) {
- .new2 .body .list .list-item .item-detail .title {
- white-space: normal;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- }
- }
- .new2 .body .list .list-item .item-detail .time {
- font-size: 12px;
- color: #777;
- margin-top: 5px;
- }
- .new2 .body .list .list-item .item-detail .time span {
- margin-left: 5px;
- }
|