* {
            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;
        }
        a {
            text-decoration: none;
            color: #333;
        }
        a:hover {
            color: #ff4400;
        }
        .header {
            background-color: #ff4400;
            height: 60px;
            padding: 0 10%;
        }
        .logo {
            float: left;
            height: 60px;
            line-height: 60px;
            color: white;
            font-size: 24px;
            font-weight: bold;
        }
        .nav {
            float: right;
        }
        .nav ul {
            list-style: none;
        }
        .nav li {
            float: left;
            padding: 0 15px;
            line-height: 60px;
        }
        .nav a {
            color: white;
            font-size: 16px;
        }
        .breadcrumb {
            width: 80%;
            margin: 15px auto;
            padding: 10px 0;
            font-size: 14px;
            color: #666;
        }
        .breadcrumb a {
            color: #666;
        }
        .container {
            width: 80%;
            margin: 0 auto 30px;
            overflow: hidden;
        }
        .main-content {
            width: 68%;
            float: left;
            background-color: white;
            border-radius: 4px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            padding: 25px;
        }
        .sidebar {
            width: 30%;
            float: right;
        }
        .article-header {
            margin-bottom: 25px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }
        .article-title {
            font-size: 28px;
            font-weight: bold;
            line-height: 1.4;
            margin-bottom: 15px;
            color: #222;
        }
        .article-meta {
            color: #999;
            font-size: 14px;
            margin-bottom: 15px;
        }
        .article-meta span {
            margin-right: 15px;
        }
        .article-source {
            color: #ff4400;
        }
        .article-content {
            font-size: 16px;
            line-height: 1.8;
        }
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .article-image {
            margin: 20px 0;
            text-align: center;
        }
        .article-image img {
            max-width: 100%;
            height: auto;
        }
        .article-image .image-caption {
            color: #666;
            font-size: 14px;
            margin-top: 8px;
        }
        .article-footer {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
            color: #999;
            font-size: 14px;
        }
        .tags {
            margin-bottom: 15px;
        }
        .tags a {
            display: inline-block;
            padding: 3px 10px;
            background-color: #f0f0f0;
            color: #666;
            margin-right: 8px;
            border-radius: 3px;
            font-size: 12px;
        }
        .tags a:hover {
            background-color: #ff4400;
            color: white;
        }
        .recommend-block {
            background-color: white;
            margin-bottom: 20px;
            border-radius: 4px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            padding: 15px;
        }
        .block-title {
            font-size: 18px;
            color: #333;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        .recommend-item {
            padding: 10px 0;
            border-bottom: 1px dashed #eee;
        }
        .recommend-item:last-child {
            border-bottom: none;
        }
        .footer {
            clear: both;
            background-color: #333;
            color: #999;
            text-align: center;
            padding: 20px 0;
            margin-top: 30px;
            font-size: 14px;
        }
        .comment-area {
            margin-top: 30px;
            background-color: white;
            padding: 20px;
            border-radius: 4px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        .comment-title {
            font-size: 18px;
            margin-bottom: 15px;
        }