* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", Arial, sans-serif;
        }
        
        body {
            background-color: #f2f2f2;
            color: #333;
        }
        
        .header {
            background-color: #3385ff;
            height: 60px;
            padding: 0 10%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: white;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
        }
        
        .search-box {
            width: 50%;
            display: flex;
        }
        
        .search-box input {
            width: 80%;
            padding: 8px;
            border: none;
            border-radius: 4px 0 0 4px;
        }
        
        .search-box button {
            width: 20%;
            padding: 8px;
            background-color: #ff9900;
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }
        
        .user-info {
            display: flex;
            align-items: center;
        }
        
        .user-info a {
            color: white;
            margin-left: 15px;
            text-decoration: none;
        }
        
        .nav {
            background-color: #f8f8f8;
            height: 40px;
            padding: 0 10%;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #e7e7e7;
        }
        
        .nav a {
            margin-right: 20px;
            color: #555;
            text-decoration: none;
        }
        
        .nav a:hover {
            color: #3385ff;
        }
        
        .container {
            padding: 20px 10%;
            display: flex;
        }
        
        .main-content {
            width: 70%;
            background-color: white;
            border-radius: 4px;
            padding: 15px;
            margin-right: 20px;
        }
        
        .sidebar {
            width: 30%;
        }
        
        .post-list {
            list-style: none;
        }
        
        .post-item {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        
        .post-title {
            font-size: 18px;
            margin-bottom: 8px;
            color: #333;
            text-decoration: none;
            display: block;
        }
        
        .post-title:hover {
            color: #3385ff;
        }
        
        .post-info {
            font-size: 12px;
            color: #999;
        }
        
        .post-info span {
            margin-right: 10px;
        }
        
        .widget {
            background-color: white;
            border-radius: 4px;
            padding: 15px;
            margin-bottom: 20px;
        }
        
        .widget-title {
            font-size: 16px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            margin-bottom: 15px;
            color: #333;
        }
        
        .hot-topic {
            list-style: none;
        }
        
        .hot-topic li {
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
        }
        
        .hot-topic a {
            color: #555;
            text-decoration: none;
        }
        
        .hot-topic a:hover {
            color: #3385ff;
        }
        
        .footer {
            background-color: #f8f8f8;
            padding: 20px 10%;
            text-align: center;
            color: #999;
            font-size: 12px;
            border-top: 1px solid #e7e7e7;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .pagination a {
            padding: 5px 10px;
            margin: 0 5px;
            border: 1px solid #ddd;
            color: #555;
            text-decoration: none;
        }
        
        .pagination a.active {
            background-color: #3385ff;
            color: white;
            border-color: #3385ff;
        }