/* 极简风格模板 CSS */
:root {
    --primary-color: #3498db;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --border-color: #eaeaea;
    --hover-color: #2980b9;
    --footer-bg: #2c3e50;
    --footer-color: #ecf0f1;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--hover-color);
}

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

ul {
    list-style: none;
}

/* 头部样式 */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: block;
    max-height: 60px;
}

.site-logo img {
    max-height: 60px;
}

.site-nav ul {
    display: flex;
}

.site-nav li {
    margin-left: 20px;
}

.site-nav a {
    display: block;
    padding: 8px 12px;
    font-weight: 500;
    color: var(--text-color);
    border-radius: 4px;
}

.site-nav a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

/* 分类导航样式 */
.category-nav {
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    overflow: hidden;
}

.category-nav .w {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}

.category-nav .w::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.category-list {
    display: flex;
    padding: 5px 10px;
    min-width: max-content;
}

.category-item {
    position: relative;
    padding: 10px 15px;
    margin: 0 5px;
    transition: all 0.3s;
    white-space: nowrap;
}

.category-item a {
    color: var(--text-color);
    font-size: 15px;
    font-weight: 500;
}

.category-item:hover a {
    color: var(--primary-color);
}

.category-item.active {
    background-color: var(--primary-color);
    border-radius: 20px;
}

.category-item.active a {
    color: #fff;
}

/* 主体内容样式 */
.site-main {
    padding: 30px 0;
}

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

.section-title {
    font-size: 22px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.section-header .section-title {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.match-filter {
    display: flex;
    align-items: center;
}

.filter-item {
    display: inline-block;
    padding: 5px 12px;
    margin-left: 10px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    color: #666;
    background-color: var(--light-gray);
    transition: all 0.3s;
}

.filter-item:hover {
    background-color: #e0e0e0;
}

.filter-item.active {
    background-color: var(--primary-color);
    color: #fff;
}

/* 模板10筛选标签样式 */
.schedule-filter {
    display: flex;
    align-items: center;
}

.schedule-filter .tab {
    display: flex;
    align-items: center;
    padding: 5px 12px;
    margin-left: 8px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    background-color: var(--light-gray);
    transition: all 0.3s;
}

.schedule-filter .tab:hover {
    background-color: #e0e0e0;
}

.schedule-filter .tab.active {
    background-color: var(--primary-color);
    color: #fff;
}

.tab-icon-important, 
.tab-icon-football, 
.tab-icon-basketball {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 5px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.tab-icon-important {
    background-image: url('/minimal/img/important.png');
}

.tab-icon-football {
    background-image: url('/minimal/img/football.png');
}

.tab-icon-basketball {
    background-image: url('/minimal/img/basketball.png');
}

.display-none {
    display: none;
}

.page-header {
    margin-bottom: 30px;
}

.page-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.breadcrumb {
    color: #777;
    margin-bottom: 20px;
}

/* 比赛列表 */
.match-section {
    margin-bottom: 40px;
}

.match-list {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.match-item {
    display: grid;
    grid-template-columns: 60px 120px 1fr 100px;
    grid-gap: 10px;
    padding: 15px;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s;
}

.match-item:last-child {
    border-bottom: none;
}

.match-item:hover {
    background-color: var(--light-gray);
}

.match-item.filtered {
    display: none;
}

.match-time {
    font-weight: bold;
    color: #666;
}

.match-league {
    color: #888;
    font-size: 14px;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.team-home, .team-away {
    display: flex;
    align-items: center;
    width: 40%;
}

.team-home {
    justify-content: flex-end;
}

.team-away {
    justify-content: flex-start;
}

.team-home img, .team-away img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.team-home img {
    margin-right: 10px;
}

.team-away img {
    margin-left: 10px;
}

.match-vs {
    width: 20%;
    text-align: center;
    color: #999;
    font-weight: bold;
}

.match-status .watch-btn {
    display: block;
    padding: 6px 12px;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    border-radius: 4px;
    font-size: 14px;
}

.match-status .watch-btn:hover {
    background-color: var(--hover-color);
}

.match-status .watch-btn.start {
    background-color: #c32809;
    animation: pulse .5s infinite;
}

@keyframes pulse {
    0% {
        background-color: #c32809;
    }
    50% {
        background-color: #ad442f;
    }
    100% {
        background-color: #e6715a;
    }
}

.match-status .watch-btn.end {
    background-color: #800000;
}

.no-match {
    padding: 30px;
    text-align: center;
    color: #999;
}

/* 内容布局 */
.content-wrap {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    width: 100%;
}

/* 主内容区域 */
.main-content {
    width: 100%;
}

/* 侧边栏 */
.sidebar {
    width: 100%;
}

/* 新闻列表样式 */
.article-list {
    margin-bottom: 30px;
}

.article-item {
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-link {
    display: flex;
    color: var(--text-color);
    text-decoration: none;
}

.article-img {
    flex: 0 0 200px;
    height: 150px;
    overflow: hidden;
}

.article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-item:hover .article-img img {
    transform: scale(1.1);
}

.article-info {
    flex: 1;
    padding: 15px 20px;
    overflow: hidden;
}

.article-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
}

.article-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.5;
}

.article-meta {
    display: flex;
    align-items: center;
    color: #999;
    font-size: 13px;
}

.article-time {
    margin-right: 15px;
}

/* 侧边栏小部件 */
.sidebar-widget {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.hot-news-item, .recent-item {
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
}

.hot-news-item:last-child, .recent-item:last-child {
    border-bottom: none;
}

.hot-news-link, .recent-link {
    display: block;
    color: var(--text-color);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.hot-news-link:hover, .recent-link:hover {
    color: var(--primary-color);
}

.recent-link {
    display: flex;
    justify-content: space-between;
}

.recent-title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recent-date {
    color: #999;
    margin-left: 10px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .article-img {
        flex: 0 0 180px;
    }
}

@media (max-width: 992px) {
    .content-wrap {
        grid-template-columns: 1fr;
    }
    
    .main-content {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .article-link {
        flex-direction: column;
    }
    
    .article-img {
        width: 100%;
        height: 180px;
        flex: none;
    }
    
    .article-info {
        padding: 15px;
    }
    
    .article-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .article-desc {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .sidebar-widget {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .article-img {
        height: 160px;
    }
    
    .article-title {
        -webkit-line-clamp: 1;
    }
    
    .article-desc {
        -webkit-line-clamp: 1;
    }
}

/* 新闻部分 */
.news-section {
    margin-bottom: 40px;
}

.news-list {
    display: grid;
    grid-gap: 20px;
}

.news-item {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.news-link {
    display: flex;
    color: inherit;
}

.news-img {
    width: 120px;
}

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

.news-info {
    flex: 1;
    padding: 15px;
}

.news-title {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.news-meta {
    color: #999;
    font-size: 13px;
}

/* 集锦部分 */
.highlight-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.highlight-item {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.highlight-img {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.highlight-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
}

.play-icon:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #fff;
}

.highlight-title {
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
}

/* 侧边栏 */
.team-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
}

.team-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 5px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
}

.tag-item {
    display: inline-block;
    margin: 0 5px 10px 0;
    background: var(--light-gray);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 13px;
    color: var(--text-color);
}

.tag-item:hover {
    background: var(--primary-color);
    color: #fff;
}

.hot-news-item {
    margin-bottom: 12px;
}

.hot-news-link {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-color);
    padding: 4px 0;
}

.hot-news-link:hover {
    color: var(--primary-color);
}

/* 文章页样式 */
.article-content {
    background: #fff;
    border-radius: 5px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.article-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.article-meta {
    color: #999;
    font-size: 14px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.article-meta span {
    margin-right: 15px;
}

.article-body {
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-body p {
    margin-bottom: 15px;
}

.article-body img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
}

.article-tags {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.article-tags a {
    display: inline-block;
    margin: 0 5px 5px 0;
    background: var(--light-gray);
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 13px;
    color: var(--text-color);
}

.article-tags a:hover {
    background: var(--primary-color);
    color: #fff;
}

.related-articles {
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.related-title {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.related-list {
    list-style: disc;
    padding-left: 20px;
}

.related-item {
    margin-bottom: 10px;
}

.related-link {
    color: var(--text-color);
}

.related-link:hover {
    color: var(--primary-color);
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    gap: 8px;
}
.pagination li {
    list-style: none;
}
.pagination li.active a {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    font-size: 14px;
    border-radius: 4px;
    background: #fff;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination span.current {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.pagination a:hover {
    background: var(--light-gray);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination .prev,
.pagination .next {
    font-weight: bold;
}

.pagination .disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 768px) {
    .site-header .container {
    }
    
    .site-logo {
        margin-bottom: 15px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .match-filter, .schedule-filter {
        margin-top: 10px;
    }
    
    .filter-item, .schedule-filter .tab {
        margin: 0 5px 5px 0;
    }
    
    .match-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .match-teams {
        margin: 15px 0;
    }
    
    .news-link {
        flex-direction: column;
    }
    
    .news-img {
        width: 100%;
        height: 180px;
    }
    
    .team-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 友情链接 */
.friend-links {
    margin: 30px 0;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    color: #999;
}

.friend-links a {
    display: inline-block;
    margin: 0 10px 10px 0;
    color: #777;
}

/* 页脚 */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-color);
    padding: 30px 0;
    margin-top: 40px;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    margin-bottom: 10px;
}

.site-footer a {
    color: var(--primary-color);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .content-wrap {
        grid-template-columns: 1fr;
    }
    
    .highlight-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-header .container {
    }
    
    .site-logo {
        margin-bottom: 15px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .match-filter, .schedule-filter {
        margin-top: 10px;
    }
    
    .filter-item, .schedule-filter .tab {
        margin: 0 5px 5px 0;
    }
    
    .match-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .match-teams {
        margin: 15px 0;
    }
    
    .news-link {
        flex-direction: column;
    }
    
    .news-img {
        width: 100%;
        height: 180px;
    }
    
    .team-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 新闻列表页样式 */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.article-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    width: 100%;
}

.article-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-link {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    color: inherit;
    text-decoration: none;
    width: 100%;
}

.article-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-item:hover .article-img img {
    transform: scale(1.05);
}

.article-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0; /* 确保可以收缩 */
}

.article-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.article-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #999;
    font-size: 13px;
    flex-wrap: wrap;
}

.article-time, .article-view {
    display: flex;
    align-items: center;
}

.article-time:before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 5px;
    flex-shrink: 0;
}

.article-view:before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 5px;
    background: url('/minimal/img/view.png') no-repeat center/contain;
    flex-shrink: 0;
}

/* 响应式布局 */
@media (max-width: 992px) {
    .article-link {
        grid-template-columns: 200px minmax(0, 1fr);
    }
    
    .article-img {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .article-link {
        grid-template-columns: 1fr;
    }

    .article-img {
        height: 200px;
    }

    .article-info {
        padding: 15px;
    }

    .article-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .article-desc {
        margin-bottom: 12px;
        font-size: 13px;
    }
    
    .article-meta {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .article-img {
        height: 180px;
    }
    
    .article-title {
        font-size: 15px;
    }
    
    .article-desc {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }
}

/* 录像列表行显示样式 */
.luxiang-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
}

.luxiang-item {
    background: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.luxiang-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.luxiang-link {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    width: 100%;
}

.luxiang-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-color);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
}

.luxiang-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.luxiang-meta {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 10px;
}

.luxiang-time {
    display: flex;
    align-items: center;
}

.luxiang-time:before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 5px;
    flex-shrink: 0;
}

.luxiang-view {
    display: flex;
    align-items: center;
}

.luxiang-view:before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 5px;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .luxiang-item {
        padding: 15px;
    }
    
    .luxiang-title {
        font-size: 15px;
        -webkit-line-clamp: 1;
    }
    
    .luxiang-desc {
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 768px) {
    .luxiang-item {
        padding: 12px 15px;
    }
    
    .luxiang-title {
        font-size: 15px;
    }
    
    .luxiang-desc {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .luxiang-meta {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .luxiang-item {
        padding: 10px 12px;
    }
    
    .luxiang-title {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .luxiang-desc {
        margin-bottom: 6px;
        -webkit-line-clamp: 1;
    }
    
    .luxiang-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
} 