/* 表格外部容器：允许水平和垂直滚动 */
.table-moren {
    overflow-x: auto; /* 允许水平滚动 */
    overflow-y: auto; /* 允许垂直滚动 */
    max-height: 70vh; /* 最大高度为视口的 80% */
    border: 1px solid #ddd; /* 外部容器边框 */
    position: relative; /* 确保子元素 sticky 定位相对该容器 */
    box-sizing: border-box; /* 确保滚动条计算在内 */
    width: 100%; /* 确保容器占据可用宽度 */
    padding: 0px;
}

/* 表格样式 */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

/* 表格标题 */
table caption {
    caption-side: top;
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center;
}

/* 单元格样式 */
table th,
table td {
    word-wrap: break-word;
    word-break: break-all;
    padding: 8px; /* 单元格内边距 */
    border: 1px solid #ddd; /* 单元格边框 */
    line-height: 1.5em; /* 设置文字行高 */
    overflow: hidden; /* 隐藏超出内容 */
    text-overflow: ellipsis; /* 超出内容显示省略号 */
    min-width: 20px;
}

/* 表头固定 */
table th {
    background-color: #e6e6e6; /* 表头背景色 */
    color: #015eaa;
    font-weight: bold;
    position: sticky; /* 固定表头 */
    top: 0; /* 表头固定在容器顶部 */
    z-index: 3; /* 确保表头在内容之上 */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); /* 添加投影效果 */
}



/* 偶数行背景色 */
table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* 鼠标悬停行高亮 */
table tr:hover {
    background-color: #f1f1f1;
}

.sort-icon {
    margin-left: 5px;
    font-size: 12px;
}


/* 搜索表单样式 */

.patgw-sec {
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    position: relative;
    margin: 10px; /* 外边距 */

}

.patgw-sec .patgw-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.patgw-sec .patgw-form form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.patgw-sec .patgw-form input,
.patgw-sec .patgw-form select {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    min-width: 180px;
    box-sizing: border-box;
}

.patgw-sec .patgw-form button {
    padding: 10px 20px;
    font-size: 14px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.patgw-sec .patgw-form button:hover {
    background-color: #0056b3;
}

#addPatentButton {
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
}

#addPatentButton:hover {
    background-color: #218838;
}

.patgw-sec .btn-danger {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
}

.patgw-sec .btn-danger:hover {
    background-color: #c82333;
}

.patgw-sec .btn-primary {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
}

.patgw-sec .btn-primary:hover {
    background-color: #0056b3;
}


.patgw-form{
    button[type="button"] {
        background-color: #9a9a9a; 
        color: #ffffff; 
        border-radius: 5px;       
        padding: 10px 12px;        /* 内边距 */
        font-size: 14px;         
        cursor: pointer;          /* 鼠标悬停显示手型 */
        transition: all 0.3s ease; /* 动画过渡效果 */
    }
    
    /* 鼠标悬停效果 */
    button[type="button"]:hover {
        background-color: #494949; /* 鼠标悬停时更深的粉色 */
    }
    
    /* 鼠标按下效果 */
    button[type="button"]:active {
        background-color: #3c3b3b; /* 更深的背景 */
    }
    
}


/* 操作区容器 */
.pat-caozuo {
    display: flex;
    justify-content: space-between; /* 左右两端对齐 */
    align-items: center; /* 垂直居中对齐 */
    gap: 20px;
    margin-top: 20px;
}

/* 左侧统计区域 */
.patgw-tongji {
    display: flex;
    flex-direction: row; /* 横向排列 */
    gap: 20px; /* 统计项间距 */
    font-size: 14px;
    color: #333;
}

.patgw-tongji p {
    margin: 0;
    white-space: nowrap; /* 防止内容换行 */
}

.patgw-tongji p span {
    font-weight: bold;
    color: #0073e6; /* 蓝色高亮 */
    font-size: 16px;
}

/* 右侧操作按钮区域 */
.patgw-caozuo {
    display: flex;
    flex-direction: row; /* 横向排列 */
    gap: 10px; /* 按钮间距 */
}

/* 操作按钮 */
.patgw-caozuo button {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #ccc;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap; /* 防止按钮文字换行 */
}

.patgw-caozuo button:hover {
    background-color: #0073e6;
    color: #fff;
    border-color: #0073e6;
}

/* 批量编辑容器 */
#bulk-edit-container {
    display: none;
    z-index: 1000;
}

#bulk-edit-container label {
    font-size: 14px;
    margin-right: 10px;
    color: #333;
}

#bulk-edit-container select,
#bulk-edit-container input {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
}

/* 背景遮罩层 */
#bulk-edit-container-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}




/* 弹窗样式 */
#addPatentModal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 500px;
    max-width: 90%;
}

#addPatentModal .modal-content {
    position: relative;
}

#addPatentModal .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

#addPatentModal h3 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

#addPatentModal form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#addPatentModal form input,
#addPatentModal form button {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

#addPatentModal form input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 3px rgba(0, 123, 255, 0.5);
}

#addPatentModal form button {
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

#addPatentModal form button:hover {
    background-color: #218838;
}



/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 10px;

}

.pagination a{
    color: #0249c3;
}


/* 专利文件处理区域样式 */
.zlwjcl {
    font-family: Arial, sans-serif;
    color: #333;
    padding: 20px;
    border-radius: 8px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 60px; /* 下边距 */
}

.zlwjcl h2 {
    text-align: center;
    color: #0056b3;
    margin: 0;
    padding-bottom: 20px;
}

.kscl {
    margin: 10px auto 0; /* 上边距10px，水平居中 */
    text-align: center; /* 容器内的内容居中 */
}

.kscl button {
    padding: 5px 5px; /* 增加按钮的内边距，使其与输入框匹配 */
    font-size: 18px; /* 增加字体大小 */
    width: 160px;
    height: 50px;
    background-color: #005ea2; /* 背景色 */
    color: #ffffff;
    border: none; /* 无边框 */

}

.kscl button:hover {
    box-shadow: 0 4px 8px rgba(25, 66, 234, 0.5); /* 鼠标悬停时增强投影效果 */
    background-color: #162E51; /* 背景色 */
}




.zlwjcl p {
    color: #7d7d7d;
    margin: 0;
}

#drop-area {
    border: 2px dashed #007bff;
    padding: 80px;
    text-align: center;
    cursor: pointer;
    margin-top: 20px;
    background: #fff;
    transition: background-color 0.3s ease;
    
}

#drop-area:hover {
    background-color: #eef0f3;
}

#file-list {
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
}


.upload-area {
    padding: 20px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
}

.file-list {
    margin-bottom: 20px;
}

 /* 拖动排序 */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: none;
    outline: none;
    font-size: 16px;  /* 设置文字大小为16px */
}

.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::placeholder {
    color: #7a7a7a;
    font-style: italic;
}


.sortable-fields {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
}

.sortable-fields li {
    flex: 1 1 5%;
    margin-bottom: 10px;
    color: #333;
    transition: transform 0.2s ease-in-out;
}

.sortable-fields li.dragging {
    opacity: 0.5;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .sortable-fields li {
        flex: 1 1 100%;
    }
}

.btn {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-success {
    background: linear-gradient(to right, #007bff, #0056b3);
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
}

.btn-success:hover {
    background: linear-gradient(to right, #0056b3, #003d80);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.btn-success:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}


.alert {
    padding: 15px;
    margin-top: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}



/* 自适应媒体查询 */
@media (max-width: 768px) {
    .zlwjcl {
        width: 100%; /* 在较小的屏幕上宽度为100% */
        padding: 10px;
    }
    #drop-area {
        padding: 20px;
    }
}



/* 进度条容器样式 */
progress {
    width: 100%;
    height: 20px;
    background-color: #444;
    border: 1px solid #000;
    border-radius: 10px;
    display: none;
    overflow: hidden; /* 确保进度条内部不溢出 */
}


/* 进度条样式，使用线性渐变创建更具科技感的效果 */
progress::-webkit-progress-bar {
    background-color: #444;
}

progress::-webkit-progress-value {
    background: linear-gradient(to right, #0bf, #04f);
    border-radius: 10px;
}

progress::-moz-progress-bar {
    background: linear-gradient(to right, #0bf, #04f);
    border-radius: 10px;
}

/* 百分比显示样式 */
#progress-percentage {
    font-size: 1.1em;
    text-align: center;
    margin-top: 5px;
    display: none;
}



/* 专利文件处理区域模式切换样式 */
.moshiqh {
    font-family: Arial, sans-serif;
    color: #333;
    background: #fefefe;
    padding: 20px;
    border-radius: 8px;
    margin: auto;
    width: 80%; /* 控制宽度，使之不会在大屏幕上过宽 */
    margin-top: 20px;
    margin-bottom: 60px; /* 下边距 */

}

.moshiqh p {
    color: #7d7d7d;
    margin: 0;
}


/* 批量输入样式 */
.plsosuo {
    margin: 40px auto 24px auto;
    border-radius: 24px;
    display: block;
    max-width: 1200px;
}

.plsosuo form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.plsosuo textarea {
    resize: vertical;
    border: 1px solid #d0d0d5;
    border-radius: 6px;
    padding: 12px;
    font-size: 15px;
    font-family: 'Consolas', 'Menlo', 'monospace';
    background: #fff;
    transition: border-color 0.2s;
    width: 100%;
    min-width: 200px;
    max-width: 100%;
}
.plsosuo textarea:focus {
    border-color: #409eff;
    outline: none;
}
.plsosuo button[type="submit"] {
    background: #1248a5;
    color: #fff;
    border: none;
    padding: 0 32px;
    height: 38px;
    font-size: 18px;
    letter-spacing: 2px;
    cursor: pointer;
    margin: 0;
    box-shadow: 0 2px 8px rgba(64,158,255,0.10);
    transition: background 0.2s, box-shadow 0.2s;
    width: 220px;
}

.plsosuo button[type="submit"]:hover {
    background: #0e3c8c;
}

.plsosuo div[style*="color:red"] {
    margin-top: 8px;
    color: #e74c3c !important;
    font-weight: 500;
    background: #fff0f0;
    border-radius: 4px;
    padding: 6px 10px;
    border: 1px solid #ffd6d6;
}

.plsosuo h2 {
    font-size: 20px;
    color: #a1a1a1;
    margin-top: 20px;    /* 增加上边距 */
    margin-bottom: 20px; /* 增加下边距 */
}

.plsosuo p {
    font-size: 14px;
    color: #a1a1a1;
}


.plsosuo input[type="file"]::-webkit-file-upload-button {
    background: #ffffff;
    color: #5f5e5e;
    border: none;
    border-radius: 4px;
    padding: 6px 16px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
}
.plsosuo input[type="file"]:hover::-webkit-file-upload-button {
    background: #e2e4e6;
}


/* 批量查询步骤区样式 */
#stepIndicator {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 17px;
    background: #f4f6fa;
    border-radius: 8px;
    padding: 12px 20px;
}
#stepIndicator span {
    transition: color 0.2s, font-weight 0.2s;
}


#stepIndicator .active {
    font-weight: bold;
    color: #1890ff;
}
#stepIndicator .arrow {
    color: #bfbfbf;
    font-size: 18px;
    font-weight: normal;
}


.step {
}
.step label {
    margin-right: 16px;
    font-size: 15px;
    color: #333;
}

.step input[type="text"], .step select, .step textarea {
    margin: 6px 0 16px 0;
    padding: 6px 10px;
    border: none;              /* 隐藏原来的黑色边框 */
    border-radius: 4px;
    font-size: 15px;
    width: 100%;
    box-sizing: border-box;
    outline: 1px solid #d9d9d9;/* 可选：用outline代替border，视觉更柔和 */
    transition: outline 0.2s;
}
.step input[type="text"]:focus, .step select:focus, .step textarea:focus {
    outline: 2px solid #1890ff; /* 聚焦时高亮 */
}

.step button {
    margin-top: 12px;
    margin-right: 10px;
    padding: 6px 22px;
    border-radius: 4px;
    border: none;
    background: #a9b7c2;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
}
.step button:hover {
    background: #013e9a;
}
.step #bill_fields {
    margin: 10px 0 10px 0;
    padding-left:
}

.newbut {
    background: #0548ae;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 38px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(82,196,26,0.08);
    transition: background 0.2s, box-shadow 0.2s;
    }

.newbut:hover {
    background: #032c6a;
    box-shadow: 0 4px 16px
}

/* 简单搜索表单样式 */
.sosuo {
    margin: 40px auto 24px auto;
    border-radius: 24px;
    display: block;
    max-width: 880px;
}
.sosuo form {
    width: 100%;
}
.sosuo-input-wrap {
    position: relative;
    width: 100%;
    display: flex;
}
.sosuo-input-wrap input[type="text"] {
    width: 100%;
    height: 55px;
    border: 1px solid #dcdfe6;
    border-radius: 20px;
    padding: 0 110px 0 20px; /* 右侧留出按钮空间 */
    font-size: 16px;
    background: #fff;
    outline: none;
    transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
    box-shadow: 0 0 2px rgba(45, 45, 46, 0.22);
}
.sosuo-input-wrap input[type="text"]:focus {
    background: #fff;
    box-shadow: 0 0 0 1px #0557ca;
    border-color: #043982;
    outline: none; /* 去除默认黑色外框 */
    transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;

}
.sosuo-input-wrap button {
    position: absolute;
    top: 1px;
    right: 0px;
    height: 55px;
    border: none;
    border-radius: 0 20px 20px 0; /* 只保留右侧圆角，左侧无圆角 */
    background: #043982;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    padding: 0 24px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
    z-index: 2;
    line-height: 36px;
}
.sosuo-input-wrap button:hover {
    background: #074bab;
}

.sosuo h2 {
    font-size: 20px;
    color: #a1a1a1;
    margin-top: 20px;    /* 增加上边距 */
    margin-bottom: 20px; /* 增加下边距 */
}

.sosuo p {
    font-size: 14px;
    color: #a1a1a1;
}

/* 多条件组合搜索表单样式 */
.icgjsosuo {
    margin: 40px auto 24px auto;
    border-radius: 24px;
    display: block;
    max-width: 880px;
}


.icgjsosuo h2 {
    font-size: 20px;
    color: #a1a1a1;
    margin-top: 20px;    /* 增加上边距 */
    margin-bottom: 20px; /* 增加下边距 */
}

.icgjsosuo p {
    font-size: 14px;
    color: #a1a1a1;
}

#searchForm {
    display: flex;
    flex-direction: column;
}
#conditions {
    display: flex;
    flex-direction: column;
}
.condition-row {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
}
.field-select, .op-select, .val-input, .val-input-start, .val-input-end {
    height: 42px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    padding: 0 8px;
    font-size: 14px;
    margin-right: 2px;
    outline: none !important;           /* 去除默认黑色外框 */
    box-shadow: 0 0 2px #409eff22;

}
.val-input, .val-input-start, .val-input-end {
    width: 560px;
}



@media (max-width: 600px) {
    .icgjsosuo {
        padding: 16px 8px;
        max-width: 100%;
    }
    .condition-row {
        flex-direction: column;
        align-items: stretch;
    }
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 18px;
}

button.but-chaxun,
button.but-reset {
    display: inline-block;
    margin: 0;
}

button.but-chaxun {
    background: #1248a5;
    color: #fff;
    border: none;
    padding: 0 32px;
    height: 38px;
    font-size: 18px;
    letter-spacing: 2px;
    cursor: pointer;
    margin: 0;
    box-shadow: 0 2px 8px rgba(64,158,255,0.10);
    transition: background 0.2s, box-shadow 0.2s;
    width: 120px;
}
button.but-chaxun:hover {
    background: #286ce1;
    box-shadow: 0 4px 16px rgba(64,158,255,0.18);
}


button.but-reset {
    background: rgb(194, 194, 194);
    color: #fff;
    border: none;
    padding: 0 32px;
    height: 38px;
    font-size: 18px;
    letter-spacing: 2px;
    cursor: pointer;
    margin: 0;
    box-shadow: 0 2px 8px rgba(64,158,255,0.10);
    transition: background 0.2s, box-shadow 0.2s;
    width: 120px;
}
button.but-reset:hover {
    background: #cf9236;
    box-shadow: 0 4px 16px rgba(230,162,60,0.18);
}

button.btn-add {
    background: #ffffff;
    color: #747474;
    border: none;
    border-radius: 4px;
    padding: 0 16px;
    height: 32px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 4px;
    margin-right: 2px;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(103,194,58,0.10);
}
button.btn-add:hover {
    background: #eaeaea;
    box-shadow: 0 2px 8px rgba(103,194,58,0.18);
}

button.btn-remove {
    background: #d8d8d8;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 0 16px;
    height: 32px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 4px;
    margin-right: 2px;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(245,108,108,0.10);
}
button.btn-remove:hover {
    background: #ababab;
    box-shadow: 0 2px 8px rgba(245,108,108,0.18);
}

/* 结果统计区 */
#resultCount {
  color: #888;
  font-size: 15px;
}
#resultCount .highlight-num {
  color: #d80000;
  font-weight: bold;
  font-size: 1.1em;
}


/* 导出excel按钮 */
button.but-excel {
    background: #ffffff;
    color: #6a6a6a;
    border: none;
    border-radius: 4px;
    padding: 0 16px;
    height: 32px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 4px;
    margin-right: 2px;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(245,108,108,0.10);
}
button.but-excel:hover {
    background: #eeeeee;
    box-shadow: 0 2px 8px rgba(245,108,108,0.18);
}

/* 遮罩动画 */
#loadingMask {
    position: fixed;
    inset: 0;
    background: rgba(115, 118, 123, 0.28); /* 更深色，提升聚焦感 */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background 0.5s;
}


@keyframes spin {
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px #2c3e50;
    padding: 8px 24px;
    background: rgba(64,158,255,0.18);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(64,158,255,0.10);
    margin-top: 0;
}

/* 分页模块 */
#pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 24px 0 12px 0;
    font-size: 15px;
    flex-wrap: wrap;
}

#pagination button {
    background: #fff;
    color: #409eff;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    padding: 4px 14px;
    margin: 0 2px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
    outline: none;
}

#pagination button[disabled] {
    color: #bbb;
    border-color: #eee;
    background: #f7f7f7;
    cursor: not-allowed;
}

#pagination button:hover:not([disabled]) {
    background: #409eff;
    color: #fff;
    border-color: #409eff;
}

#pagination button[style*="font-weight:bold"] {
    background: #409eff !important;
    color: #fff !important;
    border-color: #409eff !important;
}

#pagination select,
#pagination input[type="number"] {
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 15px;
    margin: 0 4px;
}

#pagination span {
    color: #666;
    margin: 0 4px;
    font-size: 15px;
}

/* ic搜索结果列表 */
.icsosuo-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    font-size: 14px;
    color: #333;
}
.icsosuo-table th,
.icsosuo-table td {
    border: 1px solid #e0e0e0;
    padding: 8px 12px;
    text-align: left;
    vertical-align: top;
    min-width: 80px; /* 设置最小宽度 */
}


/* ic详情页信息展示 */

.icxqy-title {
  padding: 32px 0 18px 0;
  text-align: center;
  border-radius: 10px 10px 0 0;
  margin-bottom: 18px;
}

.icxqy-title h1 {
  font-size: 26px;
  font-weight: 700;
  color: #084681;
  margin: 0 0 0px 0;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 1300px) {
    .icxqy-title {
    padding: 14px 0 6px 0;
    shadow: none;
    }
    .icxqy-title h1  {
    font-size: 20px;
  }
}

@media (max-width: 1000px) {
  .icxqy-title h1  {
    font-size: 18px;
  }
}

.icxqy-footer {
  margin: 32px auto 0 auto;
  border-radius: 0 0 10px 10px;
  text-align: center;
  font-size: 14px;
  color: #888;
  letter-spacing: 1px;
}

.icxqy-footer p {
  margin: 0;
  line-height: 1.8;
}

/* 信息展示部分 */
#ic-detail {
  width: 1200px;
  max-width: 98vw;
  margin: 0px auto 0px auto;
  padding: 32px 28px 24px 28px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  box-sizing: border-box;
  min-height: 300px;
}

#ic-detail h4 {
  font-size: 18px;
  color: #4a4949;
}


.icxqy-table {
  width: 1150px;
  border-collapse: collapse;
  margin: 1em 0;
  font-size: 14px;
  color: #333;
  margin: 1em auto;
}

.icxqy-table th,
.icxqy-table td {
  border: 1px solid #e0e0e0;
  padding: 8px 12px;
  text-align: left;
  vertical-align: top;
}

.icxqy-table th {
    background: #f3f9f9;
    color: #222;
    font-weight: normal; /* 取消加粗 */
}

.icxqy-table .tb {
  background: #f3f9f9;
  color: #2a2a2a;
  width: 120px;
  font-size: 14px;
}

@media (max-width: 1300px) {
    #ic-detail {
    width: 900px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: none;
    }
    #ic-detail h4 {
    font-size: 16px;
    }

  .icxqy-table  {
    width: 850px;
  }

@media (max-width: 1000px) {
    #ic-detail {
    width: 800px;
    padding: 5px;
    border-radius: 0;
    box-shadow: none;
    }
    #ic-detail h4 {
    font-size: 14px;
    }
  .icxqy-table  {
    width: 760px;
  }

  .icxqy-table .tb {
    width: 90px;
    font-size: 12px;
  }
}


