body {
    margin: 0;
    background: #f7f8fa;
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei";
}
.container { padding: 10px; padding-bottom: 80px; }

.notice {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
    position: relative;
}
.notice .badge {
    position: absolute;
    top: -6px; left: -6px;
    background: #52c41a;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
}
.notice h2 { font-size: 18px; margin-bottom: 8px; }
.notice .time { text-align: right; font-size: 13px; color: #999; }

.card {
    background: #fff;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.card-top {
    display: flex;
    justify-content: space-between;
}
.card-title { font-size: 16px; font-weight: 600; }
.card-price { color: #ff4d4f; font-size: 18px; font-weight: bold; }

.tags { margin: 10px 0; }
.tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    color: #fff;
    margin-right: 6px;
}
.tag-green { background: #52c41a; }
.tag-red { background: #ff4d4f; }

.card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #999;
    margin-top: 10px;
}

.loading {
    text-align: center;
    padding: 15px;
    color: #999;
    font-size: 14px;
}

	
	.filter-bar, .sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-item span {
    font-weight: 500;
    color: #333;
}

.filter-item select, .filter-item input {
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: #fafafa;
}

.search-box input {
    width: 200px;
    padding-left: 30px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23999' d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 8px center;
    background-size: 16px;
}

.sort-bar {
    margin-bottom: 0;
}
	
	




.filter-itema {
    display: flex;
    align-items: center;
    width: 100%;
}
	.filter-itema span {
    font-weight: 500;
    color: #333;
}

.filter-itema select, .filter-itema input {
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: #fafafa;
}

#filter_category {
    margin-left: auto;
}
	
	
	/* 顶部 LOGO 栏 */
.header-bar {
    background: #111; /* 深色背景，与你提供的图片风格一致 */
    padding: 12px 15px;
    display: flex;
    align-items: center;
    position: sticky; /* 吸顶效果，滚动时固定在顶部 */
    top: 0;
    z-index: 100;     /* 确保在最上层 */
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;      /* 文字白色 */
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
}

.header-logo img {
    width: 36px;
    height: 36px;
    border-radius: 50%; /* 圆形 LOGO */
    border: 1px solid rgba(255,255,255,.3);
    object-fit: cover;
}

/* 列表点击跳转 */
.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-link .card {
    transition: transform .2s ease;
}

.card-link:active .card {
    transform: scale(.98);
}

.notice-link {
    color: inherit;
    text-decoration: none;
}
.notice-link:hover h2 {
    color: #e53935;
}
	