.twt-breadcrumb-padding{
    max-width: 800px;
    padding: 16px 0 0 0;
    margin: 0 auto;
}
.twt-breadcrumb {
    width: 1200px;
    max-width: calc(100vw - 60px);
    overflow-x: hidden; /* 容器不滚动 */
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    box-sizing: border-box;
}

.twt-breadcrumb-list {
    display: flex;
    flex-wrap: nowrap;          /* 一行显示 */
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.twt-breadcrumb-item {
    color: #222222;
    white-space: nowrap;
    text-overflow: ellipsis;
    flex-shrink: 1;              /* 可以缩小 */
    flex-grow: 0;                /* 不强制拉伸 */
    min-width: 0;                /* 允许省略号触发 */
    max-width: 36%;              /* ✅ 最多占 1/3 宽度（可调） */
    overflow: hidden;
}

.twt-breadcrumb-link {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    max-width: 100%;
}

.twt-breadcrumb-link:hover {
    text-decoration: underline;
}

.twt-breadcrumb-separator {
    margin: 0 4px;
    flex-shrink: 0;
    color: #999999;
}

.twt-breadcrumb-separator .twt-breadcrumb-link {
    color: #999999;
}

.twt-breadcrumb-item--active {
    pointer-events: none;
}
.twt-breadcrumb-item:nth-child(1){
    margin-left: 0;
}




/*响应式*/
@media (1440px <= width) {

}
@media (1208px <= width <= 1439px) {
    /* 样式 for 大屏 */
}

@media (990px <= width <= 1207px) {
    /* 样式 for 中等屏 */
}

@media (750px <= width <= 989px) {
    /* 样式 for 平板 */
}

@media (520px <= width <= 749px) {
    /* 样式 for 小屏 */
}

@media (width <= 519px) {
    /* 样式 for 超小屏（手机） */
    .twt-breadcrumb {
        max-width: calc(100vw - 30px);
    }

}