﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    min-height:800px;
    background-color: #EBF2FF;
    color: #333;
    caret-color: transparent; /*全局禁止输入光标闪烁*/
}

input:focus,
textarea:focus {
    caret-color: auto; /* 在需要光标的输入框上恢复 */
}
[contenteditable="true"] {
    caret-color: auto !important; /* 在需要光标的输入框上恢复 */
}

a {
    text-decoration: none; /* 移除下划线 */
    color: inherit; /* 继承父元素颜色 */
    cursor: pointer; /* 保持手型光标 */
}

    a:hover, a:active, a:visited {
        text-decoration: none; /* 移除所有状态的下划线 */
        color: inherit; /* 继承父元素颜色 */
        outline: none; /* 移除焦点轮廓 */
    }
input:focus {
    border-color: #005EFF; /* 选中时边框变蓝 */
    outline: none; /* 移除默认轮廓 */
    box-shadow: 0 0 5px rgba(0, 94, 255, 0.3); /* 可选：添加发光效果 */
}
/* 内容隐藏 */
.hide{
    display:none !important;
}
/* 鼠标悬浮样式 */
.hand {
    cursor: pointer !important;
}
/* 蓝色字体样式 */
.spblue {
    color: #005EFF;
}
.spred {
    color: #FE325A;
}
.spwarn {
    color: #ff6000;
}
.spwarning {
    color: #ff863b;
}
/* 灰色字体样式 */
.spgrey {
    color: #999999;
}
.link-item {
    /* 全局link链接样式 */
    cursor: pointer !important; /* 鼠标悬浮样式 */
}
.link-itemid {
    /* 全局link链接样式 */
    cursor: pointer !important; /* 鼠标悬浮样式 */
}
.arrow-edit {
    background: url(images/arrow-edit.png) center/contain no-repeat;
}

.arrow-history {
    background: url(images/arrow-history.png) center/contain no-repeat;
}

.arrow-download {
    background: url(images/arrow-download.png) center/contain no-repeat;
}
.arrow-reset {
    background: url(/css/images/arrow-reset.png) center/contain no-repeat;
}
.ico-document {
    background: url(images/document.png) center/contain no-repeat;
}
.ico-nodocum {
    background: url(images/nodocum.png) center/contain no-repeat;
}
.ico-nopicum {
    background: url(images/nopicum.png) center/contain no-repeat;
}
.ico-simple {
    background: url(images/form-simple.png) center/contain no-repeat;
}
.ico-complete {
    background: url(images/form-complete.png) center/contain no-repeat;
}
.ico-intelligent {
    background: url(images/form-intelligent.png) center/contain no-repeat;
}
.ico-handentry {
    background: url(images/form-handentry.png) center/contain no-repeat;
}
.arrow-bulb {
    background: url(images/arrow-bulb.png) center/contain no-repeat;
}
.arrow-plus {
    background: url(images/arrow-plus.png) center/contain no-repeat;
}
.arrow-minus {
    background: url(images/arrow-minus.png) center/contain no-repeat;
}
.case-disAnaly {
    background: url(images/case-disAnaly.png) center/contain no-repeat;
}
/* 顶部导航栏样式 */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
    background: linear-gradient(180deg, #EBF2FF 0%, #EBF2FF 100%);
    color: white;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    width: 145px;
    height: 36px;
    margin-right: 32px;
    background: url(images/logo.png);
}
.nav-items {
    display: flex;
    font-size: 20px;
}
.arrow-right {
    width: 8px;
    height: 11px;
    margin: 10px 10px 0px 10px;
    background: url(images/arrow-right.png);
}
.spback {
    color: #999999;
}
.spactive {
    color: #0043FF;
    font-weight: bold;
}


.user-actions {
    display: flex;
    align-items: center;
    color: #222222;
}

.auth-buttons button {
    background-color: transparent;
    font-size:16px;
    border: 1px solid #0043FF;
    color: #0043FF;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
    transition: all 0.3s;
}

    .auth-buttons button:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

.user-loggedin {
    font-size: 20px;
    display: flex;
    flex-direction: row; /* 明确指定横向排列 */
    flex-wrap: nowrap; /* 禁止换行 */
    white-space: nowrap; /* 防止内部文本换行 */
    height: 100%; /* 确保有高度才能垂直居中 */
    align-items: center;
}

.file-center {
    display: inline-flex; /* 使用内联flex布局 */
    flex-shrink: 0; /* 禁止收缩 */
    align-items: center;
    position: relative;
    margin-right: 20px;
}
    .file-center span {
        font-weight: 500;
        line-height: 36px;
    }
    .file-center-btn {
        border: none;
        cursor: pointer;
        display: flex;
        padding: 0px 10px;
        align-items: center;
        transition: background-color 0.3s;
    }

    .file-center-btn:hover {
        /*background-color: #E5E7FD;*/
    }
.file-center-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    max-height: 600px;
    overflow-y: auto;
    background-color: white;
    width: auto;
    align-items: center;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    flex-wrap: nowrap; /* 禁止换行 */
    white-space: nowrap; /* 防止内部文本换行 */
}
.file-center:hover .file-center-list {
    display: block;
}

.file-center-item {
    padding: 5px 15px;
    cursor: pointer;
    color: #333;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}
    .file-center-item:hover {
        background-color: #f0f5ff;
    }
.file-center-active {
    color: #005EFF;
}
.user-avatar {
    width: 36px; /* 固定宽度 */
    height: 36px; /* 固定高度 */
    object-fit: cover; /* 自动拉伸缩放，保持比例并裁剪 */
    border-radius: 50%; /* 圆形头像 */
}
.user-nike {
    margin-left: 14px;
}
.file-generating {
    color: #0049FF;
    display: flex;
    align-items: center;
}
    .file-generating span{
        line-height:36px;
        font-size:16px;
    }
    /* 旋转动画 */
    @keyframes spin {
        0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.spinner {
    animation: spin 1s linear infinite;
    transform-origin: center;
}

/* 左侧导航栏样式 */
.sidebar {
    width: 110px;
    background: linear-gradient(180deg, #EBF2FF 0%, #E5E7FD 100%);
    color: white;
    margin-top: 75px;
    height: 100%;
    position: fixed;
    left: 0;
    padding-top: 20px;
    z-index: 900;
    overflow-y: auto;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
}

.sidebar-item {
    width: 85px;
    height: 85px;
    border-radius: 16px 16px 16px 16px;
    margin: 12px 12px;
    color: #4C607B;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    text-align: center;
}

    .sidebar-item i {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .sidebar-item span {
        font-size: 0.9rem;
    }

    .sidebar-item:hover {
        background: linear-gradient( 180deg, #DAE6FF 0%, #DAE4FF 100%);
    }

.sidebar-active {
    background: linear-gradient( 180deg, #DAE6FF 0%, #DAE4FF 100%);
    color: #0043FF;
}
.item-wisdom {
    width: 36px; /* 固定宽度 */
    height: 36px; /* 固定高度 */
    margin: 0 24px;
    background: url(images/wisdom.png) center/contain no-repeat;
}
.sidebar-active .item-wisdom {
    background: url(images/wisdom-active.png) center/contain no-repeat;
}
.item-case {
    width: 36px; /* 固定宽度 */
    height: 36px; /* 固定高度 */
    margin: 0 24px;
    background: url(images/case.png) center/contain no-repeat;
}
.sidebar-active .item-case {
    background: url(images/case-active.png) center/contain no-repeat;
}
.item-points {
    width: 36px; /* 固定宽度 */
    height: 36px; /* 固定高度 */
    margin: 0 24px;
    background: url(images/points.png) center/contain no-repeat;
}

.sidebar-active .item-points {
    background: url(images/points-active.png) center/contain no-repeat;
}

.sidebar-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    bottom: 36px;
}
.sidebar-wechat {
    width: 42px; /* 固定宽度 */
    height: 42px; /* 固定高度 */
    margin: 0 34px;
    object-fit: cover; /* 自动拉伸缩放，保持比例并裁剪 */
    background: url(images/WeChat.png);
}
.sidebar-wechat {
    cursor: pointer;
    font-size: 24px;
    color: #333;
    transition: color 0.3s;
}
    .sidebar-wechat:hover {
        color: #1aad19; /* 微信绿色 */
    }
.qrcode-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

    .qrcode-modal.show {
        opacity: 1;
        visibility: visible;
    }

.qrcode-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    max-width: 300px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s;
}

.qrcode-modal.show .qrcode-content {
    transform: scale(1);
}

.qrcode-content img {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
}

.qrcode-content p {
    color: #666;
    margin: 0;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

    .close-btn:hover {
        color: #333;
    }

/* 主体内容布局 */
.main-container {
    width: 100%;
    height: auto;
    min-height: 100%;
    display: flex;
    /*flex: 1;*/
    padding-left: 110px;
    padding-top: 75px;
    padding-bottom: 30px;
    overflow-y: auto;
    background: linear-gradient(180deg, #EBF2FF 0%, #E5E7FD 100%);
}
/* 内容区域外围样式 */
.content-external {
    width: calc(100% - 30px);
    height: calc(100% - 0px);
    background: linear-gradient( 180deg, #FFFFFF 0%, #EFEEF3 100%);
    border-radius: 20px 20px 20px 20px;
}
/* 内容区域内部样式 */
.content {
    background: linear-gradient( 180deg, #FFFFFF 0%, #EFEEF3 100%);
    border-radius: 20px;
    padding: 10px 10px;
    height: 100%;
    overflow-y: auto; /* 允许垂直滚动 */
    overflow-x: hidden; /* 隐藏水平滚动 */
    scrollbar-width: none; /* Firefox隐藏滚动条 */
    -ms-overflow-style: none; /* IE/Edge隐藏滚动条 */
}
    .content::-webkit-scrollbar {
        display: none; /* Chrome/Safari隐藏滚动条 */
    }
/* 内容区域样式 */
.content-section {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    min-height: 400px;
    display: none;
}
.arrow-close {
    width: 16px;
    height: 16px;
    background: url(images/arrow-close.png) center/cover no-repeat;
}
.arrow-close2 {
    width: 16px;
    height: 16px;
    background: url(images/arrow-close2.png) center/cover no-repeat;
}
.arrow-left {
    width: 16px;
    height: 16px;
    background: url(images/arrow-left.png) center/cover no-repeat;
}
.bottom-footer {
    margin-top: -30px;
    width: 100%;
    height: 30px;
    padding-left: 110px;
    padding-right: 30px;
    background: transparent;
    font-size: 14px;
    text-align: center;
    line-height:30px;
}
/* mask 遮罩层样式*/
.mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* 灰色透明度50% */
    z-index: 1000; /* 确保在最上层 */
    display: flex;
    justify-content: center;
    align-items: center;
}
.stepmask {
    top: 75px;
    left: 110px;
    width: calc(100vw - 140px);
    height: calc(100vh - 105px);
}

.mask-section {
    width: auto;
    height: auto;
    background: linear-gradient( 306deg, #0043FF 0%, #339DFF 100%);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center; /* 水平居中 */
    flex-direction: column; /* 竖直排列 */
    position: relative; /* 创建定位上下文 */
}
.mask-case-section {
    width: auto;
    height: auto;
    background: linear-gradient( 180deg, #B4EAFF 0%, #FFFFFF 100%);
    border-radius: 40px;
    border: 2px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center; /* 水平居中 */
    flex-direction: column; /* 竖直排列 */
    position: relative; /* 创建定位上下文 */
}
.mask-header {
    width: calc(100% - 20px);
    font-size: 24px;
    font-weight: 800;
    margin: 20px 0px 10px 0px;
    color: #FFFFFF;
    background-color: transparent;
    justify-content: center; /* 水平居中 */
    align-items: center;
}
.mask-case-section .mask-header {
    color: #0043FF;
}

.mask-header h3 {
    text-align: center;
}

.mask-left {
    width: 16px;
    height: 16px;
    position: absolute;
    left: 32px;
    top: 34px;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.mask-close {
    width: 16px;
    height: 16px;
    position: absolute;
    right: 32px;
    top: 34px;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}
.mask-case-section .mask-close {
    color: #0043FF;
}
.mask-content {
    width: auto;
    height: auto;
    margin: 10px;
    background: linear-gradient( 180deg, #FFFFFF 0%, #EFEEF3 100%);
    border-radius: 32px;
}
.mask-case-content {
    width: auto;
    height: auto;
    margin: 10px;
    background: transparent;
    border-radius: 32px;
}

.content-cust {
    width: 100%;
    height: auto;
    margin-top: 0px;
    margin-bottom: 20px;
    padding: 20px 50px;
    flex-direction: column; /* 明确指定竖向排列 */
    text-align:center;
    align-items: center; /* 垂直居中 */
    gap: 20px; /* 元素间距 */
}
.mask-case-content .content-cust {
    max-width: 600px;
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
}
/* 隐藏滚动条上下箭头 - 针对 Webkit 浏览器 */
.content-cust::-webkit-scrollbar-button {
    display: none; /* 隐藏滚动条按钮（上下箭头） */
    height: 0;
    background: transparent;
}
/* 可选：自定义滚动条样式使其更美观 */
.content-cust::-webkit-scrollbar {
    width: 8px; /* 滚动条宽度 */
}

.content-cust::-webkit-scrollbar-track {
    background: #f1f1f1; /* 滚动条轨道背景 */
    border-radius: 4px;
}

.content-cust::-webkit-scrollbar-thumb {
    background: #c1c1c1; /* 滚动条滑块颜色 */
    border-radius: 4px;
}

    .content-cust::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8; /* 鼠标悬停时滑块颜色 */
    }
.content-cust p {
    text-align: left;
    line-height: 1.8;
    text-indent: 0em;
    white-space: pre-line; /* 保留HTML中的换行，并按需自动换行 */
    margin: 0 0 0.5em 0; /* 段落间距为1个字符 */
}
.content-btn {
    width: 100%;
    height: 58px;
    display: flex; /* 使用flex布局 */
    flex-direction: row; /* 明确指定横向排列 */
    justify-content: space-between; /* 左右分布 */
    align-items: center; /* 垂直居中 */
    gap: 20px;
    padding: 0px 50px;
    margin: 20px auto;
}

    .content-btn .subclose-btn {
        width: 200px;
        height: 58px;
        background: #FFFFFF;
        color: #0043FF; /* 添加文字颜色 */
        font-size: 20px;
        border-radius: 200px;
        display: flex; /* 使用flex布局 */
        justify-content: center; /* 水平居中 */
        align-items: center; /* 垂直居中 */
        margin: 0 auto;
        cursor: pointer;
        border: 1px solid #0043FF;
    }

    .content-btn .subnext-btn {
        width: 200px;
        height: 58px;
        background: linear-gradient( 180deg, #0043FF 0%, #005EFF 100%);
        font-size: 20px;
        border-radius: 200px;
        display: flex; /* 使用flex布局 */
        justify-content: center; /* 水平居中 */
        align-items: center; /* 垂直居中 */
        color: #FFFFFF; /* 添加文字颜色 */
        margin: 0 auto;
        cursor: pointer;
    }

.caseTip-mark {
    width: 39px;
    height: 33px;
    position: absolute;
    left: 50px;
    top: 25px;
    border: none;
    background: url(images/caseTip-mark.png) center/cover no-repeat;
}

/* select2 相关样式*/
.select2-container .select2-choice {
    border-radius: 0;
    height: 34px;
    line-height: 34px;
}

.select2-container.select2-drop-above .select2-choice {
    border-radius: 0;
}

.select2-container[class*=input-] {
    max-width: none;
}

.select2-container.input-mini {
    min-width: 100px;
}

.select2-container .select2-choice abbr, .select2-search-choice-close {
    background: 0 0;
}

    .select2-container .select2-choice abbr:before, .select2-search-choice-close:before {
        font-family: FontAwesome;
        font-size: 12px;
        display: inline;
        content: "\f00d";
        color: #888;
        position: relative;
        top: -1px;
    }

    .select2-container .select2-choice abbr:hover:before, .select2-search-choice-close:hover:before {
        color: #555;
    }

    .select2-container .select2-choice abbr:before {
        top: -7px;
    }

    .select2-search-choice-close:hover {
        text-decoration: none !important;
    }

.select2-drop {
    border-radius: 0;
    border: 1px solid #4492C9;
    border-width: 0 1px 3px;
    border-color: #005EFF;
    box-shadow: 0 0 5px rgba(0, 94, 255, 0.3); /* 可选：添加发光效果 */
}

    .select2-drop.select2-drop-above {
        border-radius: 0;
    }

.select2-container .select2-choice {
    background: #FAFAFA none;
}

.select2-container-active .select2-choice, .select2-container-active .select2-choices, .select2-dropdown-open.select2-drop-above .select2-choice, .select2-dropdown-open.select2-drop-above .select2-choices, .select2-container-multi.select2-container-active .select2-choices {
    border-color: #005EFF;
    box-shadow: 0 0 5px rgba(0, 94, 255, 0.3); /* 可选：添加发光效果 */
}

.select2-results .select2-highlighted {
    background: #316AC5;
}

.select2-container .select2-choice .select2-arrow {
    border-radius: 0;
    background: transparent none;
    border: none;
}

    .select2-container .select2-choice .select2-arrow b {
        background: 0 0;
    }

        .select2-container .select2-choice .select2-arrow b:before {
            font-family: FontAwesome;
            font-size: 12px;
            display: inline;
            content: "\f0d7";
            color: #888;
            position: relative;
            left: 5px;
        }

.select2-dropdown-open .select2-choice .select2-arrow b:before {
    content: "\f0d8";
}

.select2-search .select2-input {
    background: #fff none;
    margin-top: 4px;
}

.select2-search:after {
    font-family: FontAwesome;
    font-size: 14px;
    display: inline;
    content: "\f002";
    color: #777;
    position: relative;
    top: 0;
    left: -20px;
    z-index: 0;
}

.select2-dropdown-open.select2-drop-above .select2-choice, .select2-dropdown-open.select2-drop-above .select2-choices {
    background-image: none;
    background-color: #F6F6F6;
}

.select2-container-multi .select2-choices .select2-search-field input {
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    background: none !important;
    font-size: 14px;
}

.select2-container-multi .select2-choices .select2-search-choice {
    line-height: 16px;
    padding-bottom: 4px;
}

.select2-container-active .select2-choice, .select2-container-active .select2-choices, .select2-container-multi.select2-container-active .select2-choices, .select2-dropdown-open.select2-drop-above .select2-choice, .select2-dropdown-open.select2-drop-above .select2-choices {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.select2-search input.select2-active {
    background-color: #FFF;
    position: relative;
    z-index: 1;
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-resolution:144dpi) {
    .select2-search input, .select2-search-choice-close, .select2-container .select2-choice abbr, .select2-container .select2-choice div b {
        background-image: none !important;
        background-size: auto !important;
    }

    .select2-search input {
        background-position: auto !important;
    }
}

.select2-container-active.select2-dropdown-open .select2-choice {
    background-repeat: repeat-x;
    background-image: linear-gradient(to bottom,#eee 0,#fff 100%);
}

.select2-container-active.select2-drop-above .select2-choice {
    background-repeat: repeat-x;
    background-image: linear-gradient(to bottom,#fff 0,#eee 100%);
}

.form-group.has-error .select2-choice, .form-group.has-error .select2-choices {
    border-color: #f2a696 !important;
}

.form-group.has-info .select2-choice, .form-group.has-info .select2-choices {
    border-color: #72aec2 !important;
}

.form-group.has-warning .select2-choice, .form-group.has-warning .select2-choices {
    border-color: #e3c94c !important;
}

.form-group.has-success .select2-choice, .form-group.has-success .select2-choices {
    border-color: #9cc573 !important;
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min-resolution:144dpi) {
    .select2-search input, .select2-search-choice-close, .select2-container .select2-choice abbr, .select2-container .select2-choice .select2-arrow b {
        background-image: none !important;
        background-repeat: no-repeat !important;
        background-size: auto !important;
    }

    .select2-search input {
        background-position: auto !important;
    }
}

.select2-container-multi.tag-input-style .select2-choices .select2-search-choice {
    background-image: none;
    background-color: #91b8d0;
    color: #FFF;
    display: inline-block;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 3px;
    margin-right: 0;
    padding: 6px 22px 7px 9px;
    position: relative;
    text-shadow: 1px 1px 1px rgba(0,0,0,.15);
    transition: all .2s ease 0s;
    vertical-align: baseline;
    white-space: nowrap;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
}

    .select2-container-multi.tag-input-style .select2-choices .select2-search-choice .select2-search-choice-close {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: auto;
        width: 18px;
        height: auto;
        line-height: 25px;
        text-align: center;
    }

        .select2-container-multi.tag-input-style .select2-choices .select2-search-choice .select2-search-choice-close:before {
            color: #FFF;
            position: static;
            font-size: 11px;
        }

        .select2-container-multi.tag-input-style .select2-choices .select2-search-choice .select2-search-choice-close:hover {
            background-color: rgba(0,0,0,.2);
        }

            .select2-container-multi.tag-input-style .select2-choices .select2-search-choice .select2-search-choice-close:hover:before {
                color: #FFF;
            }

/* table列表样式*/
.table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    /*border-radius: 8px;*/
    overflow: hidden;
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
}

    .table thead {
        background: #F6FAFF;
    }

    .table th {
        padding: 16px 12px;
        text-align: left;
        font-weight: 600;
        color: #222;
        border-bottom: 2px solid #E1E1E6;
        font-size: 14px;
    }

    .table td {
        padding: 14px 12px;
        border-bottom: 1px solid #F0F0F5;
        color: #000;
        font-size: 14px;
    }

    .table tbody tr:hover {
        background-color: #F9F9FB;
    }
    .table tr td span {
        margin-left: 10px;
    }
        .table tr td span:first-child {
            margin-left: 0px;
        }

/* 标签相关样式*/
.splabel {
    color: #000000;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    line-height: 16px;
    display: inline-block;
    border-radius: 4px;
    font-weight: 500;
    padding: 5px 15px;
    min-width: 100px;
    text-align: center;
}

.label-success, .label-info:focus {
    background-color: #E9FBF0 !important;
    border-color: #E9FBF0;
    color: #1DD263;
}

.label-info, .label-info:focus {
    background-color: #E2ECFF !important;
    border-color: #E2ECFF;
    color: #3D70FF;
}

.label-warning, .label-warning:focus {
    background-color: #ffedd5 !important;
    border-color: #ffedd5;
    color: #ff6000;
}

.label-danger, .label-danger:focus {
    background-color: #FFEBEB !important;
    border-color: #FFEBEB;
    color: #FF4B4B;
}

.label-pink, .label-pink:focus {
    background-color: #ffc5db !important;
    border-color: #ffc5db;
    color: #ff1e73;
}

.label-purple, .label-purple:focus {
    background-color: #e7deff !important;
    border-color: #e7deff;
    color: #7e4eff;
}
.label-intelligent, .label-intelligent:focus {
    background-color: #005EFF !important;
    border-color: #005EFF;
    color: #FFFFFF;
}
.label-recognifail, .label-recognifail:focus {
    background-color: #F93D3D !important;
    border-color: #F93D3D;
    color: #FFFFFF;
}

.label-grey, .label-grey:focus {
    background-color: #EEEEEE !important;
    border-color: #EEEEEE;
    color: #999999;
}
/* 响应式设计 */
@media (max-width: 768px) {
    .table {
        font-size: 12px;
    }

        .table th,
        .table td {
            padding: 10px 8px;
        }
}
/* 分页样式 */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    background: #fff;
    /*border-radius: 8px;*/
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
    /*margin-top: 20px;*/
}

.pagination-info {
    color: #666;
    font-size: 14px;
    padding: 0 20px;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #E1E1E6;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

    .pagination-btn:hover:not(:disabled) {
        border-color: #3D70FF;
        color: #3D70FF;
    }

    .pagination-btn.active {
        background: #3D70FF;
        border-color: #3D70FF;
        color: #fff;
    }
        .pagination-btn.active:hover:not(:disabled) {
            color: #fff;
        }

    .pagination-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.pagination-ellipsis {
    padding: 0 5px;
    color: #999;
}

.pagination-size select {
    padding: 8px 12px;
    border: 1px solid #E1E1E6;
    border-radius: 4px;
    background: #fff;
    color: #666;
    font-size: 14px;
    margin: 0 20px;
}

.fa-chevron-left:before {
    content: "<";
    font-family: FontAwesome;
    font-weight: 900;
    font-style: normal; /* 取消斜体 */
}

.fa-chevron-right:before {
    content: ">";
    font-family: FontAwesome;
    font-weight: 900;
    font-style: normal; /* 取消斜体 */
}

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-size select:focus {
    border-color: #005EFF; /* 选中时边框变蓝 */
    outline: none; /* 移除默认轮廓 */
    box-shadow: 0 0 5px rgba(0, 94, 255, 0.3); /* 可选：添加发光效果 */
}
/* 响应式设计 */
@media (max-width: 768px) {
    .pagination {
        flex-direction: column;
        gap: 15px;
    }

    .pagination-info {
        order: 3;
    }
}

.Stepmask-section {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center; /* 水平居中 */
    flex-direction: row; /* 水平排列 */
    position: relative; /* 创建定位上下文 */
}
.Stepmask-content {
    width: auto;
    height: auto;
    margin: 10px;
    background: transparent;
    border-radius: 32px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start; /* 水平居中 */
    flex-direction: row; /* 水平排列 */
    position: relative; /* 创建定位上下文 */
}
.Stepmask-content-cust {
    width: 180px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* 水平居中 */
    flex-direction: column; /* 竖直排列 */
    position: relative; /* 创建定位上下文 */
    gap:20px;
}
    .Stepmask-content-cust p {
        color: rgba(255,255,255,0.8);
        text-align: center;
        font-size:20px;
    }
    .Stepmask-content-cust .success-show {
        display: none;
    }
    .Stepmask-content-cust .failure-show {
        display: none;
    }
    .Stepmask-content-cust .active-show {
        display: none;
    }
    .Stepmask-content-cust .active-hide {
        display: block;
    }

.Stepmask-casesetp {
    width: 170px;
    height: 170px;
    position: relative; /* 创建定位上下文 */
}
    .Stepmask-casesetp .casesetp-result {
        position: absolute; /* 绝对定位 */
        width: 54px;
        height: 54px;
        right: 10px; /* 右侧对齐 */
        bottom: 10px; /* 底部对齐 */
        z-index: 10; /* 确保图标在最上层 */
    }
.cust-success .casesetp-result {
    background: url(images/casesetp-success.png) center/contain no-repeat;
}
.cust-failure .casesetp-result {
    background: url(images/casesetp-failure.png) center/contain no-repeat;
}
.casesetp-recognize {
    background: url(images/casesetp-recognize0.png) center/contain no-repeat;
}
.cust-active .casesetp-recognize {
    background: url(images/casesetp-recognize1.png) center/contain no-repeat;
}
.cust-success .casesetp-recognize {
    background: url(images/casesetp-recognize1.png) center/contain no-repeat;
}
.cust-failure .casesetp-recognize {
    background: url(images/casesetp-recognize1.png) center/contain no-repeat;
}
.casesetp-generate {
    background: url(images/casesetp-generate0.png) center/contain no-repeat;
}
.cust-active .casesetp-generate {
    background: url(images/casesetp-generate1.png) center/contain no-repeat;
}
.cust-success .casesetp-generate {
    background: url(images/casesetp-generate1.png) center/contain no-repeat;
}
.cust-failure .casesetp-generate {
    background: url(images/casesetp-generate1.png) center/contain no-repeat;
}
.casesetp-analysis {
    background: url(images/casesetp-analysis0.png) center/contain no-repeat;
}
.cust-active .casesetp-analysis {
    background: url(images/casesetp-analysis1.png) center/contain no-repeat;
}
.cust-success .casesetp-analysis {
    background: url(images/casesetp-analysis1.png) center/contain no-repeat;
}
.cust-failure .casesetp-analysis {
    background: url(images/casesetp-analysis1.png) center/contain no-repeat;
}
.cust-active p {
    color: rgba(255,255,255,1);
    font-weight: bold;
    font-size: 22px;
}
.cust-active .active-show {
    display: block;
}
.cust-active .active-hide {
    display: none;
}
.cust-success .success-show {
    display: block;
}
.cust-success .failure-show {
    display: none;
}
.cust-success .active-hide {
    display: none;
}
.cust-failure .success-show {
    display: none;
}
.cust-failure .failure-show {
    display: block;
}
.cust-failure .active-hide {
    display: none;
}

/* ----- 进度条轨道（外壳）----- */
.Stepmask-track {
    display: none;
    width: 100%;
    height: 16px;
    background: #FFFFFF;
    border-radius: 300px;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden; /* 保证滑块超出部分不可见，形成在轨道内滚动 */
}
/* ----- 滑块：固定宽度，纯色，无伸缩 ----- */
.Stepmask-slider {
    height: 100%;
    width: 25%; /* 固定宽度为轨道25%，不再变化 */
    background: #014BFF; /* 默认蓝色，各款式单独覆盖 */
    border-radius: 300px; /* 圆角同轨道 */
    box-shadow: inset 0 2px 6px rgba(255,255,255,0.8), inset 0 -2px 4px rgba(0,0,0,0.1);
    /* 核心动画：水平往返滚动 (从左到右，再从右到左) 同频率 */
    animation: shuttleOcea 3s infinite cubic-bezier(0.45, 0, 0.55, 1); /* 对称缓动，匀速感 */
    transform-origin: center center;
    will-change: transform;
    /* 无任何宽度变化 —— 固定宽度 */
}

/* 同频率加载动画：从紧贴左侧 => 紧贴右侧 => 从左侧再次开始 */
@keyframes shuttleOcea {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(400%);
    }
}
.cust-active .Stepmask-track {
    display: block;
}

.Stepmask-content-dot {
    width: 160px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center; /* 水平居中 */
}
/* 圆点容器 - 水平排列 */
.dot-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 30px 0 40px 0;
    flex-wrap: wrap;
}
/* 基础圆点样式 */
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5); /* 默认暗色（不亮状态） */
    transition: background-color 0.1s ease; /* 平滑过渡，但不是必须，动画会覆盖 */
    /* 动画：每个点独立控制自己的亮起时段 */
    animation: dotGlow 2.4s infinite ease-in-out;
}

/* 三个点分别设置不同的动画延迟，实现依次亮起 */
.dot-1 {
    animation-delay: 0s; /* 第一个点先亮 */
}

.dot-2 {
    animation-delay: 0.8s; /* 第二个点延迟0.8秒亮 */
}

.dot-3 {
    animation-delay: 1.6s; /* 第三个点延迟1.6秒亮 */
}

/* 亮起动画：从暗到亮再回到暗，形成一个脉冲 */
@keyframes dotGlow {
    0%, 100% {
        background-color: rgba(255,255,255,0.5); /* 暗色（未点亮） */
        transform: scale(1);
        /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), inset 0 2px 6px rgba(255,255,255,0.6);*/
    }

    30% {
        background-color: rgba(255,255,255,1); /* 亮色（亮黄） */
        transform: scale(1.15);
        /*box-shadow: 0 10px 20px rgba(255, 200, 50, 0.4), inset 0 2px 8px white;*/
    }

    60% {
        background-color: rgba(255,255,255,0.5); /* 恢复暗色 */
        transform: scale(1);
        /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), inset 0 2px 6px rgba(255,255,255,0.6);*/
    }
}