        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        a {
            color: inherit; /* 继承父元素的颜色，或者指定其他颜色 */
            text-decoration: none; /* 去掉下划线 */
            }
            a:hover{
                cursor:hand;
            }
        body {
            background-color: #f5f5f5;
            font-size: 16px;
        }

        .topheader {
            background-image: url('/templates/images/banner.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
            padding: 0.625rem 1.25rem;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: background-color 0.3s;
            background-color: white;
        }

        .header:hover {
            background-color: #fff;
            background-image: none;
        }

        .header.hidden {
            display: none;
        }

        .footer {
            background: #333;
            color: #fff;
            padding: 6.25rem 0;
            height: 100%;
            text-align: center;
            position: relative;
            z-index: 999;
        }

        .footer-content {
            display: flex;
            justify-content: space-around;
            padding: 1.25rem 0;
            border-bottom: 1px solid #444;
        }

        .footer-section {
            flex: 1;
            margin: 0 1.25rem;
        }

        .footer-section h3 {
            margin-bottom: 0.625rem;
            font-size: 1.125rem;
        }

        .footer-section p {
            margin: 0.3125rem 0;
            font-size: 0.875rem;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin: 0.3125rem 0;
            font-size: 0.875rem;
        }

        .footer-section ul li a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section ul li a:hover {
            color: #007bff;
        }

        .footer-bottom {
            padding: 0.625rem 0;
            font-size: 2rem;
        }

        .banner {
            width: 100%;
            height: 28.125rem;
            background-image: url('/templates/images/banner.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            list-style: none;
            padding: 0.625rem;
            border-radius: 0.3125rem;
        }

        .breadcrumb a {
            text-decoration: none;
            color: #007bff;
            margin: 0 0.3125rem;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        .breadcrumb span {
            margin: 0 0.3125rem;
            color: #6c757d;
        }

        .leftnavmenu {
            width: 20rem;
            box-shadow: 0px 0px 0.25rem 0px rgba(51, 51, 51, 0.15);
            background-color: #fff;
        }

        .leftnavmenu ul li {
            list-style-type: none;
            font-size: 2rem;
            text-align: center;
            position: relative; /* 添加相对定位 */
        }

        .leftnavmenu ul li a {
            display: block;
            line-height: 1;
            line-height: 1.05;
        }

        .leftnavmenu ul li a::after {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 0.3125rem;
            height: 3.4375rem;
            margin-top: -1.7188rem;
            background-color: #ff8080;
            opacity: 0; /* 初始透明度为0 */
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0s;
            -webkit-transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0s;
        }

        .leftnavmenu ul li:hover a::after {
            opacity: 1; /* 鼠标悬停时透明度为1 */
        }

        .leftnavmenu ul li:hover a {
            color: #ff8080;
        }

        .leftnavmenu li a span {
            display: block;
            padding: 2rem 0;
            line-height: 1;
            line-height: 1.05;
            border-bottom: 1px solid #e7e8e9;
        }
        .leftnavmenu ul li.selected a {            
            color: #ff8080;
        }
        .leftnavmenu ul li.selected a::after {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 0.3125rem;
            height: 3.4375rem;
            margin-top: -1.7188rem;
            background-color: #ff8080;
            opacity: 1; /* 选中时透明度为1 */
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0s;
            -webkit-transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0s;
        }
        .rightcontent {           
            box-shadow: 0px 0px 0.25rem 0px rgba(51, 51, 51, 0.15);
            background-color: #fff;            
            margin-bottom: .30rem;
            width:100%;
            
        }
        .newslist>ul>li{
            list-style: none;
            line-height: 3rem;
            padding:.1rem;
            font-size:1.5rem;
            color: #808080;
        }
        .newslist>ul>li:hover{
            /* background-color: #fafafa; */
            color:#ff8080;
        }
        .newslist>ul>li>span{
            display: block;
            float: right;
        }
        .page {
            width: 98%;
            margin: .1rem auto;
        }
        .page .page_list {
            height: 1rem;
            float: right;
            margin-right: .01rem;
        }
        .page .page_info {
            float: right;
            text-align: center;
            border: #cccccc 1px solid;
            padding:.5rem;
        }
        .page a {
            color: #333;
            text-align: center;
            text-decoration: none;
            padding:.5rem;
            margin-left: .1rem;
            border: #CCC solid 1px;
            display: block;
            float: left;
        }
        .page a:hover{
            color:#ff8080;
        }
        .imgblock{
            display: flex;flex-direction: row;flex-wrap: wrap;justify-content:center;padding:.5rem;width:100%;gap:1rem;margin-top: 2rem;
        }
        .imgblock div img{
            width:12rem;
            height:12rem;
            border:1px solid #eaeaea;
            box-shadow: 5px 5px 5px #333;
        } 
        .imgblock > div > div:nth-child(2) {
            text-align:center;
        }
        .imgblock div span{
            font-size:1rem;
            white-space: nowrap; /* 防止文本换行 */
            overflow: hidden; /* 隐藏溢出的文本 */
            text-overflow: ellipsis; /* 显示省略号 */
            display: block; /* 确保宽度生效 */
            width: 12rem; /* 指定宽度，可以根据需要调整 */
        }
        .dangtextblock{
            line-height: 2rem;
            margin-left: 1rem;
        }
        .dangtextblock>p{
            font-size:1rem;
        }
        .rightcontent {           
            box-shadow: 0px 0px 0.25rem 0px rgba(51, 51, 51, 0.15);
            background-color: #fff;
            margin-bottom: .30rem;
            width:100%;
            
        }
        .rightcontent .title
        {
            font-size:2rem;   
            text-align: center;
            color:#333;
            padding:1rem;
            border-bottom: 1px solid #eaeaea;
            width:98%;
        }
        .rightcontent .content
        {
           
            padding:1rem;
            color:#333;
        }
        .rightcontent .content .p
        {
           
            padding:1rem;
            color:#333;
        }
        .rightcontent .content .div
        {
           background-color: #007bff;
            line-height:1rem;
            color:#333;
        }
        .article-footer{
            display: flex;
            flex-direction: column;
            color:#333;
            padding:1rem;
        }
        .article-footer>div{
            line-height: 1.5rem;
        }
/* 限制图片最大宽度，防止撑破容器 */
      .newText img,
#attimg img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
