 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", Arial, sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 1200px;
            margin: 0 auto;
        }
        
        /* 头部样式 */
        .header {
            background-color: #fff;
            border-bottom: 2px solid #c00;
            padding: 10px 0;
        }
        
        .logo {
            float: left;
        }
        
        .logo img {
            height: 60px;
        }
        
        .nav {
            float: right;
            margin-top: 20px;
        }
        
        .nav ul {
            list-style: none;
        }
        
        .nav li {
            float: left;
            margin-left: 20px;
        }
        
        .nav a {
            color: #333;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
        }
        
        .nav a:hover {
            color: #c00;
        }
        
        /* 主要内容区 */
        .main {
            margin-top: 20px;
            overflow: hidden;
        }
        
        /* 焦点新闻 */
        .focus-news {
            width: 740px;
            float: left;
        }
        
        .focus-title {
            border-bottom: 2px solid #c00;
            padding-bottom: 5px;
            margin-bottom: 15px;
        }
        
        .focus-title h2 {
            display: inline-block;
            color: #c00;
            font-size: 20px;
        }
        
        .focus-content {
            overflow: hidden;
        }
        
        .focus-left {
            width: 360px;
            float: left;
        }
        
        .focus-right {
            width: 360px;
            float: right;
        }
        
        .focus-item {
            margin-bottom: 15px;
        }
        
        .focus-item img {
            width: 100%;
            height: auto;
            margin-bottom: 10px;
        }
        
        .focus-item h3 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .focus-item h3 a {
            color: #333;
            text-decoration: none;
        }
        
        .focus-item h3 a:hover {
            color: #c00;
            text-decoration: underline;
        }
        
        .focus-item p {
            font-size: 14px;
            color: #666;
        }
        
        /* 侧边栏 */
        .sidebar {
            width: 440px;
            float: right;
        }
        
        .sidebar-block {
            background-color: #fff;
            margin-bottom: 20px;
            padding: 15px;
            border: 1px solid #e5e5e5;
        }
        
        .sidebar-title {
            border-bottom: 1px solid #e5e5e5;
            padding-bottom: 10px;
            margin-bottom: 15px;
            color: #c00;
            font-size: 18px;
        }
        
        .news-list li {
            list-style: none;
            padding: 8px 0;
            border-bottom: 1px dashed #e5e5e5;
        }
        
        .news-list li:last-child {
            border-bottom: none;
        }
        
        .news-list a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
        }
        
        .news-list a:hover {
            color: #c00;
            text-decoration: underline;
        }
        
        /* 页脚 */
        .footer {
            background-color: #333;
            color: #fff;
            padding: 30px 0;
            text-align: center;
            margin-top: 30px;
            clear: both;
        }
        
        .footer p {
            margin-bottom: 10px;
            font-size: 14px;
        }
        
        .footer a {
            color: #fff;
            text-decoration: none;
        }
        
        .footer a:hover {
            text-decoration: underline;
        }