            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
            
            body {
                font-family: "Microsoft YaHei", Arial, sans-serif;
                color: #333;
                line-height: 1.6;
            }
            
            .w {
                width: 1200px;
                margin: 0 auto;
            }
            
            .clearfix::after {
                content: "";
                display: table;
                clear: both;
            }
            
            /* 浮动样式 */
            .fl {
                float: left;
            }
            
            .fr {
                float: right;
            }
            
            /* 头部样式 */
            .header-bg {
                background-color: #921616;
                background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                                  linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
                background-size: 20px 20px;
                padding: 10px 0;
                border-bottom: none;
            }
            
            .header {
                display: flex;
                justify-content: flex-end;
                align-items: center;
            }
            
            .header-lj a {
                color: #ededed;
                text-decoration: none;
                margin-left: 20px;
                font-size: 14px;
            }
            
            .header-lj a:hover {
                color: #fff;
            }
            
            /* Logo样式 */
            .logo-bg {
                background-color: #fff;
                padding: 20px 0;
            }
            
            .logo {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            
            .logo img {
                max-height: 80px;
            }
            
            .search-box {
                display: flex;
                align-items: center;
            }
            
            .search-box input {
                width: 200px;
                padding: 8px 12px;
                border: 1px solid #ccc;
                border-radius: 4px 0 0 4px;
                font-size: 14px;
            }
            
            .search-box button {
                padding: 8px 15px;
                border: 1px solid #921616;
                background-color: #921616;
                color: #fff;
                border-radius: 0 4px 4px 0;
                cursor: pointer;
                font-size: 14px;
            }
            
            .search-box button:hover {
                background-color: #7a1212;
                border-color: #7a1212;
            }
            
            /* 导航栏样式 */
            .nav-bg {
                background-color: #efefef;
            }
            
            .nav {
                list-style: none;
                display: flex;
                justify-content: space-around;
            }
            
            .nav .nLi {
                position: relative;
            }
            
            .nav .nLi h3 a {
                display: block;
                color: #024456;
                text-decoration: none;
                padding: 15px 30px;
                font-size: 16px;
                font-weight: normal;
                white-space: nowrap;
                min-width: 100px;
            }
            
            .nav .nLi:hover h3 a {
                background-color: #921616;
                color: #fff;
            }
            
            .nav .sub {
                position: absolute;
                top: 100%;
                left: 0;
                background-color: rgb(244 244 244 / 85%);
                border-top: 4px solid #921616;
                border-radius: 6px;
                display: none;
                z-index: 1000;
                min-width: 180px;
                list-style: none;
                padding: 0;
                margin: 0;
            }
            
            .nav .nLi:hover .sub {
                display: block;
            }
            
            .nav .sub li a {
                display: block;
                color: #333;
                text-decoration: none;
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .nav .sub li a:hover {
                background-color: #921616;
                color: #fff;
            }
            
            /* 轮播图样式 */
            .ibanner {
                position: relative;
                height: 400px;
                overflow: hidden;
            }
            
            .ibanner .bd {
                position: relative;
                height: 100%;
            }
            
            .ibanner .bd li {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }
            
            .ibanner .bd li img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            
            .ibanner .hd {
                position: absolute;
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
                z-index: 10;
            }
            
            .ibanner .hd ul {
                display: flex;
            }
            
            .ibanner .hd ul li {
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background-color: rgba(255,255,255,0.5);
                margin: 0 5px;
                cursor: pointer;
            }
            
            .ibanner .hd ul li.on {
                background-color: #fff;
            }
            
            /* 轮播图箭头样式 */
            .ibanner .prev, .ibanner .next {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 40px;
                height: 60px;
                background-color: rgba(0,0,0,0.3);
                color: #fff;
                text-align: center;
                line-height: 60px;
                font-size: 24px;
                text-decoration: none;
                z-index: 20;
                cursor: pointer;
            }
            
            .ibanner .prev {
                left: 20px;
            }
            
            .ibanner .next {
                right: 20px;
            }
            
            .ibanner .prev:hover, .ibanner .next:hover {
                background-color: rgba(0,0,0,0.5);
            }
            
            /* 通知公告样式 */
            .tzgg-bg {
                background-color: #fafafa;
                padding: 30px 0;
            }
            
            .tzgg {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
            }
            
            .tzgg-l {
                flex: 1;
                margin-right: 30px;
            }
            
            .tzgg-pic img {
                width: 100%;
                height: auto;
            }
            
            .tzgg-tx {
                flex: 2;
            }
            
            .tzgg-tx .more {
                margin-left: auto;
            }
            
            .tzgg-tx .more a {
                color: #921616;
                text-decoration: none;
                font-size: 14px;
            }
            
            .title {
                display: flex;
                align-items: center;
                margin-bottom: 20px;
            }
            
            .title h2 {
                font-size: 24px;
                color: #333;
                margin-right: 10px;
            }
            
            .title h2 span {
                color: #921616;
            }
            
            .title em {
                width: 4px;
                height: 24px;
                background-color: #921616;
                margin-right: 10px;
            }
            
            .title hr {
                flex: 1;
                border: none;
                height: 1px;
                background-color: #e0e0e0;
            }
            
            .title .more {
                margin-left: 15px;
            }
            
            .title .more a {
                color: #921616;
                text-decoration: none;
                font-size: 14px;
                font-weight: bold;
            }
            
            .title .more a:hover {
                text-decoration: underline;
            }
            
            .tzgg-tx ul {
                list-style: none;
            }
            
            .tzgg-tx ul li {
                padding: 10px 0;
                border-bottom: 1px dashed #e0e0e0;
            }
            
            .tzgg-tx ul li:last-child {
                border-bottom: none;
            }
            
            .tzgg-tx ul li i {
                color: #999;
                font-size: 14px;
                margin-right: 10px;
            }
            
            .tzgg-tx ul li a {
                color: #333;
                text-decoration: none;
                font-size: 14px;
            }
            
            .tzgg-tx ul li a:hover {
                color: #1890FF;
            }
            
            /* 头像列表样式 */
            .avatar-list-container {
                display: flex;
                flex-wrap: wrap;
                gap: 20px;
                padding: 20px 0;
            }
            
            .avatar-item {
                width: calc(33.33% - 14px);
                text-align: center;
                margin-bottom: 30px;
            }
            
            .avatar-img {
                margin-bottom: 10px;
            }
            
            .avatar-img img {
                width: 120px;
                height: 120px;
                border-radius: 10%;
                object-fit: cover;
                border: 2px solid #f0f0f0;
            }
            
            .avatar-info h3 {
                font-size: 16px;
                color: #333;
                margin: 10px 0 5px;
            }
            
            .avatar-info p {
                font-size: 14px;
                color: #666;
            }
            
            /* 新闻动态样式 */
            .news-bg {
                padding: 30px 0;
            }
            
            .news .more {
                margin-left: auto;
            }
            
            .news .more a {
                color: #921616;
                text-decoration: none;
                font-size: 14px;
            }
            
            .news-tx {
                display: flex;
                justify-content: space-between;
            }
            
            .news-l {
                flex: 1;
                margin-right: 20px;
            }
            
            .news-pic {
                margin-bottom: 15px;
            }
            
            .news-pic img {
                width: 100%;
                height: 200px;
                object-fit: cover;
            }
            
            .news-l-kk i {
                color: #999;
                font-size: 14px;
                display: block;
                margin-bottom: 10px;
            }
            
            .news-l-kk h3 a {
                color: #333;
                text-decoration: none;
                font-size: 16px;
                font-weight: normal;
                margin-bottom: 10px;
                display: block;
            }
            
            .news-l-kk h3 a:hover {
                color: #921616;
            }
            
            .news-l-kk p {
                color: #666;
                font-size: 14px;
                line-height: 1.5;
            }


            /* 主体内容样式 */
            .main-bg {
                background-color: #fff;
                padding: 30px 0;
            }

            .main-content {
                display: flex;
                justify-content: space-between;
            }

            /* 左侧导航 */
            .left-nav {
                width: 250px;
                background-color: #fff;
                border: 1px solid #e0e0e0;
                border-radius: 8px;
            }

            .left-nav h2 {
                font-size: 18px;
                color: #333;
                padding: 15px 20px;
                border-bottom: 1px solid #e0e0e0;
                margin: 0;
            }

            .left-nav ul {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .left-nav ul li {
                border-bottom: 1px solid #f0f0f0;
            }

            .left-nav ul li:last-child {
                border-bottom: none;
            }

            .left-nav ul li a {
                display: block;
                padding: 12px 20px;
                color: #666;
                text-decoration: none;
                font-size: 14px;
            }

            .left-nav ul li a:hover {
                background-color: #f5f5f5;
                color: #921616;
            }

            .left-nav ul li.active a {
                background-color: #921616;
                color: #fff;
            }

            /* 右侧内容 */
            .right-content {
                width: 920px;
                background-color: #fff;
                border: 1px solid #e0e0e0;
                border-radius: 8px;
                padding: 20px;
            }

            .breadcrumb {
                font-size: 14px;
                color: #999;
                margin-bottom: 20px;
                padding-bottom: 10px;
                border-bottom: 1px solid #e0e0e0;
            }

            .breadcrumb a {
                color: #921616;
                text-decoration: none;
            }

            .breadcrumb a:hover {
                text-decoration: underline;
            }

            /* 新闻内容 */
            .news-article {
                padding: 20px 0;
            }

            .news-title {
                font-size: 28px;
                color: #333;
                margin-bottom: 20px;
                line-height: 1.3;
            }

            .news-meta {
                font-size: 14px;
                color: #999;
                margin-bottom: 30px;
                padding-bottom: 15px;
                border-bottom: 1px solid #e0e0e0;
            }

            .news-meta span {
                margin-right: 20px;
            }

            .news-content {
                font-size: 16px;
                line-height: 2;
                color: #333;
            }

            .news-content p {
                margin-bottom: 20px;
                text-align: justify;
            }

            .news-content img {
                max-width: 100%;
                height: auto;
                margin: 20px 0;
                display: block;
            }

            .news-content h3 {
                font-size: 20px;
                color: #333;
                margin: 30px 0 20px;
            }

            /* 相关新闻 */
            .related-news {
                margin-top: 40px;
                padding-top: 20px;
                border-top: 1px solid #e0e0e0;
            }

            .related-news h3 {
                font-size: 18px;
                color: #333;
                margin-bottom: 15px;
            }

            .related-list {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .related-list li {
                margin-bottom: 10px;
            }

            .related-list li a {
                color: #666;
                text-decoration: none;
                font-size: 14px;
                padding-left: 15px;
                position: relative;
            }

            .related-list li a:before {
                content: "•";
                color: #921616;
                position: absolute;
                left: 0;
            }

            .related-list li a:hover {
                color: #921616;
            }

            /* 返回列表按钮 */
            .back-to-list {
                margin-top: 30px;
                text-align: right;
            }

            .back-to-list a {
                display: inline-block;
                padding: 8px 15px;
                background-color: #921616;
                color: #fff;
                text-decoration: none;
                border-radius: 4px;
                font-size: 14px;
            }

            .back-to-list a:hover {
                background-color: #7a1212;
            }

/* 新闻轮播左右区域样式 */
            .news-carousel-l {
                width: 50%;
                padding-right: 10px;
                box-sizing: border-box;
            }
            
            .news-carousel-r {
                width: 50%;
                padding-left: 10px;
                box-sizing: border-box;
            }
            
            /* 日历牌样式 */
            .date-calendar {
                display: inline-flex;
                flex-direction: column;
                justify-content: center;
                width: 60px;
                height: 70px;
                background-color: transparent;
                border: 1px dashed #ccc;
                border-radius: 4px;
                text-align: center;
                margin-right: 15px;
                overflow: hidden;
                vertical-align: middle;
            }
            
            .date-year {
                order: 2;
                background-color: transparent;
                color: #999999;
                font-size: 11px;
                padding: 3px 0;
                font-weight: normal;
            }
            
            .date-month-day {
                order: 1;
                background-color: transparent;
                color: #999999;
                font-size: 32px;
                font-weight: bold;
                padding: 0;
                line-height: 1;
            }
            
            /* 信息区块三栏垂直布局样式 */
            .section-left {
                width: 33.33%;
                padding-right: 10px;
                box-sizing: border-box;
                float: left;
            }
            
            .section-middle {
                width: 33.33%;
                padding: 0 10px;
                box-sizing: border-box;
                float: left;
            }
            
            .section-right {
                width: 33.33%;
                padding-left: 10px;
                box-sizing: border-box;
                float: left;
            }
            
            /* 新闻列表样式 */
            .news-list {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .news-list li {
                padding: 18px 0;
                border-bottom: 1px dashed #e0e0e0;
                transition: background-color 0.2s ease;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                height: auto;
                box-sizing: border-box;
            }

            .news-list li:hover {
                background-color: rgba(146, 22, 22, 0.05);
            }

            .news-list li:last-child {
                border-bottom: none;
            }

            .news-list a {
                color: #333;
                text-decoration: none;
                font-size: 16px;
                line-height: 1.4;
                transition: color 0.2s ease;
                flex: 1;
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                margin-bottom: 8px;
                display: block;
            }

            .news-meta {
                font-size: 14px;
                color: #999;
                display: block;
                width: 100%;
                text-align: left;
            }

            .news-list a:hover {
                color: #921616;
            }

            /* 信息列表样式 */
            .info-list {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .info-list li {
                padding: 15px 0;
                border-bottom: 1px dashed #e0e0e0;
                transition: background-color 0.2s ease;
                display: flex;
                align-items: center;
                height: 80px;
                box-sizing: border-box;
            }

            .info-list li:hover {
                background-color: rgba(146, 22, 22, 0.05);
            }

            .info-list li:last-child {
                border-bottom: none;
            }

            .info-list i {
                color: #999;
                margin-right: 10px;
                font-style: normal;
                font-size: 14px;
            }

            .info-list a {
                color: #333;
                text-decoration: none;
                font-size: 14px;
                transition: color 0.2s ease;
                flex: 1;
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
            }

            .info-list a:hover {
                color: #921616;
            }

            /* 分页样式 */
            .pagination {
                margin-top: 30px;
                text-align: center;
            }

            .pagination a {
                display: inline-block;
                padding: 8px 12px;
                margin: 0 4px;
                color: #333;
                text-decoration: none;
                border: 1px solid #ddd;
                border-radius: 4px;
                transition: all 0.2s ease;
            }

            .pagination a:hover {
                background-color: #f5f5f5;
                border-color: #921616;
            }

            .pagination a.active {
                background-color: #921616;
                color: #fff;
                border-color: #921616;
            }

            .pagination a:first-child, .pagination a:last-child {
                padding: 8px 15px;
            }
                       /* 底部信息栏样式 */
            .footer-bg {
                background-color: #921616;
                background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                                  linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
                background-size: 20px 20px;
                color: #fff;
                padding: 30px 0;}
            
            .footer {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;}
            
            .footer-info {
                flex: 1;}
            
            .footer-info h3 {
                font-size: 20px;
                margin-bottom: 20px;}
            
            .footer-info p {
                margin-bottom: 10px;
                font-size: 14px;
                line-height: 1.5;}
            
            .footer-qrcode {
                text-align: center;}
            
            .footer-qrcode img {
                width: 120px;
                height: 120px;
                margin-bottom: 10px;}
            
            .footer-qrcode p {
                font-size: 14px;
            }

/* 头像列表样式 */
            .avatar-list-container {
                display: flex;
                flex-wrap: wrap;
                gap: 30px;
                margin-bottom: 30px;
            }

            .avatar-item {
                width: calc(33.33% - 20px);
                text-align: center;
                transition: transform 0.2s ease;
            }

            .avatar-item:hover {
                transform: translateY(-5px);
            }

            .avatar-img {
                margin-bottom: 15px;
            }

            .avatar-img img {
                width: 160px;
                height: 200px;
                border-radius: 10%;
                object-fit: cover;
                border: 4px solid #f0f0f0;
            }

            .avatar-info h3 {
                font-size: 18px;
                color: #333;
                margin-bottom: 5px;
            }

            .avatar-info p {
                font-size: 14px;
                color: #666;
            }