/************************** Tailwind 自定义配置 **************************/
/* 配置Tailwind自定义颜色和字体 */

/* 

tailwind.config = {
    theme: {
        extend: {
            colors: {
                primary: '#3b82f6',
                secondary: '#64748b',
                neutral: '#f1f5f9'
            },
            fontFamily: {
                sans: ['system-ui', 'sans-serif'],
            },
        }
    }
}


*/



/************************** Tailwind 自定义工具类 **************************/
@layer utilities {
    /* 内容可见性自动优化 */
    .content-auto {
        content-visibility: auto;
    }

    /* 单行文本溢出省略号 */
    .no-wrap-ellipsis {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Flex占满空间且最小宽度为0（解决文本溢出问题） */
    .flex-1-min {
        flex: 1;
        min-width: 0;
    }

    /* 悬停上浮效果基础样式 */
    .hover-lift {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    /* 悬停上浮效果触发样式 */
    .hover-lift:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
    }
}

/************************** 全局覆盖样式 **************************/
/* 添加网站 - 强制去除2px边框 */
.border-2 {
    border-width: 0px !important;
}

/************************** 基础全局样式 **************************/
/* 基础字体大小（响应式） */
body {
    font-size: clamp(14px, 3vw, 16px);
}

/************************** 搜索区域样式 **************************/
/* 搜索引擎切换按钮基础样式 */
.search-engine-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

/* 搜索引擎按钮悬停效果 */
.search-engine-btn:hover {
    background-color: rgba(59, 130, 246, 0.1);
}

/* 搜索引擎按钮激活状态 */
.search-engine-btn.active {
    background-color: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* 搜索下拉菜单默认状态（隐藏） */
.search-dropdown {
    transform-origin: top left;
    transform: scaleY(0);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
    z-index: 10;
}

/* 搜索下拉菜单激活状态（显示） */
.search-dropdown.active {
    transform: scaleY(1);
    opacity: 1;
}

/************************** 分类折叠动画 **************************/
/* 分类内容默认状态（折叠） */
.category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

/* 分类内容展开状态 */
.category-content.expanded {
    max-height: 1200px;
    transition: max-height 0.5s ease-in;
}

/************************** 标签切换样式 **************************/
/* 标签容器基础样式 */
.tabs-container {
    margin-bottom: 1rem;
}

/* 标签按钮容器样式 */
.tab-buttons {
    position: relative;
    top: -4px;
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    scrollbar-width: thin;
}

/* 标签按钮基础样式 */
.tab-button {
    padding: 0.3rem 0.8rem;
    background-color: #f1f5f9;
    border-radius: 20px;
    font-size: 0.85rem;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* 标签按钮激活状态 */
.tab-button.active {
    background-color: #3b82f6;
    color: white;
}

/* 标签内容默认状态（隐藏） */
.tab-content {
    display: none;
}

/* 标签内容激活状态（显示） */
.tab-content.active {
    display: flex;
    flex-direction: column;
}

/************************** 加载动画 **************************/
/* 加载器基础样式 */
.loader {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* 旋转动画关键帧 */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/************************** 弹窗样式 **************************/
/* 弹窗遮罩层默认状态（隐藏） */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* 弹窗遮罩层激活状态（显示） */
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 弹窗容器基础样式 */
.modal {
    background-color: white;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    padding: 1.2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

/* 弹窗激活时的位移动画 */
.modal-overlay.active .modal {
    transform: translateY(0);
}

/************************** 标签栏滚动条隐藏 **************************/
.tab-buttons {
    /* 允许横向滚动 */
    overflow-x: auto;
    /* 清除默认内边距影响（可选，根据布局调整） */
    padding: 0;
    /* 去除默认滚动条样式（IE 和 Edge） */
    -ms-overflow-style: none;
    /* 去除默认滚动条样式（Firefox） */
    scrollbar-width: none;
}

/* 去除 Chrome、Safari 等 WebKit 内核浏览器的滚动条 */
.tab-buttons::-webkit-scrollbar {
    display: none;
}

/************************** 全局滚动条样式 **************************/
/* 滚动条整体样式 */
::-webkit-scrollbar {
  width: 6px; /* 滚动条粗细 */
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* 滚动条滑块（关键：强制固定较短长度） */
::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
  min-height: 20px; /* 最小长度（确保不会过短） */
  max-height: 40px; /* 最大长度（限制最长不超过40px，数值越小越短） */
  height: 30px; /* 基础长度（取中间值） */
}

/* 滑块hover效果 */
::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/************************** 横向滚动问题修复 **************************/
/* 彻底解决横向滚动条问题 */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

/* 改进字体不换行处理 */
.no-wrap-ellipsis {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
}

/************************** 快捷访问区域布局 **************************/
/* 快捷访问区域基础样式（默认移动端4列） */
#quickAccessGrid {
    display: grid;
    gap: 12px; /* 图标间距：水平和垂直方向均为12px（核心修改点） */
    padding: 0 0px; /* 左右内边距，避免边缘紧贴屏幕 */
    /* 移动端4列：列宽 = 25% - 间距补偿（间距12px时，补偿值为9px，确保不溢出） */
    grid-template-columns: repeat(auto-fill, minmax(calc(25% - 9px), 1fr));
}

/* 调整分类内容防止溢出 */
.category-content a {
    flex-shrink: 0;
    width: 100%;
}

.category-content a .no-wrap-ellipsis {
    max-width: calc(100% - 50px); /* 为图标留出空间 */
}

/************************** 响应式布局调整（桌面端） **************************/
/* 响应式调整：电脑端显示8列 */
@media (min-width: 1024px) {
    #quickAccessGrid {
        /* 电脑端8列：列宽 = 12.5% - 间距补偿（间距12px时，补偿值为10.5px） */
        grid-template-columns: repeat(auto-fill, minmax(calc(11.5% - 9.5px), 1fr));
        padding: 0 0px; /* 电脑端左右内边距 */
    }
}

/************************** 响应式样式（移动端通用） **************************/
/* 响应式调整 */
@media (max-width: 640px) {
    .text-xs-mobile {
        font-size: 10px !important;
    }
    .text-sm-mobile {
        font-size: 12px !important;
    }
    .tag-item {
        font-size: 11px !important;
        padding: 3px 8px !important;
    }
    .search-input {
        padding: 8px 12px !important;
        font-size: 14px !important;
    }
    .quick-access-icon {
        width: 20px !important;
        height: 20px !important;
    }
    .quick-access-label {
        font-size: 10px !important;
    }
    .tab-button {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
}

/* 响应式字体调整 */
@media (max-width: 640px) {
    body {
        font-size: 14px !important;
    }
    
    .quick-access-label {
        font-size: 11px !important;
        max-width: 60px !important;
    }
    
    .category-toggle span {
        font-size: 14px !important;
    }
    
    .category-content a .font-medium {
        font-size: 13px !important;
    }
    
    .category-content a .text-xs {
        font-size: 11px !important;
    }
}

/************************** 返回顶部/底部按钮 **************************/
/* 按钮基础样式 */
#backToTop, #backToBottom {
    cursor: pointer;
    border: none;
    padding: 0;
}

/* 过渡动画 */
#backToTop, #backToBottom {
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
}

#backToTop.visible, #backToBottom.visible {
    transform: translateY(0);
}

/* 悬停效果增强 */
#backToTop:hover, #backToBottom:hover {
    transform: translateY(0) scale(1.1);
}

/* 响应式调整 - 移动端隐藏按钮 */
@media (max-width: 768px) { /* 768px是常见的移动端与桌面端分界值，可根据需要调整 */
    #backToTop, #backToBottom {
        display: none !important; /* 强制隐藏 */
    }
}

/* 原移动端样式（被上面display:none覆盖） */
@media (max-width: 640px) {
    #backToTop, #backToBottom {
        width: 10vw;
        height: 10vw;
        max-width: 40px;
        max-height: 40px;
    }
    
    #backToTop {
        bottom: 4vh;
        right: 4vw;
    }
    
    #backToBottom {
        bottom: 12vh;
        right: 4vw;
    }
}

/************************** 滚动条隐藏工具类 **************************/
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/************************** 皮肤切换容器 **************************/
#skinContainer {
    scroll-behavior: smooth;
}
#prevSkin:disabled, #nextSkin:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/************************** 旋转动画 **************************/
/* 旋转动画关键帧 */
@keyframes rotate360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 旋转动画应用类 */
.rotating {
    animation: rotate360 0.8s ease-out forwards;
}

/************************** 验证页面样式 **************************/
/* 自定义输入框占位符样式 */


/* 

.sweet-alert input::-webkit-input-placeholder {
    color: #666;
}
.sweet-alert input::-moz-placeholder {
    color: #666;
}
.sweet-alert input:-ms-input-placeholder {
    color: #666;
}

/* 关键文字强调样式 */
.highlight {
    color: #e74c3c;
    font-weight: bold;
}

/* 关闭按钮样式 - 修复定位 */
.close-btn {
    position: absolute;
    top: 0px;
    right: 6px;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    z-index: 1000;
    background: none;
    border: none;
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* 关闭按钮悬停效果 */
.close-btn:hover {
    color: #999;
    background-color: #f5f5f5;
}

/* 确保弹窗完美居中 - 修复定位问题 */
.sweet-alert {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    width: 478px;
    max-width: 90vw;
}

/* 修复弹窗内部布局 */
.sweet-alert .sa-icon {
    margin: 10px auto;
}
.sweet-alert h2 {
    margin: 10px 0;
    padding: 0 10px;
}
.sweet-alert p {
    margin: 10px 0 15px 0;
    padding: 0 0px;
    line-height: 1.4;
}
.sweet-alert .sa-input-container {
    margin: 15px 0;
}
.sweet-alert input {
    margin: 5px 0;
}

/* 确保背景遮罩层正确 */
.sweet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10000;
}


*/



/************************** PWA安装提示样式 **************************/
/* PWA安装提示滑入动画 */
#pwaInstallPrompt {
    animation: slideUp 0.3s ease-out;
}

/* 滑入动画关键帧 */
@keyframes slideUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* PWA安装提示移动端优化 */
@media (max-width: 768px) {
    #pwaInstallPrompt {
        bottom: 80px;
        width: 90%;
        max-width: 300px;
    }
}

/************************** 图标详细页箭头样式 **************************/
/* 电脑端图标详细页默认样式 */
a.fa.fa-angle-right.text-gray-400.no-underline {
  width: 10px;
  position: relative; 
  left: 98.1%; 
  top: -22px; 
  z-index: 10;
  cursor: pointer;
  margin: 0;
    margin-top: -1rem;
    margin-bottom: 0.125rem;
}

/* 移动端图标详细页样式 */
@media (max-width: 768px) {
  a.fa.fa-angle-right.text-gray-400.no-underline {
    left: 95.25%; 
  }
}