body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    background-color: #f5f7fa;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden; /* 防止整体滚动 */
    width: 100%;
    position: relative;
}
.el-header {
    background-color: #409EFF;
    color: #fff;
    line-height: 60px;
    padding: 0 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky; /* 使顶部导航栏固定 */
    top: 0; /* 固定在顶部 */
    z-index: 1002; /* 确保在其他元素之上 */
}
.el-aside {
    background-color: #fff;
    color: #333;
    box-shadow: 1px 0 4px rgba(0, 0, 0, 0.08);
    transition: width 0.3s;
}
.el-main {
    padding: 20px !important;
    background-color: #f5f7fa;
    overflow: hidden;
    height: calc(100vh - 60px);
    -webkit-overflow-scrolling: touch; /* 平滑滚动 */
}
.menu-logo {
    height: 60px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #409EFF;
    border-bottom: 1px solid #eee;
}
.menu-logo i {
    margin-right: 10px;
    font-size: 22px;
}
.dashboard-header {
    margin-bottom: 20px;
    font-weight: 500;
}
.stat-card {
    height: 100%;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}
.stat-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 10px 0;
}
.stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.stat-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.stat-title {
    font-size: 14px;
    color: #909399;
    margin-bottom: 8px;
}
.stat-value {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
}
.stat-icon {
    font-size: 36px;
    color: #409EFF;
    opacity: 0.5;
}
.control-card {
    margin-top: 20px;
}
.control-title {
    font-size: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ebeef5;
    padding-bottom: 10px;
}
.toggle-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px dashed #ebeef5;
}
.toggle-label {
    font-size: 14px;
}
.header-menu {
    display: flex;
    align-items: center;
}
.user-info {
    margin-left: 15px;
    cursor: pointer;
}
.mobile-toggle {
    display: none;
}

/* 响应式布局 */
@media screen and (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .el-aside {
        position: fixed;
        height: calc(100vh - 60px); /* 高度等于视口高度减去顶部导航高度 */
        z-index: 1000;
        left: 0;
        top: 60px; /* 从顶部导航下方开始 */
    }
    
    .aside-hidden {
        transform: translateX(-100%);
    }
    
    .main-content {
        margin-left: 0 !important;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .card-header .el-input {
        margin-top: 10px;
        width: 100% !important;
    }
    
    .el-table__fixed, .el-table__fixed-right {
        display: none !important;
    }
    
    .operation-container {
        flex-direction: column;
        gap: 8px;
    }
    
    .el-table__fixed-right {
        display: block !important;
    }
    
    /* 移动端表格底部增加额外空间，防止遮挡 */
    .friends-table .el-table__body-wrapper,
    .groups-table .el-table__body-wrapper {
        padding-bottom: 80px !important; /* 移动端增加底部内边距 */
    }
    
    .el-table__body .el-table__row:last-child {
        margin-bottom: 80px !important; /* 移动端增加最后一行的底部间距 */
    }
    
    /* 移动端表格容器调整 */
    .table-container {
        margin-bottom: 60px; /* 增加移动端底部间距，确保底部控件可见 */
    }
    
    /* 移动端分页器样式调整 */
    .pagination-container {
        height: 50px;
        padding: 15px 0;
        margin-bottom: 20px; /* 移动端增加底部边距 */
        position: relative;
        z-index: 100;
    }
    
    /* 修复iOS设备中固定元素滚动问题 */
    .el-container {
        -webkit-overflow-scrolling: touch;
    }
    
    /* 确保底部有足够的安全区域 */
    .data-card {
        margin-bottom: 70px;
    }
    
    /* iOS底部安全区域 */
    @supports (-webkit-touch-callout: none) {
        .data-card {
            margin-bottom: calc(70px + env(safe-area-inset-bottom, 0));
        }
    }
    
    /* 确保顶部导航栏在移动端正确显示 */
    .el-header {
        position: fixed; /* 在移动端使用fixed而不是sticky */
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1010; /* 增加z-index确保在其他元素之上 */
    }
    
    /* 调整内容区域避免被顶部导航遮挡 */
    .el-container > .el-container {
        padding-top: 60px; /* 为固定的顶部导航栏留出空间 */
        min-height: calc(100vh - 60px); /* 确保内容区域至少占满剩余高度 */
        display: flex;
        flex-direction: column;
    }
    
    /* 确保移动端主内容区域完全可见且可滚动 */
    .el-main {
        padding-top: 0 !important;
        flex: 1;
        overflow: auto !important;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px !important; /* 减少底部内边距 */
    }
    
    /* 数据卡片调整 */
    .data-card {
        margin: 10px;
        min-height: calc(100vh - 140px); /* 确保卡片有足够高度 */
        display: flex;
        flex-direction: column;
    }
    
    /* 表格容器样式 */
    .table-container {
        overflow: visible !important;
        min-height: 400px; /* 确保表格容器有足够高度 */
        margin-bottom: 60px; /* 确保底部有足够空间 */
    }
    
    /* 分页器样式 */
    .pagination-container {
        position: relative; /* 相对定位避免遮挡问题 */
        margin-top: 20px;
        margin-bottom: 40px;
        height: auto;
        min-height: 40px;
    }
}
[v-cloak] {
    display: none;
}
.message-counts {
    display: flex;
    margin-top: 5px;
    font-size: 12px;
    color: #606266;
}
.message-counts .count-item {
    margin-right: 10px;
    display: flex;
    align-items: center;
}
.message-counts .count-item i {
    margin-right: 5px;
    font-size: 14px;
}
.message-counts .incoming {
    color: #67C23A;
}
.message-counts .outgoing {
    color: #409EFF;
}
.stats-container {
    margin-bottom: 20px;
}
.stats-container .el-col {
    margin-bottom: 20px;
}
.stats-container .el-card {
    height: 120px;
}
.el-card__body {
    padding: 20px !important;
    box-sizing: border-box;
    height: auto !important;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* 服务器状态相关样式 */
.server-status-col {
    text-align: center;
    margin-bottom: 20px;
}

.server-status-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.server-status-info {
    margin-top: 15px;
    width: 100%;
}

.server-status-title {
    font-size: 14px;
    color: #909399;
    margin-bottom: 5px;
}

.server-status-value {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.server-status-desc {
    font-size: 12px;
    color: #909399;
    margin-top: 5px;
}

.uptime-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background-color: rgba(64, 158, 255, 0.1);
    margin-bottom: 10px;
}

/* 响应式布局调整 */
@media screen and (max-width: 768px) {
    .server-status-col {
        margin-bottom: 30px;
    }
}

/* 自定义Element UI加载样式 */
.el-loading-spinner .el-loading-text {
    margin-top: 10px;
    font-size: 15px;
    color: #409EFF;
}

.el-loading-spinner .path {
    stroke: #409EFF;
    stroke-width: 4;
}

.el-loading-mask {
    z-index: 2000;
}

/* 数据卡片样式改进，增加四周等宽边距 */
.data-card {
    margin: 20px;
    display: flex;
    flex-direction: column;
    /* height: calc(100% - 40px); */
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}

/* 表格容器样式改进，确保表格可以滚动 */
.table-container {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    overflow: visible !important;
    border-radius: 0;
    height: 100%;
}

/* 内容页滚动行为 */
.content-page {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    height: 100%;
}

/* 表格样式改进，确保表格可以滚动 */
.friends-table,
.groups-table {
    width: 100% !important;
    table-layout: fixed !important;
}

/* 确保表格的重要部分均可视 */
.el-table {
    width: 100% !important;
    display: table !important;
    overflow: visible !important;
}

.el-table__header-wrapper {
    overflow: visible !important;
}

/* 表格体可滚动 */
.el-table__body-wrapper {
    overflow-y: auto !important; /* 使用auto而不是scroll以避免在内容较少时显示不必要的滚动条 */
    overflow-x: hidden !important;
    min-height: 200px;
    max-height: none !important; /* 不设置最大高度限制 */
    height: calc(100vh - 400px) !important; /* 调整计算高度，确保在小屏幕上也能看到分页器 */
}

/* 美化滚动条 */
.el-table__body-wrapper::-webkit-scrollbar {
    width: 8px;
    height: 0;
}

.el-table__body-wrapper::-webkit-scrollbar-thumb {
    background-color: #c0c4cc;
    border-radius: 4px;
}

.el-table__body-wrapper::-webkit-scrollbar-track {
    background-color: #f5f7fa;
}

/* 列宽分配 */
/* 序号列 */
.index-column {
    width: 50px !important;
    min-width: 50px !important;
    max-width: 50px !important;
}

/* 均分列 - 调整为三列均分 */
.hover-cell,
.operation-column {
    width: calc((100% - 50px) / 3) !important; /* 总宽度减去序号列(50px) */
    min-width: 0 !important;
    overflow: hidden;
}

/* 统一单元格样式 */
.common-cell {
    background-color: white !important;
}

.common-cell .cell {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 分页器固定在底部 */
.pagination-container {
    display: flex;
    justify-content: flex-end;
    padding: 10px 15px;
    margin-top: 0;
    margin-bottom: 0;
    background-color: #fff;
    z-index: 10;
    width: 100%;
    border-top: 1px solid #ebeef5;
    box-sizing: border-box;
    position: sticky;
    bottom: 0;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .el-table__body-wrapper {
        height: calc(100vh - 350px) !important; /* 移动端降低表格高度，确保分页器可见 */
    }
    
    .pagination-container {
        padding: 10px;
        margin-top: 0;
        margin-bottom: 10px;
        position: sticky;
        bottom: 0;
        background-color: white;
        border-top: 1px solid #ebeef5;
        z-index: 100; /* 确保在移动端滚动时分页器保持在顶层 */
    }
    
    .data-card {
        margin: 10px;
        margin-bottom: 20px; /* 减少底部边距，避免空白过多 */
    }
    
    /* 移动端表格特定样式 - 调整高度计算 */
    .friends-table .el-table__body-wrapper,
    .groups-table .el-table__body-wrapper {
        max-height: calc(100vh - 300px) !important;
        overflow-x: hidden !important;
    }
    
    /* 移动端下均分列调整 */
    .hover-cell,
    .operation-column {
        width: calc((100% - 50px) / 3) !important; /* 总宽度减去序号列(50px) */
    }
    
    /* 确保内容区域在移动端有合适的底部边距 */
    .content-page {
        padding-bottom: 60px;
    }
}

/* 全局调整，确保在小屏幕或窄屏设备上内容完整显示 */
@media screen and (max-height: 700px) {
    .el-table__body-wrapper {
        height: calc(100vh - 320px) !important; /* 在高度较小的屏幕上调整表格高度 */
    }
    
    .pagination-container {
        padding: 5px 10px; /* 减少内边距，节省空间 */
        min-height: 40px; /* 减少最小高度 */
    }
    
    .content-page {
        padding-bottom: 40px; /* 减少底部内边距 */
    }
}

/* 确保分页组件正确显示，不被截断 */
.el-pagination {
    white-space: normal;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
}

/* 确保分页组件在小屏幕上也能正常显示 */
.el-pagination .el-select .el-input,
.el-pagination .el-pagination__sizes,
.el-pagination button,
.el-pagination .el-pagination__jump {
    margin: 2px;
}

/* 性别样式 */
.gender-male {
    position: relative;
    padding-left: 8px;
    border-left: 3px solid #409EFF;
}

.gender-female {
    position: relative;
    padding-left: 8px;
    border-left: 3px solid #F56C6C;
}

.gender-unknown {
    position: relative;
    padding-left: 8px;
    border-left: 3px solid #303133;
}

.name-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 15px;
}

.card-title {
    font-size: 16px;
    font-weight: 500;
}

.card-count {
    font-size: 14px;
    color: #909399;
    margin-left: 10px;
    font-weight: normal;
}

/* 详情对话框样式调整 */
.detail-dialog {
    margin: 0 auto !important;
}

.detail-dialog .el-dialog__body {
    padding: 20px !important;
    overflow-y: auto !important;
    max-height: 70vh !important;
}

/* 移动端详情对话框特别样式 */
@media screen and (max-width: 768px) {
    .detail-dialog {
        width: 90% !important;
        margin: 0 auto !important;
    }
    
    .detail-dialog .el-dialog__wrapper {
        padding: 0 15px;
    }
    
    .detail-dialog .el-dialog {
        margin: 5vh auto !important;
        width: 90% !important;
        max-width: 500px;
    }
}

/* 修复主内容区域可滚动但底部内容不被遮挡 */
[v-show="activeIndex === '1'"] {
    height: 100%;
    overflow-y: auto !important;
    padding: 20px;
    padding-bottom: 40px; /* 确保底部有足够的空间 */
}

/* 确保内容区域在PC端和移动端都正确显示 */
.el-main {
    -webkit-overflow-scrolling: touch; /* 平滑滚动 */
}

/* 修复对话框在移动端的样式，确保完全可见且可滚动 */
.detail-dialog .el-dialog {
    margin: 5vh auto !important;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.detail-dialog .el-dialog__body {
    overflow-y: auto;
    max-height: calc(90vh - 120px);
}

/* 移动端特定样式，解决遮挡问题 */
@media screen and (max-width: 768px) {
    /* 调整移动端数据卡片样式 */
    .data-card {
        margin: 10px;
        height: calc(100% - 20px);
        max-height: calc(100vh - 20px);
        padding-bottom: 60px; /* 增加卡片底部内边距 */
    }
    
    /* 移动端对话框样式调整 */
    .el-dialog {
        margin: 0 15px !important;
        width: calc(100% - 30px) !important; /* 两侧各留15px */
        max-width: 95vw;
    }
    
    /* 避免移动端内容区域滚动后被遮挡 */
    .el-main {
        padding-bottom: 60px !important; /* 增加主内容区底部内边距 */
    }
    
    /* 固定移动端底部，防止iOS橡皮筋效应导致的遮挡 */
    .dashboard-body {
        overflow-x: hidden;
        position: relative;
        height: 100%;
    }
}

/* 修复表格在移动端的滚动 */
@media screen and (max-width: 768px) {
    .friends-table .el-table__body-wrapper,
    .groups-table .el-table__body-wrapper {
        padding-bottom: 70px !important; /* 移动端增加底部内边距 */
    }
    
    /* 改进iOS橡皮筋效应后的回弹处理 */
    .el-table__body-wrapper {
        -webkit-overflow-scrolling: touch;
        position: relative;
    }
    
    /* 确保底部分页器不会消失 */
    .pagination-container {
        position: sticky;
        bottom: 0;
        background-color: #fff;
        padding: 10px 0;
        margin-top: 10px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    }
}

/* 确保表格内容区域可滚动 */
.data-card .table-container {
    overflow: visible;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

/* 防止表格随内容无限拉伸 */
.el-table__body-wrapper {
    max-height: calc(100vh - 200px); /* 限制最大高度 */
}

/* 自定义滚动条样式，提升用户体验 */
.el-table__body-wrapper::-webkit-scrollbar {
    width: 6px;
}

.el-table__body-wrapper::-webkit-scrollbar-thumb {
    background-color: #c0c4cc;
    border-radius: 3px;
}

.el-table__body-wrapper::-webkit-scrollbar-track {
    background-color: #f5f7fa;
}

/* 主内容区容器样式 */
.main-content {
    padding: 0 !important;
    overflow: hidden !important;
}

/* 各个页面共用的内容样式 */
.content-page {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-x: hidden !important; /* 防止水平滚动 */
    overflow-y: auto; /* 允许垂直滚动 */
    padding: 20px;
    box-sizing: border-box;
}

/* 机器人管理页面特定样式 */
.bot-management-page {
    padding: 20px;
}

/* 用户和群组管理页面共用样式 */
.user-management-page,
.group-management-page {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

/* 搜索输入框样式 */
.search-input {
    width: 300px !important;
}

/* 改进的列宽度分配 */
.friends-table .el-table__header th,
.groups-table .el-table__header th,
.friends-table .el-table__body td,
.groups-table .el-table__body td {
    width: auto !important;
    min-width: 0 !important;
}

/* 中间列自动均分宽度 */
.hover-cell {
    transition: background-color 0.3s ease;
}

/* 悬停效果 */
.el-table .hover-cell:hover {
    background-color: #eef9ff !important;
    cursor: pointer;
}

.el-table td.hover-cell .cell {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 分页容器样式改进，增加上下边距，确保正常显示 */
.pagination-container {
    display: flex;
    justify-content: flex-end;
    padding: 20px 20px;
    margin-top: 0;
    margin-bottom: 0;
    background-color: #fff;
    z-index: 10;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-top: 1px solid #ebeef5;
    box-sizing: border-box;
    height: auto;
    min-height: 60px;
}

/* 分页组件样式调整 */
.el-pagination {
    white-space: normal;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
}

/* 确保分页组件在小屏幕上也能正常显示 */
.el-pagination .el-select .el-input,
.el-pagination .el-pagination__sizes,
.el-pagination button,
.el-pagination .el-pagination__jump {
    margin: 2px;
}

/* 强制表头固定，但表体可滚动 */
.el-table__header-wrapper {
    position: sticky !important;
    top: 0;
    z-index: 2;
}

/* 统一行高 */
.el-table__row {
    height: 50px;
}

/* 确保表格中的所有行统一滚动 */
.el-table--scrollable-y .el-table__body-wrapper {
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .el-main {
        padding: 10px !important;
    }

    .content-page {
        padding: 10px;
    }

    .data-card {
        margin: 10px;
        height: calc(100% - 20px);
    }

    .search-input {
        width: 100% !important;
        margin-top: 10px;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    /* 移动端表格特定样式 */
    .friends-table .el-table__body-wrapper,
    .groups-table .el-table__body-wrapper {
        max-height: calc(100vh - 250px) !important;
        overflow-x: hidden !important;
    }

    /* 移动端分页器样式 */
    .pagination-container {
        padding: 15px 10px;
        margin-top: 0;
        margin-bottom: 30px;
        height: auto;
        min-height: 80px;
    }

    /* 移动端表格样式 */
    .friends-table,
    .groups-table {
        table-layout: fixed !important;
    }

    /* 确保操作列在移动端也有足够的宽度 */
    .operation-column {
        width: 80px !important;
        min-width: 80px !important;
    }
    
    /* 确保内容区域在移动端有足够的底部边距 */
    .content-page {
        padding-bottom: 100px;
    }
    
    /* 移动端分页组件特别调整 */
    .el-pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* 减少卡顿：对可能有大量DOM节点的容器应用硬件加速 */
.el-table__body-wrapper {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* 悬停时显示完整内容的工具提示 */
.el-tooltip__popper {
    max-width: 80% !important;
    word-break: break-all;
}

/* 单元格内容优化 */
.el-table td .cell {
    line-height: 23px;
    word-break: break-all;
    text-overflow: ellipsis;
}

/* 详情对话框样式 */
.detail-dialog .el-form-item {
    margin-bottom: 15px;
}

/* 加载中动画样式 */
.detail-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-radius: 4px;
}

/* 详情页表单禁用状态样式 */
.form-disabled .el-input.is-disabled .el-input__inner,
.form-disabled .el-textarea.is-disabled .el-textarea__inner,
.form-disabled .el-checkbox.is-disabled,
.form-disabled .el-switch.is-disabled {
    background-color: #f5f7fa;
    border-color: #e4e7ed;
    color: #909399;
    cursor: not-allowed;
}

/* 激活码工具页面样式 */
.activation-tools-page {
    padding: 20px;
}

.tool-cards-container {
    margin-top: 20px;
}

.tool-card-col {
    margin-bottom: 20px;
}

.tool-card {
    cursor: pointer;
    transition: all 0.3s;
    height: 100px;
    /* width: 300px; */
    /* display: flex; */
    align-items: center;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tool-card-content {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 10px;
}

.tool-icon {
    font-size: 36px;
    color: #409EFF;
    margin-right: 15px;
}

.tool-info {
    flex: 1;
}

.tool-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #303133;
}

.tool-desc {
    font-size: 12px;
    color: #909399;
}

.tool-arrow {
    color: #909399;
    font-size: 18px;
    margin-left: auto;
    margin-right: 10px;
}

/* 激活码对话框样式 */
.activation-dialog .el-dialog__body {
    padding: 20px !important;
}

.activation-placeholder {
    background-color: #f5f7fa;
    border: 1px dashed #dcdfe6;
    border-radius: 4px;
    padding: 12px;
    text-align: center;
    color: #909399;
}

.activation-placeholder-text {
    font-size: 14px;
}

/* 响应式样式 */
@media screen and (max-width: 768px) {
    .tool-card {
        height: 80px;
    }
    
    .tool-icon {
        font-size: 28px;
    }
    
    .tool-title {
        font-size: 14px;
    }
    
    .tool-desc {
        font-size: 12px;
    }
}

/* 筛选和搜索容器样式 */
.search-filter-container {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 10px;
}

.filter-select {
    width: 140px;
}

@media screen and (max-width: 768px) {
    .search-filter-container {
        flex-direction: column;
        width: 100%;
        gap: 5px;
    }
    
    .filter-select {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .search-input {
        width: 100% !important;
    }
} 