/* 基础样式重置 */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif; line-height: 1.6; color: #2c3e50; overflow-x: hidden; } .container { max-width: 1200px; margin: 0 auto; padding: 0 16px; min-height: 100vh; display: flex; flex-direction: column; } /* 头部样式 */ .header { text-align: center; padding: 24px 0; border-bottom: 2px solid #a8e6cf; margin-bottom: 24px; } .title { font-size: 28px; font-weight: 700; color: #27ae60; margin-bottom: 8px; text-shadow: 0 2px 4px rgba(39, 174, 96, 0.1); } .subtitle { font-size: 14px; color: #7f8c8d; font-weight: 400; } /* 主内容区域 */ .main-content { flex: 1; position: relative; } /* 加载状态 */ .loading { text-align: center; padding: 60px 20px; color: #27ae60; } .loading-spinner { width: 40px; height: 40px; border: 3px solid #a8e6cf; border-top: 3px solid #27ae60; border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 16px; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } /* 错误信息 */ .error-message { text-align: center; padding: 40px 20px; color: #e74c3c; } .retry-btn { background: #27ae60; color: white; border: none; padding: 10px 20px; border-radius: 20px; cursor: pointer; font-size: 14px; margin-top: 16px; transition: background 0.3s ease; } .retry-btn:hover { background: #219a52; } /* 热点列表 */ .hot-list { display: grid; gap: 12px; } .hot-item { background: #ffffff; border: 1px solid #e8f5e8; border-radius: 12px; padding: 16px; transition: all 0.3s ease; box-shadow: 0 2px 8px rgba(39, 174, 96, 0.08); position: relative; overflow: hidden; } .hot-item:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(39, 174, 96, 0.15); border-color: #a8e6cf; } .hot-item::before { content: ''; position: absolute; left: 0; top: 0; width: 4px; height: 100%; background: linear-gradient(to bottom, #27ae60, #a8e6cf); } .item-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; } .rank { background: linear-gradient(135deg, #27ae60, #2ecc71); color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; } .rank.top3 { background: linear-gradient(135deg, #f39c12, #e67e22); } .word-type { display: flex; align-items: center; gap: 4px; } .type-icon { width: 16px; height: 16px; object-fit: contain; } .type-text { font-size: 12px; padding: 2px 8px; border-radius: 10px; font-weight: 500; } .type-hot { background: #ffe6e6; color: #e74c3c; } .type-new { background: #e6f3ff; color: #3498db; } .item-content { margin-bottom: 8px; } .item-title { font-size: 16px; font-weight: 600; color: #2c3e50; line-height: 1.4; margin-bottom: 4px; cursor: pointer; transition: color 0.3s ease; } .item-title:hover { color: #27ae60; } .item-score { font-size: 14px; color: #7f8c8d; font-weight: 500; } /* 底部 */ .footer { text-align: center; padding: 24px 0; border-top: 1px solid #e8f5e8; margin-top: 32px; } .update-time { font-size: 12px; color: #95a5a6; } /* 手机端优化 (默认) */ @media (max-width: 768px) { .container { padding: 0 12px; } .header { padding: 20px 0; } .title { font-size: 24px; } .subtitle { font-size: 13px; } .hot-item { padding: 14px; } .item-title { font-size: 15px; } .rank { width: 26px; height: 26px; font-size: 13px; } } /* 平板端适配 */ @media (min-width: 769px) and (max-width: 1024px) { .container { padding: 0 24px; } .hot-list { grid-template-columns: repeat(2, 1fr); gap: 16px; } .title { font-size: 32px; } } /* 电脑端适配 */ @media (min-width: 1025px) { .container { padding: 0 32px; } .hot-list { grid-template-columns: repeat(2, 1fr); gap: 20px; } .title { font-size: 36px; } .hot-item { padding: 20px; } .item-title { font-size: 17px; } } /* 大屏幕优化 */ @media (min-width: 1400px) { .hot-list { grid-template-columns: repeat(3, 1fr); } }