:root {
    --theme-color: #3e3e3e;
    --theme-theme: #133ab3;
    --theme-background: #fafafa;
    --theme-other_background: #ffffff;
}
/* 全局基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* 将 &quot; 替换为标准的双引号 */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    background-color: #F8F8F8 !important;
    color: #333333 !important;
}

/* 顶部导航栏 */
.header {
    background: #F8F8F8 !important;
    border-bottom: none !important;
}

/* 品牌Logo/标题 */
.logo-title {
    color: #FF4D6D !important;
    font-weight: bold;
}

/* 搜索框 */
.search-input {
    background: #FFFFFF !important;
    border: 1px solid #FF4D6D !important;
    border-radius: 24px !important;
    padding: 12px 20px !important;
    box-shadow: 0 2px 10px rgba(255, 77, 109, 0.1) !important;
}

/* 搜索按钮 */
.search-btn {
    background: #FF4D6D !important;
    color: #FFFFFF !important;
    border-radius: 24px !important;
    border: none !important;
    font-weight: 500;
    transition: all 0.2s ease;
}
.search-btn:hover {
    background: #ff3355 !important;
    box-shadow: 0 4px 12px rgba(255, 77, 109, 0.2) !important;
}

/* 标签/热词 */
.tag-item {
    background: #FFFFFF !important;
    color: #666666 !important;
    border-radius: 16px !important;
    padding: 4px 12px !important;
    font-size: 13px;
    border: 1px solid #eee;
}
.tag-item:hover {
    background: #FFF0F2 !important;
    color: #FF4D6D !important;
    border-color: #FF4D6D !important;
}

/* 卡片/模块 */
.card {
    background: #FFFFFF !important;
    border-radius: 12px !important;
    padding: 16px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
    border: none !important;
}

/* 模块标题 */
.card-title {
    color: #333333 !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.card-title::before {
    content: ""; /* 修复这里的 &quot;&quot; */
    display: inline-block;
    width: 18px;
    height: 18px;
    background: #FF4D6D;
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
}

/* 榜单/列表项 */
.list-item {
    padding: 8px 0 !important;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 8px;
}
.list-item:last-child {
    border-bottom: none;
}

/* 榜单数字 */
.rank-num {
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}
.rank-num-1, .rank-num-2, .rank-num-3 {
    background: #FF4D6D !important;
    color: #fff !important;
}
.rank-num {
    background: #f0f0f0 !important;
    color: #666 !important;
}

/* 来源标签（夸克/百度/阿里） */
.source-tag {
    background: #FFF0F2 !important;
    color: #FF4D6D !important;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
}

/* 按钮通用样式 */
.btn-primary {
    background: #FF4D6D !important;
    color: #FFFFFF !important;
    border-radius: 20px !important;
    border: none !important;
}
.btn-primary:hover {
    background: #ff3355 !important;
}
