::-webkit-scrollbar {
            display: none;
        }
        ::-webkit-scrollbar {
            width: 0;
            background: 0 0;
        }
        /* 按钮覆盖在链接上方 */
        .link-item {
            position: relative;
        }
        .like-btn {
            position: absolute;
            right: 24px;
            top: 31%;
            transform: translateY(-50%);
            z-index: 2;
        }
        .link-content {
            position: relative;
            z-index: 1;
        }
    
        .no-style {
            all: unset; /* 这将移除所有内建和继承的属性 */
            display: flex; 
            flex-direction: column; 
            align-items: center;
            /*height: 150px;*/
        }
        button {
          all: unset; /* 移除所有继承和初始样式 */
        }
        /* 新增遮罩层过渡效果 */
        .modal {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0,0,0,0.5);
          z-index: 9999;
          display: none; /* 默认隐藏 */
          align-items: center;
          justify-content: center;
          opacity: 0;
          transition: opacity 0.3s ease;
        }
        
        /* 显示时添加active类 */
        .modal.active {
          display: flex;
          opacity: 1;
        }
        
        .modal-content {
          background: white;
          width: 90%;
          max-width: 500px;
          padding: 20px;
          border-radius: 8px;
          position: relative;
          transform: translateY(-20px);
          transition: transform 0.3s ease;
        }
        
        .modal.active .modal-content {
          transform: translateY(0);
        }
        
        .close {
          position: absolute;
          right: 15px;
          top: 10px;
          font-size: 24px;
          cursor: pointer;
          color: #666;
        }
        
        .close:hover {
          color: #333;
        }
        
        /* 新增表单样式 */
        .form-group {
          margin-bottom: 1rem;
        }
        
        .form-group label {
          display: block;
          margin-bottom: 0.5rem;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
          width: 100%;
          padding: 8px;
          border: 1px solid #ddd;
          border-radius: 4px;
        }
        
        input, select, textarea {
            width: 100%;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        .description{
            font-size: 12px;
            color: #898787;
            top: -22px;
            position: relative;
            display: inline-block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            width: 150px;
            text-align: left; 
            padding: 0px 2px; 
            margin-top: 10px;
            min-height: 25px;
        }
        
        @media (min-width: 768px) {
            .description{
                width: 210px;
                /*margin-top: 1px !important*/
            }
        }
        
        /* 统计行样式 */
        .stats-row {
          /* 修改为flex容器 */
          display: flex;
          /* 左右两端对齐 */
          justify-content: space-between;
          /* 保持原有定位 */
          position: absolute;
          bottom: 0;
          /* 确保占满容器宽度 */
          width: 100%;
          /* 移除不需要的属性 */
          margin-top: -27px;
          color: #666;
          font-size: .9em;
        }
        
        .stat-item {
          /* 保持原有对齐方式 */
          display: inline-flex;
          align-items: center;
          gap: 5px;
          /* 添加间距控制 */
          padding: 0 15px;
        }
        
        /* 图标颜色 */
        .fa-fire { color: #ff6b6b; }
        .fa-thumbs-up { color: #4dabf7; }
        .fa-heart { color: #ff8787; }
        
        /* 按钮悬停动效 */
        .like-btn:hover .fa-heart {
            transform: scale(1.2);
            transition: transform 0.2s;
        }
        
        /* 加载动画 */
        .like-btn.loading .fa-heart {
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        /* 基础容器样式 */
        .custom-search-container {
            width: 100%;
            max-width: 500px;
            margin: 15px auto;
            padding: 0 15px;
        }
        
        .search-wrapper {
            position: relative;
        }
        
        /* 输入框样式 */
        .search-input-group {
            display: flex;
            align-items: center;
            background: #fff;
            border-radius: 25px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border: 1px solid #ddd;
            transition: all 0.3s ease;
        }
        
        .search-input-group:focus-within {
            box-shadow: 0 4px 12px rgba(77, 171, 247, 0.2);
            border-color: #4dabf7;
        }
        
        .search-icon {
            padding: 0 15px;
            font-size: 18px;
            color: #666;
        }
        
        .search-input {
            flex: 1;
            border: 0;
            padding: 12px 0;
            font-size: 16px;
            background: transparent;
            outline: none;
        }
        
        /* 清除按钮样式 */
        .clear-btn {
            background: none;
            border: 0;
            padding: 0 15px;
            cursor: pointer;
            color: #999;
            transition: all 0.2s;
        }
        
        .clear-btn:hover {
            color: #666;
            transform: scale(1.1);
        }
        
        .clear-icon {
            font-size: 20px;
            line-height: 1;
        }
        
        /* 移动端适配 */
        @media (max-width: 768px) {
            .custom-search-container {
                padding: 0 10px;
                margin: 10px auto;
            }
            
            .search-input {
                padding: 10px 0;
                font-size: 14px;
            }
            
            .search-icon {
                font-size: 16px;
                padding: 0 12px;
            }
            
            .clear-icon {
                font-size: 18px;
            }
        }
        /* 新增搜索结果高亮样式（修改） */
        .search-highlight {
            background: #ff7f48;
            /* border-radius: 3px; */
            padding: 0px 2px;
            color: #fff;
        }
        
        /* 新增空结果提示样式 */
        .no-results {
            text-align: center;
            padding: 20px;
            color: #666;
        }