﻿/* 隐藏页面底部的全局 Schemas 列表 */
section.models,
.models-wrapper,
#swagger-ui .models {
    display: none !important;
}

/* 确保接口内部的 Schema 正常显示 */
.scheme-container,
.model-box,
.opblock-section .model-box,
.response-col_description .model-box {
    display: block !important;
}

/* 隐藏 Schemas 标题 */
h2:contains("Schemas"),
h2:contains("Models") {
    display: none !important;
}


/* 确保 Schema 描述可见 */
.schema-description {
    color: #333 !important;
    font-size: 14px !important;
    margin-bottom: 10px !important;
}

.model-box .property-description {
    color: #666 !important;
    font-size: 12px !important;
}

/* 增强 Schema 显示的可见性 */
.model-title {
    font-weight: bold !important;
}

.model .property {
    margin: 5px 0 !important;
}
