body {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
    color: #333;
    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
/* 主体内容 */
.content {
    flex: 1;
}

/* 资质项 */
.qualification-item {
    background: white;
    margin-bottom: 4rem;
}

.item-header {
    padding: 0.5rem 5%;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.item-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
}

.item-number {
    color: #666;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* 图片容器 */
.image-container {
    margin-left:5%;
    width: 90%;
}

.qualification-image {
    width: 100%;
}

/* PC端适配 */
@media (min-width: 768px) {
    .header, .qualification-item, {
        max-width: 768px;
        margin: 0 auto;
        width: 100%;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .item-title {
        font-size: 1.4rem;
    }
}