* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background: #f5f6f8;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #2563eb;
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.site-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    height: 64px;
    gap: 24px;
}

.logo a {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.logo img {
    height: 36px;
    margin-right: 8px;
}

.logo-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav {
    flex: 1;
}

.main-nav > ul {
    display: flex;
    gap: 8px;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    display: block;
    padding: 8px 16px;
    color: #333;
    font-size: 15px;
    border-radius: 6px;
    transition: all 0.2s;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
    background: #f0f2f5;
    color: #4a90e2;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
    z-index: 100;
}

.main-nav > ul > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    display: block;
    padding: 8px 16px;
    color: #333;
    white-space: nowrap;
}

.sub-menu li a:hover {
    background: #f0f2f5;
    color: #4a90e2;
}

.header-search form {
    display: flex;
    align-items: center;
    background: #f5f6f8;
    border-radius: 20px;
    padding: 2px;
    width: 240px;
}

.header-search input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 6px 12px;
    font-size: 14px;
    outline: none;
}

.header-search button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    padding: 6px 16px;
    border-radius: 18px;
    cursor: pointer;
    font-size: 13px;
}

.btn-login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
}

.user-menu {
    position: relative;
}

.user-avatar {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.user-avatar img,
.avatar-default {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 140px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
    z-index: 100;
}

.user-menu:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 8px 16px;
    color: #333;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: #f0f2f5;
    color: #4a90e2;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 200;
}

.mobile-overlay.show {
    display: block;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 300;
    transition: right 0.3s;
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.open {
    right: 0;
}

.mobile-sidebar-header {
    padding: 20px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.mobile-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-user-info img,
.mobile-user-info .avatar-default {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.mobile-username {
    font-size: 16px;
    font-weight: 500;
}

.mobile-login-btn {
    color: #fff;
    font-size: 16px;
    display: block;
    text-align: center;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 8px;
}

.mobile-nav {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.mobile-nav ul li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav ul li.active a {
    color: #4a90e2;
    background: #f0f7ff;
}

.mobile-sidebar-footer {
    padding: 16px;
    border-top: 1px solid #f0f0f0;
}

.mobile-logout-btn {
    display: block;
    text-align: center;
    padding: 10px;
    color: #e74c3c;
    border: 1px solid #e74c3c;
    border-radius: 8px;
}

.mobile-search-bar {
    display: none;
    background: #fff;
    padding: 8px 16px;
    border-bottom: 1px solid #eee;
}

.mobile-search-bar form {
    display: flex;
    align-items: center;
    background: #f5f6f8;
    border-radius: 20px;
    padding: 2px;
}

.mobile-search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 12px;
    outline: none;
    font-size: 14px;
}

.mobile-search-bar button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    padding: 6px 16px;
    border-radius: 18px;
    cursor: pointer;
    font-size: 13px;
}

.breadcrumb {
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    color: #999;
}

.breadcrumb a {
    color: #666;
}

.breadcrumb .sep {
    margin: 0 8px;
    color: #ddd;
}

.breadcrumb .current {
    color: #333;
}

.site-main {
    min-height: calc(100vh - 64px - 200px);
    padding: 20px 0;
}

.banner-section {
    margin-bottom: 24px;
}

.banner-slider {
    border-radius: 12px;
    overflow: hidden;
}

.banner-item {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content h1 {
    font-size: 32px;
    margin-bottom: 12px;
}

.banner-content p {
    font-size: 16px;
    opacity: 0.9;
}

.section {
    margin-bottom: 32px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.more-link {
    font-size: 14px;
    color: #999;
}

.category-shortcuts {
    margin-bottom: 32px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.category-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px 12px;
    text-align: center;
    transition: all 0.2s;
    display: block;
    color: #333;
}

.category-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    color: #4a90e2;
}

.category-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.category-name {
    font-size: 14px;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.resource-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.2s;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.resource-card a {
    display: block;
    color: #333;
}

.resource-cover {
    width: 100%;
    aspect-ratio: 4/3;
    background: #f0f2f5;
    overflow: hidden;
}

.resource-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #999;
}

.cover-placeholder .file-icon {
    font-size: 48px;
}

.cover-placeholder .file-ext {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.resource-info {
    padding: 12px;
}

.resource-title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 42px;
}

.resource-desc {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 36px;
}

.resource-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-actions {
    padding: 0 12px 12px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.btn-primary:hover {
    opacity: 0.9;
    color: #fff;
}

.btn-outline {
    background: #fff;
    border: 1px solid #ddd;
    color: #666;
}

.btn-outline:hover {
    border-color: #4a90e2;
    color: #4a90e2;
}

.btn-favorite {
    background: #fff;
    border: 1px solid #ddd;
    color: #666;
}

.btn-favorite.active {
    background: #fff0f0;
    border-color: #e74c3c;
    color: #e74c3c;
}

.btn-small {
    padding: 6px 14px;
    font-size: 13px;
}

.btn-back {
    display: inline-block;
    padding: 8px 20px;
    background: #4a90e2;
    color: #fff;
    border-radius: 6px;
}

.pagination {
    margin-top: 24px;
    text-align: center;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 4px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    font-size: 14px;
}

.pagination .current {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: transparent;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.empty-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
}

.empty-subtitle {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.pc-widgets {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.widget-qrcode {
    background: #fff;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    width: 120px;
}

.widget-title {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.qrcode-img img {
    width: 96px;
    height: 96px;
    border-radius: 4px;
}

.qrcode-tip {
    font-size: 11px;
    color: #999;
    margin-top: 6px;
}

.widget-feedback {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.widget-feedback a {
    color: #fff;
    font-size: 12px;
}

.widget-backtop {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    margin: 0 auto;
    font-size: 20px;
}

.widget-backtop.show {
    opacity: 1;
    visibility: visible;
}

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: #fff;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.06);
    z-index: 100;
    display: none;
}

.mobile-bottom-nav .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #999;
    font-size: 11px;
}

.mobile-bottom-nav .nav-item.active {
    color: #4a90e2;
}

.nav-icon {
    font-size: 20px;
}

.site-footer {
    background: #fff;
    padding: 32px 0;
    margin-top: 40px;
    border-top: 1px solid #eee;
}

.footer-links {
    text-align: center;
    margin-bottom: 16px;
    color: #666;
    font-size: 14px;
}

.footer-links .sep {
    margin: 0 12px;
    color: #ddd;
}

.footer-links a {
    color: #666;
}

.footer-links a:hover {
    color: #4a90e2;
}

.footer-copyright {
    text-align: center;
    color: #999;
    font-size: 13px;
}

.footer-copyright a {
    color: #999;
    margin-left: 12px;
}

.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.login-modal.show {
    display: flex;
}

.modal-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}

.modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    width: 360px;
    max-width: 90vw;
    padding: 24px;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.login-box {
    text-align: center;
}

.login-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.qrcode-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 16px;
    background: #f5f6f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-qrcode {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.qrcode-loading,
.qrcode-error {
    font-size: 14px;
    color: #999;
}

.qrcode-error a {
    color: #4a90e2;
}

.login-tips {
    text-align: left;
    padding: 0 20px;
    margin-bottom: 16px;
}

.login-tips p {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.qrcode-refresh {
    font-size: 13px;
    color: #999;
}

.qrcode-refresh a {
    color: #4a90e2;
}

.list-page .filter-bar {
    background: #fff;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.filter-label {
    font-weight: 500;
    color: #333;
}

.filter-tabs {
    display: flex;
    gap: 8px;
}

.filter-tabs .tab {
    padding: 6px 16px;
    border-radius: 20px;
    background: #f5f6f8;
    color: #666;
    font-size: 14px;
}

.filter-tabs .tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.result-count {
    color: #999;
    font-size: 14px;
}

.detail-page .detail-main {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
}

.detail-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.detail-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.detail-meta {
    display: flex;
    gap: 20px;
    color: #999;
    font-size: 14px;
    flex-wrap: wrap;
}

.detail-tags {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tags-label {
    color: #666;
    font-size: 14px;
}

.tag-item {
    padding: 4px 12px;
    background: #f0f7ff;
    color: #4a90e2;
    border-radius: 16px;
    font-size: 13px;
}

.detail-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.login-tip {
    background: #fffbe6;
    border: 1px solid #ffe58f;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #ad6800;
}

.login-tip.success {
    background: #f6ffed;
    border-color: #b7eb8f;
    color: #389e0d;
}

.detail-section {
    margin-bottom: 28px;
}

.detail-content {
    line-height: 1.8;
    color: #444;
    font-size: 15px;
}

.geo-content-inner {
    background: #f9fafc;
    padding: 20px;
    border-radius: 8px;
    line-height: 1.8;
    color: #444;
}

.page-content {
    background: #fff;
    border-radius: 10px;
    padding: 32px;
}

.page-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.page-header h1 {
    font-size: 28px;
    margin-bottom: 8px;
}

.page-header p {
    color: #999;
    font-size: 15px;
}

.static-content h2 {
    font-size: 18px;
    margin: 24px 0 12px;
    color: #333;
}

.static-content p {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #555;
}

.static-content ul {
    margin-bottom: 12px;
    padding-left: 24px;
}

.static-content ul li {
    list-style: disc;
    margin-bottom: 6px;
    line-height: 1.6;
    color: #555;
}

.update-time {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 13px;
    text-align: right;
}

.feedback-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    resize: vertical;
    font-family: inherit;
}

.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

.required {
    color: #e74c3c;
}

.user-page {
    display: flex;
    gap: 24px;
}

.user-sidebar {
    width: 240px;
    flex-shrink: 0;
}

.user-info-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px 16px;
    text-align: center;
    margin-bottom: 16px;
}

.user-avatar-large {
    margin-bottom: 12px;
}

.user-avatar-large img,
.avatar-default-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 500;
    margin: 0 auto;
}

.user-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.user-remaining {
    font-size: 13px;
    color: #999;
}

.user-menu {
    background: #fff;
    border-radius: 10px;
    padding: 8px 0;
}

.user-menu .menu-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-size: 15px;
    transition: all 0.2s;
}

.user-menu .menu-item:hover,
.user-menu .menu-item.active {
    background: #f0f7ff;
    color: #4a90e2;
}

.user-menu .menu-item.logout {
    color: #e74c3c;
    border-top: 1px solid #eee;
    margin-top: 8px;
    padding-top: 16px;
}

.user-content {
    flex: 1;
    min-width: 0;
}

.user-dashboard,
.user-list-page {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
}

.page-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.stat-card {
    background: #f9fafc;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    font-size: 36px;
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: #999;
}

.quick-actions h3 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #333;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.action-item {
    background: #f9fafc;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    color: #333;
    transition: all 0.2s;
}

.action-item:hover {
    background: #f0f7ff;
    color: #4a90e2;
}

.action-icon {
    display: block;
    font-size: 24px;
    margin-bottom: 4px;
}

.no-scroll {
    overflow: hidden;
}

.search-page .search-header {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 20px;
}

.search-form-wrap form {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.search-form-wrap input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
}

.search-form-wrap input:focus {
    border-color: #4a90e2;
}

.search-form-wrap button {
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
}

.search-result {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 20px;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.result-header h3 {
    font-size: 16px;
    color: #333;
}

.hot-search {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
}