123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- .main {
- .container {
- &.news-list {
- .title {
- font-size: 34px;
- text-align: center;
- margin: 80px 0;
- }
- .new {
- display: block;
- -webkit-transition: all 0.4s;
- transition: all 0.4s;
- margin-bottom: 40px;
- .cover {
- width: 290px;
- height: 190px;
- img {
- display: block;
- width: 100%;
- height: 100%;
- }
- }
- &:hover {
- -webkit-box-shadow: 0 6px 30px rgba(6, 136, 210, 0.2);
- box-shadow: 0 6px 30px rgba(6, 136, 210, 0.2);
- .name {
- color: #0688d2;
- }
- }
- .content {
- width: 780px;
- margin-left: 49px;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- padding: 32px 0;
- .name {
- font-size: 20px;
- -webkit-transition: all 0.4s;
- transition: all 0.4s;
- }
- .date {
- font-size: 16px;
- color: #999999;
- margin-top: 14px;
- }
- .line {
- width: 100%;
- height: 1px;
- background: #e8e8e8;
- margin: 18px 0;
- }
- .desc {
- font-size: 16px;
- color: #505050;
- }
- }
- }
- }
- .pagination {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- padding-top: 25px;
- li {
- background: #e8e8e8;
- margin: 0 8px;
- &.active {
- background: #0688d2;
- a {
- color: #fff;
- }
- }
- &.more {
- background: transparent !important;
- a {
- color: #505050 !important;
- min-width: unset !important;
- padding: 0 !important;
- }
- }
- &:hover {
- background: #0688d2;
- a {
- color: #fff;
- }
- }
- a {
- display: block;
- height: 32px;
- line-height: 32px;
- padding: 0 10px;
- font-size: 12px;
- color: #505050;
- min-width: 32px;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- text-align: center;
- }
- }
- }
- }
- }
- .footer {
- margin-top: 40px;
- }
|