/* --- 品牌页面主体容器 --- */
.brand-container {
    width: 100%;
    margin: 0 auto;  /* 100px 避开固定页头 */
}

/* 文章卡片 */
.article-card {
    width: 100%;
    margin-bottom: 60px;
}

.article-title {
    font-size: 28px;
    margin: 0 0 15px 0;
    text-align: left;
    font-weight: bold;
}

.article-decorator {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin-bottom: 30px;
}

.article-content {
    width: 100%;
}

.article-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .brand-container {
        width: calc(100%/20*18);
    }
    
    .article-title {
        font-size: 22px;
    }
}

.article-title{
    font-family: var(--font);
    font-weight: 200;
}