* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Helvetica Neue", Arial, "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
        }
        
        body {
            background-color: #f7f7f7;
            color: #494949;
            line-height: 1.6;
        }
        
        .container {
            width: 950px;
            margin: 0 auto;
            padding: 20px 0;
        }
        
        /* 头部样式 */
        .header {
            background-color: #ffffff;
            border-bottom: 1px solid #e8e8e8;
            padding: 10px 0;
        }
        
        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            color: #00b51d;
            font-weight: bold;
            text-decoration: none;
        }
        
        .main-nav {
            display: flex;
            margin-left: 30px;
        }
        
        .main-nav a {
            padding: 0 15px;
            color: #494949;
            text-decoration: none;
            font-size: 15px;
        }
        
        .main-nav a:hover {
            color: #00b51d;
        }
        
        .search-box {
            display: flex;
            width: 300px;
            margin: 0 20px;
        }
        
        .search-box input {
            flex: 1;
            padding: 8px 12px;
            border: 1px solid #ccc;
            border-right: none;
            border-radius: 3px 0 0 3px;
            outline: none;
            font-size: 13px;
        }
        
        .search-box button {
            padding: 8px 15px;
            background-color: #00b51d;
            color: white;
            border: none;
            border-radius: 0 3px 3px 0;
            cursor: pointer;
            font-size: 13px;
        }
        
        .user-nav {
            display: flex;
            align-items: center;
        }
        
        .user-nav a {
            margin-left: 15px;
            color: #494949;
            text-decoration: none;
            font-size: 13px;
        }
        
        .user-nav a:hover {
            color: #00b51d;
        }
        
        .user-avatar {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: #f0f0f0;
            overflow: hidden;
        }
        
        /* 列表页内容 */
        .list-header {
            margin: 20px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .list-title {
            font-size: 24px;
            font-weight: normal;
            color: #494949;
        }
        
        .list-sort {
            font-size: 14px;
        }
        
        .list-sort a {
            color: #999;
            text-decoration: none;
            margin-left: 15px;
        }
        
        .list-sort a.active {
            color: #00b51d;
        }
        
        .list-sort a:hover {
            color: #00b51d;
        }
        
        /* 列表项 */
        .list-item {
            background-color: #ffffff;
            border-radius: 3px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            padding: 20px;
            display: flex;
        }
        
        .item-poster {
            width: 100px;
            height: 140px;
            background-color: #f0f0f0;
            margin-right: 20px;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .item-poster img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .item-content {
            flex: 1;
        }
        
        .item-title {
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .item-title a {
            color: #494949;
            text-decoration: none;
        }
        
        .item-title a:hover {
            color: #00b51d;
        }
        
        .item-meta {
            font-size: 13px;
            color: #999;
            margin-bottom: 10px;
        }
        
        .item-rating {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .rating-stars {
            color: #ffb800;
            margin-right: 10px;
        }
        
        .rating-value {
            color: #e09015;
            font-weight: bold;
        }
        
        .rating-count {
            color: #999;
            margin-left: 5px;
        }
        
        .item-desc {
            font-size: 14px;
            line-height: 1.6;
            color: #494949;
            margin-bottom: 10px;
        }
        
        .item-tags {
            display: flex;
            flex-wrap: wrap;
        }
        
        .item-tag {
            font-size: 12px;
            color: #999;
            background-color: #f5f5f5;
            padding: 2px 8px;
            border-radius: 3px;
            margin-right: 8px;
            margin-bottom: 8px;
        }
        
        /* 分页 */
        .pagination {
            display: flex;
            justify-content: center;
            margin: 30px 0;
        }
        
        .pagination a {
            color: #494949;
            text-decoration: none;
            padding: 6px 12px;
            margin: 0 5px;
            border: 1px solid #e8e8e8;
            border-radius: 3px;
        }
        
        .pagination a:hover {
            background-color: #f5f5f5;
        }
        
        .pagination a.active {
            background-color: #00b51d;
            color: white;
            border-color: #00b51d;
        }
        
        .pagination a.disabled {
            color: #ccc;
            pointer-events: none;
        }
        
        /* 筛选侧栏 */
        .filter-sidebar {
            width: 200px;
            margin-right: 20px;
        }
        
        .filter-card {
            background-color: #ffffff;
            border-radius: 3px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }
        
        .filter-header {
            padding: 15px;
            border-bottom: 1px solid #f0f0f0;
            font-size: 16px;
            font-weight: bold;
        }
        
        .filter-body {
            padding: 15px;
        }
        
        .filter-item {
            margin-bottom: 15px;
        }
        
        .filter-title {
            font-size: 14px;
            margin-bottom: 10px;
            color: #494949;
        }
        
        .filter-options {
            font-size: 13px;
        }
        
        .filter-option {
            margin-bottom: 8px;
        }
        
        .filter-option a {
            color: #494949;
            text-decoration: none;
        }
        
        .filter-option a:hover {
            color: #00b51d;
        }
        
        .filter-option .count {
            color: #999;
            margin-left: 5px;
        }
        
        /* 主要内容区 */
        .list-main {
            display: flex;
        }
        
        .list-content {
            flex: 1;
        }
		        .footer {
            background-color: #f7f7f7;
            border-top: 1px solid #e8e8e8;
            padding: 30px 0;
            color: #999;
            font-size: 12px;
        }
        
        .footer-container {
            width: 950px;
            margin: 0 auto;
            text-align: center;
        }
        
        .footer-links {
            margin-bottom: 15px;
            line-height: 1.8;
        }
        
        .footer-links a {
            color: #999;
            text-decoration: none;
            margin: 0 10px;
            white-space: nowrap;
        }
        
        .footer-links a:hover {
            color: #00b51d;
        }
        
        .footer-apps {
            margin: 20px 0;
        }
        
        .footer-apps a {
            display: inline-block;
            margin: 0 10px;
        }
        
        .footer-apps img {
            height: 40px;
            width: auto;
        }
        
        .footer-copyright {
            margin-top: 15px;
            color: #999;
        }