/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}
a {
            text-decoration: none;
        }
/* 容器样式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* 头部样式 */
.xwmh-260411-header {
    background: linear-gradient(135deg, #2e47b7 0%, #3b2f47 100%);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.xwmh-260411-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.xwmh-260411-header .logo h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* 导航样式 */
.xwmh-260411-header .nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.xwmh-260411-header .nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.xwmh-260411-header .nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffd700;
    transition: width 0.3s ease;
}

.xwmh-260411-header .nav a:hover {
    color: #ffd700;
}

.xwmh-260411-header .nav a:hover::after {
    width: 100%;
}

.xwmh-260411-header .nav a.active {
    color: #ffd700;
    font-weight: bold;
}

.xwmh-260411-header .nav a.active::after {
    width: 100%;
}

.xwmh-260411-header .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.xwmh-260411-header .search-box {
    display: flex;
    align-items: center;
    background-color: rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 5px 15px;
    transition: all 0.3s;
}

.xwmh-260411-header .search-box:hover {
    background-color: rgba(255,255,255,0.3);
}

.xwmh-260411-header .search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    width: 200px;
}

.xwmh-260411-header .search-box input::placeholder {
    color: rgba(255,255,255,0.7);
}

.xwmh-260411-header .search-box button {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.xwmh-260411-header .user-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.xwmh-260411-header .user-icon,
.xwmh-260411-header .notification {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.xwmh-26041-header .user-icon:hover,
.xwmh-260411-header .notification:hover {
    color: #ffd700;
    transform: scale(1.1);
}

.xwmh-260411-header .notification::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 8px;
    height: 8px;
    background-color: #ff4444;
    border-radius: 50%;
}

.xwmh-260411-header .vip-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.xwmh-260411-header .vip-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* 英雄区样式 */
.xwmh-260411 .hero {
    margin-top: 66px;
    position: relative;
    overflow: hidden;
    height: 600px;
}

.xwmh-260411 .hero-slider {
    position: relative;
}

.xwmh-260411 .hero-slide {
    display: none;
    padding: 120px 0 80px;
    transition: background-color 0.5s ease;
}

.xwmh-260411 .hero-slide.active {
    display: block;
}

.xwmh-260411 .hero-slide.fade-in {
    animation: fadeInUp 0.5s ease-out forwards;
}

.xwmh-260411 .hero-slide.fade-out {
    animation: fadeOutDown 0.25s ease-in forwards;
}

.xwmh-260411 .hero-slide .hero-text h2,
.xwmh-260411 .hero-slide .hero-text p {
    animation: slideInLeft 0.5s ease-out forwards;
}

.xwmh-260411 .hero-slide .hero-image img {
    animation: slideInRight 0.5s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(30px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.xwmh-260411 .hero-slide .hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.xwmh-260411 .hero-slide .hero-text {
    flex: 1;
    margin-top: -150px;
}

.xwmh-260411 .hero-slide .hero-text h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.xwmh-260411 .hero-slide .hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.xwmh-260411 .hero-slide .hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.xwmh-260411 .hero-slide .btn-primary,
.xwmh-260411 .hero-slide .btn-secondary {
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

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

.xwmh-260411 .hero-slide .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.xwmh-260411 .hero-slide .btn-secondary {
    background: #fff;
    color: #667eea;
    border: 2px solid #667eea;
}

.xwmh-260411 .hero-slide .btn-secondary:hover {
    background: #667eea;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.xwmh-260411 .hero-slide .hero-controls {
    display: flex;
    gap: 15px;
}

.xwmh-260411 .hero-slide .hero-prev,
.xwmh-260411 .hero-slide .hero-next {
    background: rgba(255,255,255,0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.xwmh-260411 .hero-slide .hero-prev:hover,
.xwmh-260411 .hero-slide .hero-next:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.xwmh-260411 .hero-slide .hero-image {
    flex: 1;
    text-align: center;
        margin-top: -78px;
}

.xwmh-260411 .hero-slide .hero-image img {
    max-width: 100%;
    transition: all 0.3s;
}

.xwmh-260411 .hero-slide .hero-image img:hover {
    transform: scale(1.05);

}

.xwmh-260411 .hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.xwmh-260411 .hero-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.xwmh-260411 .hero-indicators button.active {
    background: #fff;
    transform: scale(1.2);
}

/* 主内容样式 */
.xwmh-260411 .main {
    padding: 50px 0;
}

/* 通用section样式 */
.xwmh-260411 .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.xwmh-260411 .section-header h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    position: relative;
    padding-left: 15px;
}

.xwmh-260411 .section-header h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 5px;
}

.xwmh-260411 .section-header .section-more {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.xwmh-260411 .section-header .section-more:hover {
    color: #667eea;
}

/* 热门推荐样式 */
.xwmh-260411 .popular-section {
    margin-bottom: 60px;
}

.xwmh-260411 .popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.xwmh-260411 .popular-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.xwmh-260411 .popular-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.xwmh-260411 .popular-item .popular-image {
    position: relative;
    overflow: hidden;
}

.xwmh-260411 .popular-item .popular-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s;
}

.xwmh-260411 .popular-item:hover .popular-image img {
    transform: scale(1.1);
}

.xwmh-260411 .popular-item .popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.xwmh-260411 .popular-item .popular-info {
    padding: 15px;
}

.xwmh-260411 .popular-item .popular-info h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.xwmh-260411 .popular-item .popular-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.xwmh-260411 .popular-item .popular-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.xwmh-260411 .popular-item .popular-tags span {
    background: #f0f0f0;
    color: #666;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 10px;
    transition: all 0.3s;
}

.xwmh-260411 .popular-item:hover .popular-tags span {
    background: #e1e1ff;
    color: #667eea;
}

/* 最新更新样式 */
.xwmh-260411 .latest-section {
    margin-bottom: 60px;
}

.xwmh-260411 .latest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.xwmh-260411 .latest-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.xwmh-260411 .latest-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.xwmh-260411 .latest-images {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.xwmh-260411 .latest-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.xwmh-260411 .latest-item:hover .latest-images img {
    transform: scale(1.1);
}

.xwmh-260411 .latest-score {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffd700;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 15px;
    z-index: 2;
}

.xwmh-260411 .latest-author {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 10px;
    z-index: 2;
}

.xwmh-260411 .latest-item .latest-info {
    padding: 15px;
}

.xwmh-260411 .latest-item .latest-info h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.xwmh-260411 .latest-item .latest-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.xwmh-260411 .latest-item .latest-info .update-time {
    font-size: 12px;
    color: #999;
}

/* 分类浏览样式 */
.xwmh-260411 .category-section {
    margin-bottom: 60px;
}

.xwmh-260411 .category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
}

.xwmh-260411 .category-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.xwmh-260411 .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.xwmh-260411 .category-card .category-icon {
    font-size: 36px;
    margin-bottom: 2px;
    transition: all 0.3s;
}

.xwmh-260411 .category-card:hover .category-icon {
    transform: scale(1.1);
    color: #667eea;
}

.xwmh-260411 .category-card h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}

.xwmh-260411 .category-card p {
    font-size: 14px;
    color: #666;
}

/* 精选推送样式 */
.xwmh-260411 .upcoming-section {
    margin-bottom: 60px;
}

.xwmh-260411 .upcoming-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.xwmh-260411 .upcoming-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.xwmh-260411 .upcoming-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.xwmh-260411 .upcoming-image {
    position: relative;
    overflow: hidden;
}

.xwmh-260411 .upcoming-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s;
}

.xwmh-260411 .upcoming-item:hover img {
    transform: scale(1.1);
}

.xwmh-260411 .author-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
}

.xwmh-260411 .upcoming-item .upcoming-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.xwmh-260411 .upcoming-item .upcoming-info h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.xwmh-260411 .upcoming-item .upcoming-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.xwmh-260411 .upcoming-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.xwmh-260411 .upcoming-item .follow-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.xwmh-260411 .upcoming-item .follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.xwmh-260411 .score-badge {
    background: #ffc107;
    color: #333;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: bold;
}

/* 人气排行榜样式 */
.xwmh-260411 .ranking-section {
    margin-bottom: 60px;
}

.xwmh-260411 .ranking-tabs {
    display: flex;
    gap: 15px;
}

.xwmh-260411 .ranking-tabs .tab {
    background: #f0f0f0;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

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

.xwmh-260411 .ranking-tabs .tab:hover:not(.active) {
    background: #e0e0e0;
}

.xwmh-260411 .ranking-content {
    position: relative;
    overflow: hidden;
}

.xwmh-260411 .ranking-list {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.xwmh-260411 .ranking-list.active {
    display: block;
}

.xwmh-260411 .ranking-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.xwmh-260411 .ranking-item:last-child {
    border-bottom: none;
}

.xwmh-260411 .ranking-item:hover {
    background: #f9f9f9;
    padding-left: 10px;
    border-radius: 5px;
}

.xwmh-260411 .ranking-item.top {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 10px;
}

.xwmh-260411 .ranking-item .rank-number {
    font-size: 24px;
    font-weight: bold;
    color: #999;
    width: 40px;
    text-align: center;
}

.xwmh-260411 .ranking-item.top .rank-number {
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.xwmh-260411 .ranking-item img {
    width: 80px;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.xwmh-260411 .ranking-item .ranking-info {
    flex: 1;
}

.xwmh-260411 .ranking-item .ranking-info h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.xwmh-260411 .ranking-item .ranking-info p {
    font-size: 14px;
    color: #666;
}

.xwmh-260411 .ranking-item .watch-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.xwmh-260411 .ranking-item .watch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* 专题推荐样式 */
.xwmh-260411 .topic-section {
    margin-bottom: 60px;
}

.xwmh-260411 .topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
}

.xwmh-260411 .topic-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
    display: flex;
}

.xwmh-260411 .topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.xwmh-260411 .topic-card img {
    width: 200px;
    height: 120px;
    object-fit: cover;
    transition: all 0.3s;
}

.xwmh-260411 .topic-card:hover img {
    transform: scale(1.1);
}

.xwmh-260411 .topic-card .topic-info {
    padding: 20px;
    flex: 1;
}

.xwmh-260411 .topic-card .topic-info h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.xwmh-260411 .topic-card .topic-info p {
    font-size: 14px;
    color: #666;
}

/* 社区动态样式 */
.xwmh-260411 .community-section {
    margin-bottom: 60px;
}

.xwmh-260411 .community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.xwmh-260411 .community-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
    display: flex;
    gap: 15px;
}

.xwmh-260411 .community-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.xwmh-260411 .community-item .community-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.xwmh-260411 .community-item .community-content {
    flex: 1;
}

.xwmh-260411 .community-item .community-content h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.xwmh-260411 .community-item .community-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.xwmh-260411 .community-item .community-actions {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #999;
}

.xwmh-260411 .community-item .community-actions span {
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    cursor: pointer;
}

.xwmh-260411 .community-item .community-actions span:hover {
    color: #667eea;
}

/* 底部样式 */
.xwmh-260411-footer {
    background: linear-gradient(135deg, #333 0%, #111 100%);
    color: #fff;
    padding: 50px 0;
    margin-bottom: -15px;
}

.xwmh-260411-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.xwmh-260411-footer .footer-section h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffd700;
}

.xwmh-260411-footer .footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 15px;
}

.xwmh-260411-footer .footer-section ul {
    list-style: none;
}

.xwmh-260411-footer .footer-section ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #ccc;
}

.xwmh-260411-footer .footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
}

.xwmh-260411-footer .footer-section ul li a:hover {
    color: #ffd700;
}

.xwmh-260411-footer .footer-section ul li i {
    margin-right: 10px;
    color: #ffd700;
}

.xwmh-260411-footer .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.xwmh-260411-footer .social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s;
}

.xwmh-260411-footer .social-icons a:hover {
    background: #ffd700;
    color: #333;
    transform: translateY(-5px);
}

.xwmh-260411-footer .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #ccc;
}
.xwmh-260411-footer .footer-bottom a{
    color: #828922;
}

/* 顶部大图（左右两格） */
.xwmh-260411-hero {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 28px;
    height:500px;
}

.xwmh-260411-hero .w-hero-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 500px;
}

.xwmh-260411-hero .w-hero-item img {
width: 100%;
    height: 500px;
    object-fit: cover;
}

.xwmh-260411-hero .w-hero-info {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
}

.xwmh-260411-hero .w-hero-info h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.xwmh-260411-hero .w-hero-info p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 10px;
}

.xwmh-260411-hero .w-hero-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    margin-bottom: 10px;
}

.xwmh-260411-hero .w-hero-btn {
    display: inline-block;
    padding: 8px 14px;
    background: #dd3232;
    color: white;
    border-radius: 6px;
    font-size: 13px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .xwmh-260411 .header .nav {
        display: none;
    }

    .xwmh-260411 .hero .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .xwmh-260411 .hero .hero-buttons {
        justify-content: center;
    }

    .xwmh-260411 .popular-grid,
    .xwmh-260411 .latest-grid,
    .xwmh-260411 .category-grid,
    .xwmh-260411 .upcoming-slider,
    .xwmh-260411 .topic-grid,
    .xwmh-260411 .community-grid {
        grid-template-columns: 1fr;
    }

    .xwmh-260411 .topic-card {
        flex-direction: column;
    }

    .xwmh-260411 .topic-card img {
        width: 100%;
        height: 150px;
    }

    .xwmh-260411 .ranking-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .xwmh-260411 .ranking-item .rank-number {
        order: -1;
        margin-bottom: 10px;
    }

    .xwmh-260411 .ranking-item img {
        margin-bottom: 15px;
    }

    .xwmh-260411 .ranking-item .watch-btn {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .xwmh-260411 .header .search-box input {
        width: 150px;
    }

    .xwmh-260411 .hero .hero-text h2 {
        font-size: 24px;
    }

    .xwmh-260411 .hero .hero-text p {
        font-size: 16px;
    }

    .xwmh-260411 .hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .xwmh-260411 .footer .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.xwmh-260411 .popular-item,
.xwmh-260411 .latest-item,
.xwmh-260411 .category-card,
.xwmh-260411 .upcoming-item,
.xwmh-260411 .ranking-item,
.xwmh-260411 .topic-card,
.xwmh-260411 .community-item {
    animation: fadeIn 0.5s ease-out;
}

.xwmh-260411 .popular-item:nth-child(2) {
    animation-delay: 0.1s;
}

.xwmh-260411 .popular-item:nth-child(3) {
    animation-delay: 0.2s;
}

.xwmh-260411 .popular-item:nth-child(4) {
    animation-delay: 0.3s;
}

.xwmh-260411 .latest-item:nth-child(2) {
    animation-delay: 0.1s;
}

.xwmh-260411 .latest-item:nth-child(3) {
    animation-delay: 0.2s;
}

.xwmh-260411 .latest-item:nth-child(4) {
    animation-delay: 0.3s;
}

.xwmh-260411 .latest-item:nth-child(5) {
    animation-delay: 0.4s;
}

.xwmh-260411 .latest-item:nth-child(6) {
    animation-delay: 0.5s;
}