.article {
    position: relative;
    margin-bottom: 64px;
}
.article .article-content{
    padding: 42px 0;
    /*position: relative;*/
    /*z-index: 10;*/
    /*background: #FFF;*/
}

.article .article-content2{
    padding: 0 32px;
}

.article .back-img{
    /*左右翻转*/
    transform: rotateY(180deg);
    width: 21px;
    height: 19px;
}

.article .back-line{
    display: flex;
    position: relative;
    z-index: 10;
}

.article .back{
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 4px 12px;
    border-radius: 4px;
    transition: 0.3s ease;
    color: #535353;
    background-color: #FFF;
    position: relative;
}
.article .back:hover{
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.article .article-container{
    margin-top: 32px;
    padding: 0 128px;
}

.article .article-title{
    font-weight: bold;
    font-size: 48px;
    color: #535353;
    text-align: center;
}

.article .article-date{
    font-weight: 300;
    font-size: 16px;
    color: #ABABAB;
    text-align: center;
}

.article .article-text{
    margin-top: 32px;
    font-weight: 300;
    font-size: 16px;
    color: #6A6A6A;
    line-height: 24px;
}
.article .article-text img{
    max-width: 100% !important;
}


@media screen and (min-width: 768px) and (max-width: 1200px) {
    .article .article-container {
        padding: 0 64px;
    }
}

@media screen and (max-width: 767px) {
    .article .article-title {
        font-size: 36px;
    }
    .article .article-text {
        margin-top: 16px;
    }
    .article .article-container {
        padding: 0;
    }
    .article .article-content2{
        padding: 0 16px;
    }
}
