/**
 * EyouCMS同城电话本插件样式文件
 * @version 1.0.0
 * @author EyouCMS
 */

/* ========== 通用样式 ========== */
.cityphone-container {
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.cityphone-container * {
    box-sizing: border-box;
}

/* 清除浮动 */
.cityphone-clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* 响应式图片 */
.cityphone-img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== 按钮样式 ========== */
.cityphone-btn {
    display: inline-block;
    padding: 8px 16px;
    margin: 4px 2px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cityphone-btn-primary {
    color: #fff;
    background-color: #409EFF;
    border-color: #409EFF;
}

.cityphone-btn-primary:hover {
    background-color: #66b1ff;
    border-color: #66b1ff;
    color: #fff;
    text-decoration: none;
}

.cityphone-btn-success {
    color: #fff;
    background-color: #67C23A;
    border-color: #67C23A;
}

.cityphone-btn-success:hover {
    background-color: #85ce61;
    border-color: #85ce61;
    color: #fff;
    text-decoration: none;
}

.cityphone-btn-warning {
    color: #fff;
    background-color: #E6A23C;
    border-color: #E6A23C;
}

.cityphone-btn-warning:hover {
    background-color: #ebb563;
    border-color: #ebb563;
    color: #fff;
    text-decoration: none;
}

.cityphone-btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
}

/* ========== 悬浮电话本组件 ========== */
.cityphone-float-widget {
    position: fixed;
    right: 20px;
    top: 50%;
    z-index: 9999;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    width: 280px;
    max-height: 400px;
    overflow: hidden;
    font-family: "Microsoft YaHei", Arial, sans-serif;
}

.cityphone-float-header {
    background: #409EFF;
    color: white;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    position: relative;
}

.cityphone-float-header i {
    margin-right: 5px;
}

.cityphone-float-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 16px;
    font-weight: normal;
    user-select: none;
}

.cityphone-float-content {
    max-height: 320px;
    overflow-y: auto;
}

.cityphone-float-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 15px;
    transition: background 0.3s;
}

.cityphone-float-item:hover {
    background: #f8f9fa;
}

.cityphone-float-item:last-child {
    border-bottom: none;
}

.cityphone-float-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 3px;
    line-height: 1.4;
}

.cityphone-vip-badge {
    background: #ff6b00;
    color: white;
    padding: 1px 4px;
    border-radius: 2px;
    font-size: 10px;
    margin-left: 5px;
    font-weight: normal;
}

.cityphone-phone-info {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.cityphone-phone-number {
    color: #409EFF;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

.cityphone-mobile-number {
    color: #67c23a;
    margin-left: 5px;
    cursor: pointer;
    text-decoration: none;
}

.cityphone-address {
    font-size: 11px;
    color: #999;
}

.cityphone-address i {
    margin-right: 3px;
}

.cityphone-float-footer {
    text-align: center;
    padding: 10px;
    background: #f8f9fa;
}

.cityphone-float-footer a {
    color: #409EFF;
    text-decoration: none;
    font-size: 12px;
}

.cityphone-float-footer a:hover {
    text-decoration: underline;
}

.cityphone-float-footer i {
    margin-right: 3px;
}

/* 滚动条样式 */
.cityphone-float-content::-webkit-scrollbar {
    width: 4px;
}

.cityphone-float-content::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 2px;
}

.cityphone-float-content::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

/* ========== 前台主页面样式 ========== */
.cityphone-main {
    padding: 20px 0;
}

.cityphone-header {
    background: linear-gradient(135deg, #409EFF 0%, #66b1ff 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 30px;
}

.cityphone-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 300;
}

.cityphone-header p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

/* 搜索框样式 */
.cityphone-search-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    margin: -20px 20px 30px;
    position: relative;
    z-index: 10;
}

.cityphone-search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
}

.cityphone-form-group {
    flex: 1;
    min-width: 200px;
}

.cityphone-form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.cityphone-form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.cityphone-form-control:focus {
    outline: none;
    border-color: #409EFF;
    box-shadow: 0 0 0 2px rgba(64, 158, 255, 0.2);
}

.cityphone-search-btn-group {
    display: flex;
    gap: 10px;
}

/* 分类导航 */
.cityphone-category-nav {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 20px;
}

.cityphone-category-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
}

.cityphone-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cityphone-category-item {
    display: inline-block;
    padding: 8px 16px;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s;
}

.cityphone-category-item:hover,
.cityphone-category-item.active {
    background: #409EFF;
    color: white;
    text-decoration: none;
}

/* 电话列表样式 */
.cityphone-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.cityphone-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: all 0.3s;
    position: relative;
}

.cityphone-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cityphone-item-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.cityphone-item-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    margin-right: 15px;
    object-fit: cover;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 20px;
}

.cityphone-item-title {
    flex: 1;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.cityphone-item-badges {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}

.cityphone-badge {
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.cityphone-badge-vip {
    background: #ff6b00;
    color: white;
}

.cityphone-badge-hot {
    background: #f56c6c;
    color: white;
}

.cityphone-badge-recommend {
    background: #67c23a;
    color: white;
}

.cityphone-item-content {
    margin-bottom: 15px;
}

.cityphone-item-phones {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
}

.cityphone-phone-group {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cityphone-phone-group i {
    color: #409EFF;
    font-size: 16px;
}

.cityphone-phone-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.cityphone-phone-link:hover {
    color: #409EFF;
    text-decoration: none;
}

.cityphone-item-address {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.cityphone-item-address i {
    color: #999;
    margin-right: 5px;
}

.cityphone-item-description {
    color: #999;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cityphone-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.cityphone-item-stats {
    color: #999;
    font-size: 12px;
}

.cityphone-item-actions {
    display: flex;
    gap: 10px;
}

.cityphone-action-btn {
    padding: 5px 10px;
    background: none;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #666;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s;
}

.cityphone-action-btn:hover {
    background: #409EFF;
    border-color: #409EFF;
    color: white;
    text-decoration: none;
}

.cityphone-action-btn i {
    margin-right: 3px;
}

/* 分页样式 */
.cityphone-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
}

.cityphone-pagination a,
.cityphone-pagination span {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ddd;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.cityphone-pagination a:hover {
    background: #409EFF;
    border-color: #409EFF;
    color: white;
    text-decoration: none;
}

.cityphone-pagination .current {
    background: #409EFF;
    border-color: #409EFF;
    color: white;
}

/* 空状态 */
.cityphone-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.cityphone-empty i {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.cityphone-empty h3 {
    margin-bottom: 10px;
    color: #666;
}

/* ========== 详情页样式 ========== */
.cityphone-detail {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 20px;
}

.cityphone-detail-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.cityphone-detail-logo {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    margin-right: 20px;
    object-fit: cover;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 40px;
}

.cityphone-detail-info {
    flex: 1;
}

.cityphone-detail-title {
    font-size: 28px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.cityphone-detail-category {
    color: #409EFF;
    font-size: 14px;
    margin-bottom: 15px;
}

.cityphone-detail-phones {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.cityphone-detail-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
}

.cityphone-detail-phone i {
    color: #409EFF;
    font-size: 20px;
}

.cityphone-detail-phone a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.cityphone-detail-phone a:hover {
    color: #409EFF;
}

.cityphone-detail-content {
    margin-bottom: 20px;
}

.cityphone-detail-section {
    margin-bottom: 25px;
}

.cityphone-detail-section h3 {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #409EFF;
    display: inline-block;
}

.cityphone-detail-address {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.cityphone-detail-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* 地图容器 */
.cityphone-map-container {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
}

/* ========== 导航面包屑 ========== */
.cityphone-breadcrumb {
    background: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 20px;
}

.cityphone-breadcrumb a {
    color: #409EFF;
    text-decoration: none;
}

.cityphone-breadcrumb a:hover {
    text-decoration: underline;
}

.cityphone-breadcrumb .separator {
    margin: 0 8px;
    color: #999;
}

.cityphone-breadcrumb .current {
    color: #333;
}

/* ========== 页面头部 ========== */
.cityphone-page-header {
    text-align: center;
    margin-bottom: 30px;
}

.cityphone-page-header h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.cityphone-page-header p {
    color: #666;
    font-size: 16px;
}

/* ========== 统计栏 ========== */
.cityphone-stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.cityphone-stats-bar strong {
    color: #409EFF;
}

/* ========== 热门列表样式 ========== */
.cityphone-hot-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cityphone-hot-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
    transition: background 0.3s;
}

.cityphone-hot-item:hover {
    background: #e9ecef;
}

.cityphone-hot-number {
    width: 24px;
    height: 24px;
    background: #409EFF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-right: 10px;
}

.cityphone-hot-info {
    flex: 1;
}

.cityphone-hot-title {
    font-weight: 500;
    color: #333;
    margin-bottom: 3px;
}

.cityphone-hot-phone {
    font-size: 12px;
    color: #666;
}

.cityphone-hot-phone a {
    color: #409EFF;
    text-decoration: none;
}

/* ========== VIP列表样式 ========== */
.cityphone-vip-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cityphone-vip-item {
    padding: 10px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-radius: 4px;
    border-left: 4px solid #ff6b00;
}

.cityphone-vip-title {
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.cityphone-vip-phone {
    font-size: 12px;
}

.cityphone-vip-phone a {
    color: #ff6b00;
    text-decoration: none;
    font-weight: bold;
}

/* ========== 详情页样式扩展 ========== */
.cityphone-detail-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cityphone-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.cityphone-info-item {
    display: flex;
    align-items: center;
}

.cityphone-info-item label {
    min-width: 100px;
    color: #666;
    font-weight: normal;
    margin-bottom: 0;
}

.cityphone-info-item span {
    flex: 1;
    color: #333;
}

.cityphone-info-item a {
    color: #409EFF;
    text-decoration: none;
}

.cityphone-info-item a:hover {
    text-decoration: underline;
}

.cityphone-stats-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cityphone-stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.cityphone-stat-item i {
    color: #409EFF;
}

/* ========== 侧边栏样式 ========== */
.cityphone-sidebar-widget {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.cityphone-widget-title {
    background: #409EFF;
    color: white;
    padding: 15px 20px;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.cityphone-widget-title i {
    margin-right: 8px;
}

.cityphone-related-list {
    padding: 15px;
}

.cityphone-related-item {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cityphone-related-item:last-child {
    border-bottom: none;
}

.cityphone-related-title {
    font-weight: 500;
    margin-bottom: 5px;
}

.cityphone-related-title a {
    color: #333;
    text-decoration: none;
}

.cityphone-related-title a:hover {
    color: #409EFF;
}

.cityphone-related-phone {
    font-size: 13px;
    color: #666;
    margin-bottom: 3px;
}

.cityphone-related-phone a {
    color: #409EFF;
    text-decoration: none;
}

.cityphone-related-stats {
    font-size: 12px;
    color: #999;
}

.cityphone-quick-search {
    padding: 15px;
}

.cityphone-submit-info {
    padding: 15px;
    text-align: center;
}

.cityphone-submit-info p {
    color: #666;
    margin-bottom: 15px;
}

/* ========== 页面底部 ========== */
.cityphone-footer {
    background: #2c3e50;
    color: white;
    padding: 30px 0;
    margin-top: 50px;
}

.cityphone-footer-contact {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #34495e;
}

.cityphone-footer-links {
    text-align: center;
    margin-bottom: 15px;
}

.cityphone-footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.cityphone-footer-links a:hover {
    color: white;
}

.cityphone-footer-copyright {
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

/* ========== 消息提示样式 ========== */
.cityphone-message {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    font-size: 14px;
}

.cityphone-message-success {
    background: #f0f9ff;
    border: 1px solid #67c23a;
    color: #67c23a;
}

.cityphone-message-error {
    background: #fef0f0;
    border: 1px solid #f56c6c;
    color: #f56c6c;
}

/* ========== 加载和错误状态 ========== */
.cityphone-loading,
.cityphone-error {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 16px;
}

.cityphone-error {
    color: #f56c6c;
}

/* ========== 响应式设计 ========== */
@media (max-width: 768px) {
    .cityphone-float-widget {
        right: 10px;
        width: 250px;
        top: auto;
        bottom: 80px;
        transform: none;
    }
    
    .cityphone-header h1 {
        font-size: 24px;
    }
    
    .cityphone-search-box {
        margin: -20px 10px 20px;
        padding: 20px;
    }
    
    .cityphone-search-form {
        flex-direction: column;
    }
    
    .cityphone-form-group {
        min-width: auto;
    }
    
    .cityphone-search-btn-group {
        justify-content: center;
    }
    
    .cityphone-category-nav {
        margin: 0 10px 20px;
        padding: 15px;
    }
    
    .cityphone-list {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 0 10px 20px;
    }
    
    .cityphone-item {
        padding: 15px;
    }
    
    .cityphone-item-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cityphone-item-logo {
        margin-right: 0;
        margin-bottom: 10px;
        align-self: center;
    }
    
    .cityphone-item-phones {
        flex-direction: column;
        gap: 10px;
    }
    
    .cityphone-item-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .cityphone-detail {
        margin: 0 10px 20px;
        padding: 20px;
    }
    
    .cityphone-detail-header {
        flex-direction: column;
        text-align: center;
    }
    
    .cityphone-detail-logo {
        margin-right: 0;
        margin-bottom: 15px;
        align-self: center;
    }
    
    .cityphone-detail-phones {
        justify-content: center;
    }
    
    .cityphone-pagination {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .cityphone-pagination a,
    .cityphone-pagination span {
        padding: 6px 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cityphone-float-widget {
        width: 220px;
        right: 5px;
    }
    
    .cityphone-header {
        padding: 30px 15px;
    }
    
    .cityphone-header h1 {
        font-size: 20px;
    }
    
    .cityphone-search-box {
        padding: 15px;
    }
    
    .cityphone-category-nav {
        padding: 10px;
    }
    
    .cityphone-category-list {
        gap: 5px;
    }
    
    .cityphone-category-item {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .cityphone-item {
        padding: 12px;
    }
    
    .cityphone-detail {
        padding: 15px;
    }
    
    .cityphone-detail-title {
        font-size: 22px;
    }
    
    .cityphone-detail-phone {
        font-size: 16px;
    }
}

/* ========== 后台管理表格对齐样式 ========== */
.flexigrid .hDiv table,
.flexigrid .bDiv table {
    table-layout: fixed;
    width: 100%;
}

.flexigrid .hDiv th,
.flexigrid .bDiv td {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 8px 5px;
    border-right: 1px solid #e8e8e8;
}

.flexigrid .hDiv th:last-child,
.flexigrid .bDiv td:last-child {
    border-right: none;
}

/* 分类名称列自适应宽度 */
.flexigrid .hDiv th:nth-child(3),
.flexigrid .bDiv td:nth-child(3) {
    width: auto !important;
    min-width: 120px;
    max-width: none;
    white-space: normal;
    word-wrap: break-word;
    overflow: visible;
    text-overflow: unset;
}

.flexigrid .bDiv td:nth-child(3) div {
    white-space: normal;
    word-wrap: break-word;
    overflow: visible;
    text-overflow: unset;
    padding: 8px 5px;
}

.flexigrid .bDiv td:nth-child(3) a {
    color: #409EFF;
    text-decoration: none;
    display: block;
    word-break: break-all;
}

.flexigrid .bDiv td:nth-child(3) a:hover {
    color: #66b1ff;
    text-decoration: underline;
}

/* 确保表头和数据行的宽度类一致 */
.flexigrid .hDiv th.w40,
.flexigrid .bDiv td.w40 {
    width: 40px !important;
    min-width: 40px;
    max-width: 40px;
}

.flexigrid .hDiv th.w60,
.flexigrid .bDiv td.w60 {
    width: 60px !important;
    min-width: 60px;
    max-width: 60px;
}

.flexigrid .hDiv th.w80,
.flexigrid .bDiv td.w80 {
    width: 80px !important;
    min-width: 80px;
    max-width: 80px;
}

.flexigrid .hDiv th.w100,
.flexigrid .bDiv td.w100 {
    width: 100px !important;
    min-width: 100px;
    max-width: 100px;
}

.flexigrid .hDiv th.w150,
.flexigrid .bDiv td.w150 {
    width: 150px !important;
    min-width: 150px;
    max-width: 150px;
}

.flexigrid .hDiv th.w160,
.flexigrid .bDiv td.w160 {
    width: 160px !important;
    min-width: 160px;
    max-width: 160px;
}

.flexigrid .hDiv th.w350,
.flexigrid .bDiv td.w350 {
    width: 350px !important;
    min-width: 350px;
    max-width: 350px;
}

/* 操作按钮样式优化 */
.flexigrid .operation-btns {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.flexigrid .operation-btns .btn {
    padding: 2px 8px;
    font-size: 12px;
    white-space: nowrap;
}

/* 状态标签样式 */
.flexigrid .status-enabled {
    color: #67c23a;
    font-weight: bold;
}

.flexigrid .status-disabled {
    color: #f56c6c;
    font-weight: bold;
}

.flexigrid .status-hot {
    color: #e6a23c;
    font-weight: bold;
}

.flexigrid .status-normal {
    color: #909399;
}

/* 排序输入框样式 */
.flexigrid .sort-input {
    width: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 2px;
    font-size: 12px;
}

.flexigrid .sort-input:focus {
    border-color: #409EFF;
    outline: none;
}
