 *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }

        body {
            background-color: #191919;
            color: #fff;
        }

        /* 整体布局 */
        .container {
            display: flex;
            height: 100vh;
        }

        /* 侧边导航栏 */
        .sidebar {
            width: 200px;
            background-color: #2b2b2b;
            padding: 20px 0;
            border-right: 1px solid #3a3a3a;
        }

        .nav-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            cursor: pointer;
            transition: background 0.2s;
            font-size: 14px;
        }

        .nav-item:hover {
            background-color: #3a3a3a;
        }

        .nav-item.active {
            background-color: #3a3a3a;
            border-radius: 8px;
            margin: 0 10px;
        }

        .nav-icon {
            width: 20px;
            height: 20px;
            opacity: 0.8;
        }

        /* 主内容区 */
        .main-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }

        /* 顶部栏 */
        .top-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 30px;
            background-color: #2b2b2b;
            border-bottom: 1px solid #3a3a3a;
        }

        .search-box {
            flex: 1;
            max-width: 600px;
            position: relative;
        }

        .search-box input {
            width: 100%;
            padding: 8px 40px 8px 15px;
            background-color: #3a3a3a;
            border: none;
            border-radius: 20px;
            color: #fff;
            font-size: 14px;
            outline: none;
        }

        .search-box input::placeholder {
            color: #999;
        }

        .search-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            opacity: 0.7;
        }

        .top-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .vip-btn {
            background: linear-gradient(135deg, #ff7d00, #ff4d4f);
            color: #fff;
            border: none;
            padding: 8px 20px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
        }

        .top-icon {
            width: 20px;
            height: 20px;
            opacity: 0.8;
            cursor: pointer;
        }

        .user-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: #666;
            cursor: pointer;
        }

        /* 筛选标签区 */
        .filter-section {
            padding: 20px 30px;
        }

        .tab-nav {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
            font-size: 15px;
        }

        .tab-item {
            cursor: pointer;
            padding: 5px 0;
            color: #999;
        }

        .tab-item.active {
            color: #fff;
            border-bottom: 2px solid #409eff;
        }

        .filter-group {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 20px;
        }

        .filter-row {
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
        }

        .filter-label {
            width: 60px;
            font-size: 14px;
            color: #999;
            min-width: 60px;
            position: absolute;
            top: 0px;
            line-height: 33.5px;
        }

        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-left: 60px;
        }

        .filter-tag {
            padding: 6px 12px;
            font-size: 13px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .filter-tag:hover {
            background-color: #4a4a4a;
        }

        .filter-tags .active {
            color: #fff;
            border-radius: 8px;
            opacity: 1;
            display: flex;
            flex-direction: column;
            background: rgba(59, 59, 59, 0.9);
            border: 0.4px solid #4C4C4C;
        }

        .more-tag {
            color: #999;
            cursor: pointer;
        }

        /* 内容列表区 */
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(8.8vw, 1fr));
            gap: 20px;
            padding: 0 30px 30px;
        }
        
        .drama-card {
            cursor: pointer;
            transition: transform 0.2s;
        }

        .drama-card:hover {
            transform: translateY(-5px);
        }

        .drama-cover {
            width: 100%;
            aspect-ratio: 3/4;
            background-color: #3a3a3a;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            margin-bottom: 8px;
        }

        .new-badge {
            position: absolute;
            top: 8px;
            right: 8px;
            background-color: #ff4d4f;
            color: #fff;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 4px;
        }

        .episode-badge {
            position: absolute;
            bottom: 8px;
            right: 8px;
            background-color: rgba(0,0,0,0.7);
            color: #fff;
            font-size: 12px;
            padding: 2px 6px;
            border-radius: 4px;
        }

        .drama-title {
            font-size: 13px;
            color: #fff;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 4px;
        }

        .drama-desc {
            font-size: 12px;
            color: #999;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .tab-item:hover{
            color:#fff;
        }
        
        .pages {
    color:#999;
    padding:20px 0px 5px 0px;
    font-size:13px;
    *float:right;
}


.pages{
	text-align: center;
}
.pages a,.pages span{
	color: rgb(0, 0, 0);
    line-height: 30px;
    padding: 5px 14px;
	font-size: 14px;
	width: 52px;
	height: 32px;
	background: #7b7b7b;
	border-radius: 8px;
	margin-left: 5px;
}

.pages a:first-child{
	border-radius: 5px  0 0 5px;
}
.pages a:last-child{
	border-radius: 0 5px 5px 0;
}
.pages .current{
	/*border-top: 3px solid rgb(0, 146, 212);*/
    height: 28px;
    line-height: 26px;
	background: linear-gradient(to bottom, #9FBCFF 0%,#3571FD 100%);
	
	

}