.media-filter {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.filter-row {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.filter-label {
    width: 80px;
    color: #666;
    font-size: 14px;
}

.filter-content {
    flex: 1;
}

.filter-tag {
    display: inline-block;
    padding: 5px 15px;
    margin: 0 10px 10px 0;
    border-radius: 15px;
    cursor: pointer;
    font-size: 13px;
    color: #666;
}

.filter-tag:hover, .filter-tag.active {
    background: #0d6efd;
    color: #fff;
}

.filter-tag.not-limited {
    background: #0d6efd;
    color: #fff;
}

.price-range {
    display: inline-flex;
    align-items: center;
}

.price-input {
    width: 100px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 10px;
    margin: 0 5px;
}

.media-list {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.media-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.media-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #3498db, #2980b9);
    opacity: 0.8;
}

.media-item:hover {
    background: rgba(32, 95, 160, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.media-item:last-child {
    border-bottom: none;
}

.media-info {
    flex: 1;
    margin-left: 30px;
    margin-right: 60px;
    display: flex;
    flex-direction: column;
}

.media-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-right: 20px;
}

.media-title h3 {
    font-size: 16px;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}

.media-item:hover .media-title h3 {
    color: #205fa0;
}

.badge {
    margin-left: 15px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
    font-size: 12px;
    border-radius: 12px;
    font-weight: 500;
}

.media-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 20px;
    align-items: center;
    position: relative;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.meta-item label {
    color: #94a3b8;
    margin-right: 8px;
}

.media-data {
    display: flex;
    gap: 40px;
    padding: 15px 0;
    border-top: 1px solid #f1f5f9;
    background: linear-gradient(to right, rgba(241, 245, 249, 0.3), transparent);
}

.data-item {
    text-align: center;
    padding: 0 12px;
    position: relative;
}

.data-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
}

.data-label {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 4px;
}

.data-value {
    font-size: 14px;
    color: #1e293b;
    font-weight: 600;
}

.media-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    min-width: 160px;
    padding-left: 40px;
    padding-right: 20px;
    margin-left: 20px;
    border-left: 1px solid #f1f5f9;
}

.price {
    color: #ff3b30;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
}

.price span {
    font-size: 32px;
    margin-left: 2px;
}

.media-item:hover .price {
    color: #ff1a1a;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.action-btn {
    width: 120px;
    height: 34px;
    margin-bottom: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-detail {
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.btn-detail:hover {
    color: #205fa0;
    border-color: #205fa0;
    background: rgba(32, 95, 160, 0.05);
}

.btn-buy {
    color: #fff;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border: none;
}

.btn-buy:hover {
    background: linear-gradient(135deg, #2670bd, #0a447d);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(32, 95, 160, 0.2);
}

.advanced-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.filter-dropdown {
    position: relative;
    display: inline-block;
}

.filter-dropdown-btn {
    padding: 6px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.filter-dropdown-btn i {
    margin-left: 5px;
}

.page-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.search-box {
    display: none;
    border-radius: 12px;
}

.search-input {
    width: 200px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 8px 0 0 8px;
}

.search-btn {
    padding: 5px 15px;
    margin-left: 10px;
    background: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    border-radius: 0 8px 8px 0;
}

.media-list {
    margin-top: 20px;
}

.media-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.media-item h3 {
    font-size: 18px;
    margin: 0 0 10px 0;
    font-weight: normal;
}

.media-item .price {
    color: #ff3b30;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
}

.media-item .price span {
    font-size: 32px;
    margin-left: 2px;
}

/* 网络媒体页面样式 */
.media-network {
    position: relative;
    z-index: 3;
    margin-top: -80px;
    padding: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* 服务特性样式 */
.service-features {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 15px 15px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 8px;
}

.feature-item:hover {
    background: rgba(32, 95, 160, 0.05);
    transform: translateY(-2px);
}

.feature-item i {
    color: #205fa0;
    font-size: 20px;
    animation: iconPulse 2s infinite;
    background: linear-gradient(135deg, #205fa0, #093968);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-item span {
    background: linear-gradient(135deg, #205fa0, #093968);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* 筛选区域样式 */
.filter-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

.filter-row {
    display: flex;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-row:last-child {
    border-bottom: none;
}

.filter-label {
    width: 90px;
    color: #666;
    font-size: 14px;
    line-height: 28px;
    flex-shrink: 0;
}

.filter-content {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-left: 5px;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 12px;
    color: #666;
    font-size: 13px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.filter-tag:hover, .filter-tag.active {
    color: #fff;
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.filter-tag.active {
    background: #1890ff;
    border-color: #1890ff;
    color: #fff;
}

.price-custom {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
}

.price-input {
    width: 80px;
    height: 32px;
    padding: 0 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
}

.price-input:focus {
    border-color: #1890ff;
    box-shadow: 0 0 0 2px rgba(24,144,255,0.1);
}

.price-custom span {
    margin: 0 10px;
    color: #999;
}

.price-btn {
    height: 32px;
    padding: 0 15px;
    margin-left: 10px;
    border: none;
    border-radius: 6px;
    background: #1890ff;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.price-btn:hover {
    background: #40a9ff;
}

/* 高级筛选样式 */
.advanced-filter {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.filter-item {
    position: relative;
    height: 32px;
    padding: 0 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 13px;
    color: #666;
    transition: all 0.3s ease;
    background: #fff;
}

.filter-item:hover {
    color: #205fa0;
    border-color: #205fa0;
    background: rgba(32, 95, 160, 0.02);
}

.filter-item .fa {
    margin-left: 6px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.filter-item:hover .fa {
    transform: rotate(180deg);
}

/* 下拉菜单样式 */
.filter-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    margin-top: 5px;
    padding: 8px 0;
}

.filter-item:hover .filter-dropdown-content {
    display: block;
    animation: dropdownFadeIn 0.2s ease;
}

.dropdown-item {
    padding: 8px 15px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-item:hover {
    background: rgba(32, 95, 160, 0.05);
    color: #205fa0;
}

.dropdown-item.active {
    color: #205fa0;
    background: rgba(32, 95, 160, 0.08);
}

.dropdown-item.active::after {
    content: '\f00c';
    font-family: 'FontAwesome';
    font-size: 12px;
    color: #205fa0;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .advanced-filter {
        padding: 10px 15px;
        gap: 10px;
    }
    
    .filter-item {
        height: 30px;
        padding: 0 12px;
        font-size: 12px;
    }
    
    .filter-dropdown-content {
        left: 0;
        right: 0;
        min-width: auto;
    }
    .service-features {
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .feature-item {
        width: calc(50% - 10px);
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .feature-item i {
        font-size: 18px;
    }
}

.media-banner {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/static/img/media-banner-bg.jpg') center/cover no-repeat fixed;
    overflow: visible;
    padding-bottom: 60px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(32, 95, 160, 0.95) 0%,
        rgba(9, 57, 104, 0.9) 80%,
        rgba(9, 57, 104, 0.85) 100%
    );
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
    color: #fff;
}

.banner-title {
    font-size: 42px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.banner-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin: 0 0 40px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.banner-search-box {
    max-width: 800px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.banner-search-box:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.search-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    padding: 4px;
    transition: all 0.3s ease;
}

.search-input-wrap:focus-within {
    background: #fff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.search-input {
    flex: 1;
    height: 46px;
    border: none;
    background: none;
    padding: 0 20px;
    font-size: 16px;
    color: #333;
    outline: none;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    height: 46px;
    padding: 0 30px;
    border: none;
    background: linear-gradient(135deg, #205fa0, #093968);
    color: #fff;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.search-btn:hover {
    background: linear-gradient(135deg, #2670bd, #0a447d);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.batch-search-btn {
    height: 46px;
    padding: 0 25px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.batch-search-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.banner-tags {
    margin-bottom: 40px;
}

.tag-label {
    color: rgba(255,255,255,0.8);
    margin-right: 10px;
}

.banner-tag {
    display: inline-block;
    padding: 6px 15px;
    margin: 0 8px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.banner-tag:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.banner-features {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 50px;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.95);
    font-size: 15px;
}

.feature-item i {
    color: #4299e1;
    font-size: 22px;
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .media-banner {
        height: 400px;
    }
    .banner-content {
        padding: 40px 20px;
    }
    .banner-title {
        font-size: 28px;
    }
    .banner-subtitle {
        font-size: 16px;
    }
    .banner-features {
        flex-wrap: wrap;
        gap: 20px;
        padding: 0 20px;
    }
    .feature-item {
        font-size: 14px;
    }
    .banner-search-box {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    .search-input-wrap {
        width: 100%;
    }
    .search-input {
        height: 40px;
        font-size: 14px;
    }
    .search-btn {
        height: 40px;
        padding: 0 20px;
        font-size: 14px;
    }
    .batch-search-btn {
        width: 100%;
        height: 40px;
        justify-content: center;
        font-size: 14px;
    }
}

/* 查看案例按钮区域 */
.view-cases {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.95));
    border-radius: 12px;
    margin: 20px 0 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.view-cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52,152,219,0.1), rgba(52,152,219,0.05));
    z-index: 1;
}

.view-cases-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(52,152,219,0.3);
}

.view-cases-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52,152,219,0.4);
}

.view-cases-btn i {
    margin-left: 8px;
    font-size: 14px;
}

/* 分页样式 */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    padding: 30px 0;
    margin-top: 20px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-total {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 20px;
    margin-left: 15px;
    font-size: 14px;
    color: #666;
    background: #f8f9fa;
    border: 1px solid #e4e9f0;
    border-radius: 8px;
    white-space: nowrap;
}

.page-total i {
    margin: 0 8px;
    color: #3498db;
    font-size: 15px;
}

.page-total i:first-child {
    margin-left: 0;
}

.page-total em {
    color: #3498db;
    font-weight: bold;
    font-style: normal;
    margin: 0 3px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
        padding: 12px;
        gap: 6px;
    }

    .page-total {
        margin: 10px 0 0 0;
        width: 100%;
        justify-content: center;
        height: 36px;
        font-size: 13px;
    }
}

.btn-case {
    padding: 4px 12px;
    color: #3498db;
    font-size: 13px;
    border: 1px solid #3498db;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-left: auto;
}

.btn-case:hover {
    color: #fff;
    background: #3498db;
}

.btn-case i {
    margin-left: 4px;
    font-size: 12px;
}

.page-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    margin: 0 2px;
    background: #fff;
    border: 1px solid #e4e9f0;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.page-item:hover {
    color: #fff;
    border-color: #3498db;
    background: linear-gradient(135deg, #3498db, #2980b9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

.page-item.active {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
    border: none;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

.page-item:hover::before,
.page-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.1), rgba(255,255,255,0.2));
    transform: skewX(-15deg) translateX(-100%);
    transition: transform 0.5s ease;
}

.page-item:hover::before {
    transform: skewX(-15deg) translateX(100%);
}

.page-item.prev,
.page-item.next {
    background: #f8f9fa;
}

.page-item.prev:hover,
.page-item.next:hover {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.page-item.prev i,
.page-item.next i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.page-item.prev:hover i {
    transform: translateX(-3px);
}

.page-item.next:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .page-item {
        min-width: 36px;
        height: 36px;
        padding: 0 12px;
        font-size: 13px;
    }
} 