@import "base.css";



.news-container{
    margin: 3rem auto;
}

.news-container a:-webkit-any-link {
    text-decoration: underline;
    color: #6713c9;
}

.news-container .news-title{
    font-size: 2.2rem;
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
    padding: 0 .5rem;
}


.date-section{
    display: flex;
    margin: 1rem auto;
    padding-bottom: .5rem;
    position: relative;
}

.news-content{
    font-family: 'Montserrat', sans-serif !important;
    line-height: 1.6;
}

.ck-editor__editable {
    font-family: inherit !important; /* 继承父元素字体（即网站全局字体） */
    font-size: inherit !important; /* 继承父元素字号 */
}

.date-section .date{
    font-size: .875rem;
}


.date-section::after {
    content: '';
    display: block;
    height: 1px;
    background-color: #333;
    position: absolute;
    opacity: 0.2;
    bottom: 0;
    width: 100%;
}

figure.image{
    text-align: center;
}

@media (max-width: 768px) {
    .news-container{
        margin: 2rem auto;
        width: 100%;
    }

    figure.image{
        max-width: 100%;
        width: 100%;
    }
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}


