.objList {
    width: 100%;
}

.ellipsis {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.infoDom {
    max-width: 100%;
}

.pre {
    white-space: pre-wrap;
}

.minInfo {
    white-space: pre;
    max-height: 4.5em;
    display: inline-block;
    line-height: 1.5em;
    overflow: hidden;
}

.paddingRightTd td {
    padding-right: 1em;
}

.infoEditDom {
    width: 100%;
}

.infoEditDom .desc textarea {
    width: 100%;
    min-height: 100px;
}

.dataE.deleted {
    filter: blur(2px);
}

.dataE.error input {
    color: #ff0000;
}

body {
    margin: 1em;
}

.trsDataDisplay td {
    padding-right: 1em;
}

/* 现代化任务栏 */
.winNav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 36px;
    z-index: 9999;
    background: rgba(243, 243, 243, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 0 12px;
}

/* 深色模式支持 */
@media (prefers-color-scheme: dark) {
    .winNav {
        background: rgba(32, 32, 32, 0.85);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

#activeCollDisplay {
    display: inline-block;
    position: fixed;
    bottom: 36px;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem;
    border-radius: 0 12px 0 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* 任务栏按钮 */
.winNavItem {
    display: inline-flex;
    align-items: center;
    justify-content: left;
    height: 36px;
    min-width: 48px;
    max-width: 200px;
    text-overflow: ellipsis;
    padding: 0 12px;
    margin: 0 2px;
    background: transparent;
    color: #333;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

/* 深色模式下的按钮文字 */
@media (prefers-color-scheme: dark) {
    .winNavItem {
        color: #fff;
    }
}

/* 悬停状态 */
.winNavItem:hover {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@media (prefers-color-scheme: dark) {
    .winNavItem:hover {
        background: rgba(255, 255, 255, 0.05);
    }
}

/* 隐藏状态 */
.winNavItem.winNavItemHide {
    opacity: 0.5;
    background: transparent;
}

.winNavItem.winNavItemHide:hover {
    opacity: 0.7;
    background: rgba(255, 255, 255, 0.05);
}

/* 焦点/活跃状态 */
.winNav .winNavItem.winNavItemFocused {
    background: rgba(0, 120, 212, 0.1);
    color: #0078d4;
    border-bottom: 2px solid #0078d4;
    border-radius: 6px 6px 0 0;
}

.winNav .winNavItem.winNavItemFocused:hover {
    background: rgba(0, 120, 212, 0.15);
}

/* 焦点指示器动画 */
.winNav .winNavItem.winNavItemFocused::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: #0078d4;
    border-radius: 1px;
    animation: focusIndicator 0.2s ease-out;
}

.winNav .winNavItem.winNavItemFocusedActivedColl {
    background: rgba(212,0,0, 0.1);
}

@keyframes focusIndicator {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 24px;
        opacity: 1;
    }
}

.windowC {
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
}

body {
    border: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.parallaxObj {
    background-size: cover;
    transition: transform cubic-bezier(0.25, 0.46, 0.45, 0.94) .5s,
    top cubic-bezier(0.25, 0.46, 0.45, 0.94) .5s,
    left cubic-bezier(0.25, 0.46, 0.45, 0.94) .5s,
    scale cubic-bezier(0.25, 0.46, 0.45, 0.94) .5s,
    background-image cubic-bezier(0.25, 0.46, 0.45, 0.94) .5s;
    position: absolute;
    will-change: transform;
}

.trsEditDom {
    width: 100%;
}

.ifFindInOriInput, .matchInput, .toInput {
    width: 100%;
}

.infoTable {
    width: 100%;
}

.windowContext {
    padding: 1em;
    box-sizing: border-box !important;
}


.delObjBtn {
    float: right;
}

.windowModal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(100, 100, 100, 0.8);
    z-index: 99999;
}

.searchList .delObjBtn {
    display: none;
}

.langSelLabel {
    position: fixed;
    bottom: -5px;
    right: 5px;
    z-index: 99999;
}

/* 桌面主容器 */
.desktopItems {
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    min-height: calc(100vh - 4rem);
}

/* 分类容器 */
.desktopCategory {
    margin-bottom: 3rem;
    margin-right: 2rem;
}

/* 分类标题 */
.categoryTitle {
    color: #333;
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    padding: 0.3rem 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    display: inline-block;
    border-left: 3px solid #007acc;
}

/* 分类项目容器 */
.categoryItems {
    display: grid;
    grid-template-columns: repeat(auto-fit, 90px);
    grid-auto-rows: 90px;
    grid-gap: 15px;
    align-content: start;
    max-width: 500px;
}

/* 桌面图标 */
.desktopItem {
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 8px;
    padding: 8px;
    box-sizing: border-box;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
    position: relative;
}

.desktopItem:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: scale(1.05);
}

.desktopItem:active {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(0.98);
}

/* 图标样式 */
.desktopItemIcon {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    display: block;
}

/* 文本样式 */
.desktopItemText {
    font-size: 11px;
    color: #333;
    text-align: center;
    line-height: 1.2;
    word-break: break-word;
    font-weight: 500;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-shadow: 0 0 6px #fff;
    padding: 6px;
    min-width: 100px;
}

/* 分类主题样式微调 */
.newObject-category .categoryTitle {
    border-left-color: #4CAF50;
}

.objects-category .categoryTitle {
    border-left-color: #FF9800;
}

.tools-category .categoryTitle {
    border-left-color: #9C27B0;
}

.account-category .categoryTitle {
    border-left-color: #E91E63;
}


body, html {
    width: 100%;
    height: 100%;
}

.regUserTable {
    width: 100%;
    text-align: center;
}

.width5emtar {
    width: 5em;
    text-align: right;
}

.trsEditDom .dataE td.width5emtar.ctrlTD {
    position: absolute;
    width: auto;
}

.trsHelp {
    float: right;
    color: #ff5500;
}

.trsEditDom .dataE td {
    width: 31%;
}