
.bottom-decoration-images {
    display: flex;
    justify-content: center;
    gap: 100px;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 0 20px;
    position: relative;
    min-height: 80px;
}

.decoration-left,
.decoration-right {
    flex: 0 0 auto;
    position: relative;
}

.decoration-left img,
.decoration-right img {
    max-width: 120px;
    height: auto;
    display: block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}



/* 左右图片样式统一 */
.decoration-left,
.decoration-right {
    margin: 0;
}

/* 加载状态和无数据状态样式 */
#loading-indicator {
    display: none;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#loading-indicator div {
    color: #fa75b7;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

#loading-indicator div::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #fa75b7;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#no-data-indicator {
    display: none;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#no-data-indicator div {
    color: #6c757d;
    font-size: 16px;
    font-weight: 400;
    position: relative;
}

#no-data-indicator div::before {
    content: '📭';
    display: block;
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.6;
}

/* 产品卡片动画效果 */
.product-card {
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.product-card.fade-in {
    animation: fadeInUp 0.5s ease forwards;
}

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

/* 筛选按钮增强样式 */
.filter-btn.category-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.filter-btn.category-btn:hover::before {
    left: 100%;
}

.filter-btn.category-btn.active {
    background: linear-gradient(135deg, #fa75b7 0%, #e85aa0 100%);
    box-shadow: 0 4px 15px rgba(250, 117, 183, 0.3);
    transform: translateY(-2px);
}

/* 移动端响应式 */
@media (max-width: 768px) {
    .bottom-decoration-images {
        flex-direction: column;
        gap: 30px;
        margin: 30px auto 0;
        padding: 0 15px;
        min-height: auto;
    }
    
    .decoration-left,
    .decoration-right {
        width: 100%;
        text-align: center;
        margin: 0;
    }
    
    .decoration-left img,
    .decoration-right img {
        max-width: 100px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .bottom-decoration-images {
        gap: 20px;
        margin: 20px auto 0;
    }
    
    .decoration-left img,
    .decoration-right img {
        max-width: 80px;
    }
}

/* 全屏宽度图片样式 */
.full-width-image {
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    width: 100vw !important;
    max-width: 100vw !important;
    overflow: hidden !important;
}

.full-width-image img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
    max-width: none !important;
}

/* 移动端全屏图片响应式 */
@media (max-width: 768px) {
    .full-width-image {
        position: relative !important;
        left: 50% !important;
        right: 50% !important;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
        width: 100vw !important;
        max-width: 100vw !important;
    }
}

@media (max-width: 480px) {
    .full-width-image {
        position: relative !important;
        left: 50% !important;
        right: 50% !important;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
        width: 100vw !important;
        max-width: 100vw !important;
    }
}

/* ==================== 基础布局重置 ==================== */
* {
    box-sizing: border-box;
}

/* 页面整体背景 */
.bodybgcolor {
    /* background: #f8fafc;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%); */
    min-height: 100vh;
    padding: 15px 0;
}

.body1000 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 顶部导航容器 */
.navigation-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== 全新顶部导航设计 ==================== */
.new_listhd {
    background: white !important;
    border-radius: 24px !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08) !important;
    padding: 20px 30px !important;
    margin-bottom: 25px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: 20px !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    width: 100% !important;
    max-width: 1400px !important;
    height: 110px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    line-height: normal !important;
}

.listhdleft {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
}

.listhdleft a.currentr {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent !important;
    min-height: 45px;
    position: relative;
    overflow: hidden;
}



.listhdleft a.currentr:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #5b63ea 0%, #6f42c1 100%);
}

.listhdleft a.currentr::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.listhdleft a.currentr:hover::before {
    left: 100%;
}



.listhdcenter {
    text-align: center;
    color: #64748b;
    font-size: 14px;
    flex: 2;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.listhdcenter span {
    background: linear-gradient(135deg, #f43f5e 0%, #ec4899 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 18px;
}

.listhdright {
    flex: 1;
    text-align: right;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.listhdright a {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white !important;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-height: 45px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}



.listhdright a:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.6);
    background: linear-gradient(135deg, #ff5252 0%, #d32f2f 100%);
}

.listhdright a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.listhdright a:hover::before {
    left: 100%;
}


@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* ==================== 主要内容布局 ==================== */
.main-content-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* 左侧内容区域 */
.main-content-wrapper > .main-image-container {
    flex: 1;
    max-width: 700px;
}

/* 主图片容器 */
.main-image-container {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    position: relative;
}

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

.main-image-container:hover img {
    transform: scale(1.05);
}

/* 右侧推荐信息垂直布局 */
.recommend-sidebar {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 25px;
    position: sticky;
    top: 20px;
    height: 350px;
    width: 420px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* 推荐框样式 */
.recommend-box {
    background: white;
    border: 2px solid #ff6b6b;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.1);
}

.recommend-sidebar h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}



.recommend-section {
    margin-bottom: 20px;
    flex: 1;
    overflow-y: auto;
    padding-right: 5px;
}

.recommend-section:last-child {
    margin-bottom: 0;
}

/* 推荐内容滚动条样式 */
.recommend-section::-webkit-scrollbar {
    width: 4px;
}

.recommend-section::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.recommend-section::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}

.recommend-section::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.recommend-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #475569;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border-left: 4px solid #6366f1;
}

.recommend-list {
    display: flex;
    flex-direction: column;
    
}

.recommend-item {
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    margin-bottom: 10px;
    overflow: hidden;
    height: 80px;
    text-decoration: none;
    color: inherit;
    display: block;
}

.recommend-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #ff6b9d;
}

.recommend-content {
    display: flex;
    padding: 10px;
    gap: 10px;
    height: 100%;
    align-items: center;
}

.recommend-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    min-width: 0;
}

.recommend-desc {
    color: #333;
    font-size: 13px;
    line-height: 1.3;
    margin: 0;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.view-btn {
    background: #ff6b9d;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.view-btn:hover {
    background: #ff5582;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

.recommend-date {
    color: #666;
    font-size: 12px;
    margin-top: 5px;
}

.recommend-image {
    width: 70px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    flex-grow: 0;
    background: #f0f0f0;
}

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

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



.recommend-placeholder {
    width: 60px;
    height: 40px;
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    border-radius: 10px;
    flex-shrink: 0;
    border: 1px solid #f3e8ff;
}

/* ==================== 顶部导航栏 ==================== */
.top-navigation {
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    padding: 0;
    overflow: hidden;
}

.nav-tabs {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    background: white;
}

.nav-item {
    flex: 1;
    display: block;
    padding: 18px 20px;
    text-align: center;
    text-decoration: none;
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 3px solid transparent;
}

.nav-item:hover {
    color: #ff6b9d;
    background: #fef7f0;
}

.nav-item.active {
    color: #ff6b9d;
    background: #fef7f0;
    border-bottom-color: #ff6b9d;
    font-weight: 600;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #ff6b9d;
    border-radius: 2px;
}

/* ==================== 推荐侧边栏 ==================== */
.recommend {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 25px;
    position: sticky;
    top: 20px;
}

.recommend h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 20px 0;
    padding: 0 0 15px 0;
    border-bottom: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(90deg, #667eea, #764ba2) border-box;
    border-bottom: 3px solid;
    position: relative;
}

/* 信息推荐样式 */
.recommend .top {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.recommend .top li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.recommend .top li:hover {
    background: white;
    border-left-color: #3498db;
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.recommend .top li a:first-child {
    display: block;
    width: 65px;
    height: 50px;
    margin-right: 12px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.recommend .top li:hover img {
    transform: scale(1.1);
}

.recommend .top li a:nth-child(2) {
    flex: 1;
    color: #2c3e50;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recommend .top li a:nth-child(2):hover {
    color: #3498db;
}

/* 最新信息样式 */
.recommend .bottom {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recommend .bottom li {
    margin-bottom: 12px;
    position: relative;
}

.recommend .bottom li a {
    display: block;
    color: #2c3e50;
    text-decoration: none;
    font-size: 14px;
    padding: 12px 15px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 10px;
    border-left: 4px solid #95a5a6;
    transition: all 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recommend .bottom li a:hover {
    color: #e74c3c;
    border-left-color: #e74c3c;
    background: white;
    transform: translateX(5px);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

/* ==================== 主列表区域 ==================== */
.infolists {
    background: transparent;
    padding: 0;
}

.section {
    width: 100%;
}

/* 位置导航 */
.location {
    background: white;
    color: #475569;
    padding: 15px 25px;
    border-radius: 16px;
    margin-bottom: 25px;
    font-size: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
   background:url(../images/global/location.gif) no-repeat 5px 17px;
}



/* 卡片网格布局 */
.sep {
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); */
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 810px;
}

/* ==================== 信息列表项 ==================== */
.media {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 0;
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 320px;
}

.media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.media:hover::before {
    opacity: 1;
}

/* 置顶样式 */
.media.ding {
    border-color: #f59e0b;
    position: relative;
}

.media.ding::after {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.media.ding::before {
    background: linear-gradient(90deg, #f59e0b 0%, #f97316 100%);
    opacity: 1;
}

/* 图片容器 */
.media-cap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.media-cap img {
    width: 98%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border: none;
    padding: 0;
}

.media-cap:hover img {
    transform: scale(1.1);
}

/* 内容区域 */
.media-body {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.media-body-title {
    margin-bottom: 12px;
    position: relative;
}

.media-body-title .pull-right {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 500;
    position: absolute;
    top: 0;
    right: 0;
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 12px;
}

.info-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    line-height: 1.5;
    display: block;
    margin-bottom: 10px;
    margin-right: 80px;
    transition: color 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.info-title:hover {
    color: #6366f1;
    text-decoration: none;
}

.text-red {
    color: #ef4444 !important;
}

.font-bold {
    font-weight: 700 !important;
}

/* 标签样式 */
.img_count,
.tuijian,
.certify {
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    margin-left: 6px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.img_count {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}

.tuijian {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

.certify {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* 内容摘要 */
.typo-small {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin: 10px 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* 底部标签 */
.typo-smalls {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

.typo-smalls font {
    background: #f8fafc;
    color: #475569;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    font-style: normal;
}

.typo-smalls font:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* ==================== 分页样式 ==================== */
.pagination2 {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.pagination2 a {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 16px;
    margin: 0 3px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-block;
    min-width: 40px;
}

.pagination2 a:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.pagination2 span.current {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: 1px solid transparent;
    border-radius: 12px;
    line-height: 17px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
    display: inline-block;
    min-width: 40px;
}

/* ==================== 筛选区域 ==================== */
.filter-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    margin: 30px 0;
    padding: 20px 30px;
}

.filter-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.location-filter {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.filter-btn {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 107, 157, 0.3);
    position: relative;
    overflow: hidden;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.filter-btn.active {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    transform: translateY(-1px);
}

.filter-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
}

/* 分类筛选样式 */
.category-filter {
    margin-top: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.category-btn {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e9ecef;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 8px;
}

.category-btn:hover {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
}

.category-btn.active {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
}

/* 加载状态和无数据状态样式 */
.loading, .no-data {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 16px;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 20px 0;
}

.loading {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: #fff;
    position: relative;
}

.loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-data {
    background: #f5f5f5;
    border: 1px dashed #ddd;
}

/* ==================== 产品卡片网格 ==================== */
.products-grid-section {
    margin: 30px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    padding: 0;
}

.product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-description {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-details-btn {
    background: white;
    color: #666;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.view-details-btn:hover {
    background: #f8f9fa;
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.view-details-btn.primary {
    background: #ff6b6b;
    color: white;
    border-color: #ff6b6b;
}

.view-details-btn.primary:hover {
    background: #ff5252;
    border-color: #ff5252;
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 1024px) {
    .main-content-wrapper {
        flex-direction: column;
        gap: 25px;
    }
    
    .main-image-container {
        max-width: 100%;
    }
    
    .recommend-sidebar {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .filter-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .category-links {
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .filter-navigation {
        padding: 15px 20px;
        margin: 20px 0;
    }
    
    .filter-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .location-filter {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .category-links {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .product-image {
        height: 150px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-description {
        font-size: 13px;
        min-height: 35px;
    }
    
    .view-details-btn {
        padding: 6px 15px;
        font-size: 13px;
    }
}

@media (max-width: 1200px) {
    .new_listhd {
        width: 100%;
        max-width: 1400px;
        padding: 20px 25px;
        height: auto;
        min-height: 90px;
        flex-wrap: wrap;
    }
    
    .listhdleft,
    .listhdcenter,
    .listhdright {
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .body1000 {
        padding: 0 15px;
    }
    
    .main-content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .recommend-sidebar {
        order: -1;
        position: static;
        padding: 20px;
    }
    
    .new_listhd {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        width: 100%;
        max-width: 1400px;
        height: auto;
        padding: 20px;
    }
    
    .listhdleft,
    .listhdcenter,
    .listhdright {
        flex: none;
        min-width: auto;
        text-align: center;
    }
    
    .sep {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 18px;
    }
    
    .media {
        min-height: 280px;
    }
    
    .media-cap {
        height: 180px;
    }
    
    .info-title {
        font-size: 15px;
        margin-right: 60px;
    }
    
    .recommend-section {
        margin-bottom: 20px;
    }
    
    .recommend-item {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .body1000 {
        padding: 0 10px;
    }
    
    .new_listhd {
        width: 100%;
        max-width: 1400px;
        height: auto;
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 16px;
    }
    
    .recommend-sidebar,
    .pagination2 {
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 16px;
    }
    
    .sep {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .media {
        min-height: 250px;
        border-radius: 16px;
    }
    
    .media-cap {
        height: 150px;
    }
    
    .media-body {
        padding: 15px;
    }
    
    .info-title {
        font-size: 14px;
        margin-right: 50px;
    }
    
    .recommend-item {
        gap: 10px;
        padding: 8px;
    }
    
    .recommend-item img {
        width: 45px;
        height: 35px;
    }
    
    .recommend-section h4 {
        font-size: 14px;
        padding: 6px 10px;
    }
    
    /* 导航栏响应式 */
    .nav-item {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .nav-item.active::after {
        width: 25px;
    }
}

/* ==================== 清除浮动 ==================== */
.clearfix::after,
.cfix::after {
    content: "";
    display: table;
    clear: both;
}

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

.media {
    animation: slideInUp 0.6s ease forwards;
}

.media:nth-child(even) {
    animation-delay: 0.1s;
}

.media:nth-child(odd) {
    animation-delay: 0.2s;
}

/* 滚动条美化 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(241, 245, 249, 0.5);
    border-radius: 10px;
}





/* ==================== 分类内容切换样式 ==================== */
.category-content-section {
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s ease-in-out;
}

/* 角色设计内容样式 */
.character_design_wrapper {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 20px;
}

.character_design_content {
    padding: 30px;
}

.main_category_tab {
    text-align: center;
    margin-bottom: 30px;
}

.main_tab_item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.tab_icon_img {
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>') no-repeat center;
    background-size: contain;
}

/* 店铺滚动展示区域 */
.hotschool {
    margin: 20px 0;
}

.rollBox {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #f8fafc;
    padding: 20px;
}

.Cont {
    overflow: hidden;
    height: 200px;
}

.ScrCont {
    display: flex;
    transition: transform 0.3s ease;
}

.pic {
    flex: 0 0 200px;
    margin-right: 20px;
    text-align: center;
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pic img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.schoolname {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.schoolname a {
    color: #333;
    text-decoration: none;
}

.seecourse a {
    color: #e74c3c;
    font-size: 12px;
    text-decoration: none;
    font-weight: 500;
}

/* 内容网格 */
.main_content_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.grid_item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.item_img {
    height: 150px;
    overflow: hidden;
}

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

.grid_item:hover .item_img img {
    transform: scale(1.05);
}

.item_info {
    padding: 20px;
}

.item_title {
    margin-bottom: 10px;
}

.item_title a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.item_desc {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* 查看更多按钮 */
.view_more_section {
    text-align: center;
    margin-top: 30px;
}

.view_more_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view_more_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.plus_icon {
    font-size: 18px;
    font-weight: bold;
}

/* 场景设计内容样式 */
.scene_design_wrapper {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 20px;
}

.scene_design_content {
    padding: 30px;
}

.category_header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding: 15px 0;
    border-bottom: 2px solid #f0f0f0;
}

.tab_icon_img2 {
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23667eea"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"/></svg>') no-repeat center;
    background-size: contain;
}

.category_header span {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.content_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* MG动画设计内容样式 */
.mg_animation_wrapper {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 20px;
}

.mg_animation_content {
    padding: 30px;
}

.tab_icon_img3 {
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e74c3c"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"/></svg>') no-repeat center;
    background-size: contain;
}

.mg_interactive_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.mg_left_display {
    position: sticky;
    top: 20px;
}

.mg_main_image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mg_main_image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.mg_right_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mg_list_item {
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mg_list_item:hover {
    background: white;
    border-color: #667eea;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mg_item_desc {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.mg_item_title a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.mg_view_more {
    margin-top: 20px;
    text-align: center;
}

.mg_view_more a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid #667eea;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.mg_view_more a:hover {
    background: #667eea;
    color: white;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .mg_interactive_layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .main_content_grid {
        grid-template-columns: 1fr;
    }
    
    .content_grid {
        grid-template-columns: 1fr;
    }
    
    .character_design_content,
    .scene_design_content,
    .mg_animation_content {
        padding: 20px;
    }
}
