.main-content {
    position: relative;
}

.article {
    height: 1.69rem;
    width: 100%;

    display: flex;
    align-items: center;
    border-bottom: 0.01rem solid #EBEBEB;

    &:hover {
        animation: shake-light 0.5s ease;
    }

    .article-date {
        width: 1.27rem;
        height: 1.06rem;
        background: linear-gradient(180deg, #009EE2, #0571B2);
        border-radius: 0.1rem;
        display: flex;

        color: #fff;

        display: flex;
        flex-direction: column;

        align-items: flex-start;

        box-sizing: border-box;
        font-size: 0.2rem;

        .date {
            line-height: 0.45rem;
            font-weight: bold;
            margin-top: 0.20rem;
            margin-left: 0.25rem;

            .day {
                font-size: 0.36rem;
                line-height: 0.45rem;
            }

            .divider {
                margin-left: -0.05rem;
                font-size: 0.24rem;
                height: 0.44rem;
            }

            .month {
                font-size: 0.28rem;
                line-height: 0.44rem;
                margin-left: -0.05rem;
            }
        }

        .year {
            margin-top: -0.08rem;
            margin-left: 0.24rem;
            font-family: "宋体";
        }
    }

    .article-content {
        margin-left: 0.37rem;

        h1 {
            width: 12.59rem;
            height: 0.23rem;

            font-weight: bold;
            font-size: 0.22rem;
            color: #333333;
            line-height: 0.32rem;
        }

        p {
            margin-top: 0.2rem;
            height: 0.51rem;
            font-family: "宋体";
            line-height: 0.32rem;
            font-size: 0.20rem;
            color: #333333;
            width: 12.59rem;
        }

        .article-date-line {
            display: none;
        }

    }
}

@media only screen and (max-width: 760px) {
    .article {
        .article-date {
            display: none;
        }

        .article-content {
            margin-left: 0rem;

            .article-date-line {
                display: block;
                font-size: 0.20rem;
            }
        }
    }
}

@media (max-width: 760px) {
    .top {
        display: none;
    }

    .article {
        box-sizing: border-box;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 8px;
        padding-right: 12px;
        height: fit-content;

        .article-content {
            width: 100%;

            h1 {
                width: 100%;
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;
                height: fit-content;
            }

            p {
                display: none;
            }

            .article-date-line {
                margin-top: 18px;
                height: fit-content;
            }
        }
    }
}



@media (max-width: 500px) {





    .article-content h1,
    .article-date-line {

        font-size: 14px !important;
    }

    .article-date-line {
        margin-top: 0 !important;
    }





}