        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            list-style: none;
            text-decoration: none;
        }
        body {
            font-family: "Microsoft YaHei", Arial, sans-serif;
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        /* 头部导航 */
        .header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 999;
        }
        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #e63946;
        }
        .menu {
            display: flex;
            gap: 30px;
        }
        .menu li a {
            color: #333;
            font-size: 16px;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .menu li a.active,
        .menu li a:hover {
            background-color: #e63946;
            color: #fff;
        }
        /* Banner */
        .banner {
            width: 100%;
            height: 320px;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("/template/pc/img/banner.png") center/cover no-repeat;
            border-radius: 8px;
            margin: 20px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-align: center;
        }
        .banner-text h1 {
            font-size: 32px;
            margin-bottom: 10px;
        }
        .banner-text p {
            font-size: 18px;
            opacity: 0.9;
        }
        /* 通用模块标题 */
        .section-title {
            text-align: center;
            margin: 50px 0 30px;
        }
        .section-title h2 {
            font-size: 26px;
            color: #222;
            margin-bottom: 8px;
        }
        .section-title p {
            color: #666;
            font-size: 15px;
        }
        /* 热门项目 */
        .project-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            gap: 20px;
        }
        .project-item {
            background-color: #fff;
            padding: 20px 10px;
            text-align: center;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }
        .project-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.12);
        }
        .project-item i {
            font-size: 30px;
            color: #e63946;
            margin-bottom: 10px;
        }
        .project-item p {
            font-size: 15px;
            color: #333;
        }
        /* 资讯列表 - 按你给的样式设计 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 25px;
        }
        .news-card {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            display: flex;
            gap: 15px;
            padding: 15px;
            transition: all 0.3s;
        }
        .news-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.12);
        }
        .news-img {
            width: 180px;
            height: 130px;
            object-fit: cover;
            border-radius: 6px;
            flex-shrink: 0;
        }
        .news-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .news-title {
            font-size: 18px;
            color: #222;
            font-weight: bold;
            line-height: 1.4;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-desc {
            font-size: 15px;
            color: #555;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 10px;
        }
        .news-meta {
            font-size: 13px;
            color: #999;
            display: flex;
            justify-content: space-between;
        }
        /* 案例展示 */
        .case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }
        .case-item {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .case-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .case-txt {
            padding: 15px;
        }
        .case-txt h4 {
            font-size: 16px;
            margin-bottom: 5px;
            color: #222;
        }
        .case-txt p {
            font-size: 14px;
            color: #666;
        }
        /* 底部 */
        .footer {
            background-color: #222;
            color: #ccc;
            padding: 40px 0;
            margin-top: 60px;
        }
        .footer-content {
            text-align: center;
        }
        .footer-content p {
            margin: 8px 0;
            font-size: 14px;
        }
        /* 移动端适配 */
        @media (max-width: 1024px) {
            .news-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav {
                flex-direction: column;
                height: auto;
                padding: 15px 0;
            }
            .menu {
                margin-top: 15px;
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
            .banner {
                height: 220px;
            }
            .banner-text h1 {
                font-size: 24px;
            }
            .news-card {
                flex-direction: column;
            }
            .news-img {
                width: 100%;
                height: 180px;
            }
        }
		
		/* 列表页 */
		
		/* 面包屑导航（SEO必备） */
		.breadcrumb {
		    padding: 15px 0;
		    font-size: 14px;
		    color: #666;
		}
		.breadcrumb a {
		    color: #666;
		}
		.breadcrumb a:hover {
		    color: #e63946;
		}
		
		/* 列表页头部 */
		.list-header {
		    background: #fff;
		    padding: 25px;
		    border-radius: 8px;
		    margin-bottom: 20px;
		    text-align: center;
		}
		.list-header h1 {
		    font-size: 26px;
		    color: #222;
		    margin-bottom: 10px;
		}
		.list-header p {
		    color: #666;
		    font-size: 15px;
		}
		
		/* 主体布局 */
		.list-wrapper {
		    display: flex;
		    gap: 25px;
		    margin-bottom: 40px;
		}
		.list-main {
		    flex: 1;
		}
		.list-sidebar {
		    width: 300px;
		}
		
		/* 资讯列表样式 */
		.news-list {
		    display: flex;
		    flex-direction: column;
		    gap: 20px;
		}
		.news-item {
		    background: #fff;
		    border-radius: 8px;
		    overflow: hidden;
		    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
		    display: flex;
		    gap: 15px;
		    padding: 15px;
		    transition: 0.3s;
		}
		.news-item:hover {
		    transform: translateY(-3px);
		    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
		}
		.news-item img {
		    width: 180px;
		    height: 130px;
		    object-fit: cover;
		    border-radius: 6px;
		    flex-shrink: 0;
		}
		.news-info {
		    flex: 1;
		    display: flex;
		    flex-direction: column;
		    justify-content: center;
		}
		.news-title {
		    font-size: 18px;
		    font-weight: bold;
		    color: #222;
		    margin-bottom: 8px;
		    display: -webkit-box;
		    -webkit-line-clamp: 1;
		    -webkit-box-orient: vertical;
		    overflow: hidden;
		}
		.news-desc {
		    font-size: 15px;
		    color: #555;
		    line-height: 1.6;
		    margin-bottom: 12px;
		    display: -webkit-box;
		    -webkit-line-clamp: 2;
		    -webkit-box-orient: vertical;
		    overflow: hidden;
		}
		.news-meta {
		    font-size: 13px;
		    color: #999;
		    display: flex;
		    gap: 20px;
		}
		.news-meta span i {
		    margin-right: 5px;
		    color: #e63946;
		}
		
		/* 侧边栏 */
		.sidebar-box {
		    background: #fff;
		    border-radius: 8px;
		    padding: 20px;
		    margin-bottom: 20px;
		}
		.sidebar-title {
		    font-size: 18px;
		    color: #222;
		    padding-bottom: 10px;
		    border-bottom: 2px solid #e63946;
		    margin-bottom: 15px;
		    position: relative;
		}
		.sidebar-title::after {
		    content: '';
		    width: 60px;
		    height: 2px;
		    background: #e63946;
		    position: absolute;
		    bottom: -2px;
		    left: 0;
		}
		.hot-list li {
		    padding: 8px 0;
		    border-bottom: 1px dashed #eee;
		}
		.hot-list li a {
		    color: #333;
		    font-size: 15px;
		    display: -webkit-box;
		    -webkit-line-clamp: 1;
		    -webkit-box-orient: vertical;
		    overflow: hidden;
		}
		.hot-list li a:hover {
		    color: #e63946;
		}
		
		/* 分页 */
		.pagination {
		    display: flex;
		    justify-content: center;
		    gap: 10px;
		    margin-top: 40px;
		}
		.pagination a {
		    padding: 8px 14px;
		    background: #fff;
		    border: 1px solid #eee;
		    border-radius: 4px;
		    color: #333;
		    transition: 0.3s;
		}
		.pagination a.active,
		.pagination a:hover {
		    background: #e63946;
		    color: #fff;
		    border-color: #e63946;
		}
		
		/* 底部 */
		.footer {
		    background-color: #222;
		    color: #ccc;
		    padding: 40px 0;
		    margin-top: 60px;
		}
		.footer-content {
		    text-align: center;
		}
		.footer-content p {
		    margin: 8px 0;
		    font-size: 14px;
		}
		
		/* 移动端自适应 */
		@media (max-width: 992px) {
		    .list-wrapper {
		        flex-direction: column;
		    }
		    .list-sidebar {
		        width: 100%;
		    }
		}
		@media (max-width: 768px) {
		    .nav {
		        flex-direction: column;
		        height: auto;
		        padding: 15px 0;
		    }
		    .menu {
		        margin-top: 15px;
		        flex-wrap: wrap;
		        justify-content: center;
		        gap: 15px;
		    }
		    .news-item {
		        flex-direction: column;
		    }
		    .news-item img {
		        width: 100%;
		        height: 180px;
		    }
		    .list-header h1 {
		        font-size: 22px;
		    }
		}
		
		/* 内容页 */
		/* 面包屑 */
		.breadcrumb {
		    padding: 15px 0;
		    font-size: 14px;
		    color: #666;
		}
		.breadcrumb a {
		    color: #666;
		}
		.breadcrumb a:hover {
		    color: #e63946;
		}
		
		/* 内容头部 */
		.article-header {
		    background: #fff;
		    padding: 30px;
		    border-radius: 8px;
		    margin-bottom: 20px;
		    text-align: center;
		}
		.article-header h1 {
		    font-size: 28px;
		    color: #222;
		    margin-bottom: 15px;
		    line-height: 1.4;
		}
		.article-meta {
		    font-size: 14px;
		    color: #999;
		    display: flex;
		    justify-content: center;
		    gap: 20px;
		}
		.article-meta span i {
		    margin-right: 5px;
		    color: #e63946;
		}
		
		/* 主体布局 */
		.article-wrapper {
		    display: flex;
		    gap: 25px;
		}
		.article-main {
		    flex: 1;
		}
		.article-sidebar {
		    width: 300px;
		}
		
		/* 内容区 */
		.article-content {
		    background: #fff;
		    padding: 40px;
		    border-radius: 8px;
		    font-size: 16px;
		    color: #333;
		    line-height: 1.9;
		}
		.article-content p {
		    margin-bottom: 20px;
		    text-indent: 2em;
		}
		.article-content h2 {
		    font-size: 22px;
		    color: #222;
		    margin: 30px 0 15px;
		    padding-left: 10px;
		    border-left: 4px solid #e63946;
		}
		.article-content img {
		    max-width: 100%;
		    height: auto;
		    border-radius: 8px;
		    margin: 20px auto;
		    display: block;
		}
		
		/* 侧边栏 */
		.sidebar-box {
		    background: #fff;
		    border-radius: 8px;
		    padding: 20px;
		    margin-bottom: 20px;
		}
		.sidebar-title {
		    font-size: 18px;
		    color: #222;
		    padding-bottom: 10px;
		    border-bottom: 2px solid #e63946;
		    margin-bottom: 15px;
		}
		.hot-list li {
		    padding: 8px 0;
		    border-bottom: 1px dashed #eee;
		}
		.hot-list li a {
		    color: #333;
		    font-size: 15px;
		    display: -webkit-box;
		    -webkit-line-clamp: 1;
		    -webkit-box-orient: vertical;
		    overflow: hidden;
		}
		.hot-list li a:hover {
		    color: #e63946;
		}
		
		/* 相关推荐 */
		.related {
		    background: #fff;
		    padding: 25px;
		    border-radius: 8px;
		    margin-top: 20px;
		}
		.related h3 {
		    font-size: 20px;
		    margin-bottom: 15px;
		    color: #222;
		}
		.related-list {
		    display: flex;
		    flex-wrap: wrap;
		    gap: 15px;
		}
		.related-list a {
		    width: 48%;
		    color: #333;
		    font-size: 15px;
		}
		.related-list a:hover {
		    color: #e63946;
		}
		
		/* 底部 */
		.footer {
		    background-color: #222;
		    color: #ccc;
		    padding: 40px 0;
		    margin-top: 60px;
		}
		.footer-content {
		    text-align: center;
		}
		.footer-content p {
		    margin: 8px 0;
		    font-size: 14px;
		}
		
		/* 移动端适配 */
		@media (max-width: 992px) {
		    .article-wrapper {
		        flex-direction: column;
		    }
		    .article-sidebar {
		        width: 100%;
		    }
		}
		@media (max-width: 768px) {
		    .nav {
		        flex-direction: column;
		        height: auto;
		        padding: 15px 0;
		    }
		    .menu {
		        margin-top: 15px;
		        flex-wrap: wrap;
		        justify-content: center;
		        gap: 15px;
		    }
		    .article-header h1 {
		        font-size: 22px;
		    }
		    .article-content {
		        padding: 20px;
		    }
		    .related-list a {
		        width: 100%;
		    }
		}