body {
    margin: 0;
}
.main-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.page-btns {
    margin: 20px 0;
}

@media screen and (min-width: 1200px) {
    .page-cover {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        height: 298px;
        background-size: 100% 100%;
        background-image: url(/static/img/news_bg.png);
    }
    h1 {
        text-align: center;
    }
    .sub-tl {
        text-align: center;
        color: rgb(102, 102, 102);
    }
    .news-list {
        list-style: none;
        padding: 0;
    }
    .news-list li {
        display: flex;
        margin-top: 20px;
        border-bottom: 1px solid rgb(236, 236, 236);
        padding-bottom: 25px;
    }
    .cover {
        margin-right: 30px;
    }
    .cover img {
        width: 240px;
        border-radius: 4px;
        height: 135px;
    }
    .detail {
        flex: 1;
        display: flex;
    }
    .news-list .tl {
        margin-bottom: 5px;
        color: rgb(0, 125, 57);
        font-size: 20px;
    }
    .news-list .info {
        display: flex;
        height: 100%;
        flex-direction: column;
        flex: 1;
    }
    .desc {
        flex: 1;
        color: rgb(114, 114, 114);
        font-size: 16px;
    }
    .see-detail {
        border: 1px solid rgb(0, 125, 57);
        border-radius: 14px;
        width: 88px;
        height: 28px;
        text-align: center;
        line-height: 28px;
        color: rgb(0, 125, 57);
    }
    .time-wrap {
        border: 1px solid rgb(26, 138, 77);
        border-radius: 2px;
        overflow: hidden;
        width: 52px;
        text-align: center;
        height: 57px;
    }
    .date-wrap {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    .ampm {
        background-color: rgb(0, 125, 57);
        text-align: center;
        height: 50%;
        line-height: 28px;
        font-size: 16px;
        color: rgb(255, 255, 255);
    }
    .time {
        text-align: center;
        font-size: 16px;
        color: rgb(0, 125, 57);
        line-height: 28px;
    }
    .date {
        font-size: 16px;
        color: rgb(111, 111, 111);
    }
    .pc-date-time {
        display: none;
    }
}

@media screen and (max-width: 1200px) {
    .page-cover {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        height: 162px;
        background-size: 100% 100%;
        background-image: url(/static/img/news_bg_mobile.png);
    }
    h1 {
        text-align: center;
    }
    .sub-tl {
        text-align: center;
        color: rgb(102, 102, 102);
    }
    .news-list {
        list-style: none;
        width: 94%;
        margin: 0 auto;
        padding: 0;
    }
    .news-list li {
        display: flex;
        margin-top: 20px;
        padding: 12px;
        background-color: #fff;
        border-radius: 8px;
    }
    .cover {
        margin-right: 15px;
    }
    .cover img {
        width: 100px;
        border-radius: 4px;
        height: 75px;
    }
    .detail {
        flex: 1;
        display: flex;
    }
    .news-list .tl {
        margin-bottom: 5px;
        color: rgb(0, 125, 57);
        font-size: 15px;
    }
    .news-list .info {
        display: flex;
        height: 100%;
        justify-content: space-between;
        flex-direction: column;
        flex: 1;
    }
    .desc {
        display: none;
    }
    .see-detail {
        display: none;
    }
    .time-wrap {
        border: 1px solid rgb(26, 138, 77);
        border-radius: 2px;
        overflow: hidden;
        width: 52px;
        text-align: center;
        height: 57px;
    }
    .date-wrap {
        display: none;
    }
    .ampm {
        background-color: rgb(0, 125, 57);
        text-align: center;
        height: 50%;
        line-height: 28px;
        font-size: 16px;
        color: rgb(255, 255, 255);
    }
    .time {
        text-align: center;
        font-size: 16px;
        color: rgb(0, 125, 57);
        line-height: 28px;
    }
    .date {
        font-size: 16px;
        color: rgb(111, 111, 111);
    }
    .pc-date-time {
        display: block;
        color: #6F6F6F;
        font-size: 12px;
    }
    main,body {
        background-color: #F5F5F5;
    }
    .page-btns {
        padding-left: 3%;
    }
}