.article-title {
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
}

.article-sub {
    color: #737373;
    line-height: 1.5;
}

.article-content img {
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
}

.article-content {
    margin-top: 30px;
}

.recommend-list {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    grid-gap: 24px;
}

.container-main {
    align-items: center;
}

.container-main .main {
    max-width: 1200px;
}

.header {
    padding-left: 350px;
}

.loading {
    position: relative;
    height: 70vh;
}

.loading img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-name: rotate;
    animation-iteration-count: infinite;
    animation-duration: 2s;
    animation-timing-function: linear;
}

.article ul, .article ol {
    padding-left: 28px;
}

.article ul li {
    list-style: initial;
}

.article table, .article table td{
    border-collapse: collapse!important;
    border-width: 1px!important;
    border-spacing: 0px!important;
    border-color: #CED4D9!important;
    border-style: solid!important;
}

.article table td {
    padding: 5px!important;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media screen and (max-width: 1024px) {
    .header {
        padding-left: 0;
    }
}