 body {
            font-family: 'Inter', sans-serif;
                background: #f1f1f1;
                margin: 0px !important;
        }
        a{
            text-decoration: none;
            color: inherit;
        }

         /* 头部导航样式 */
        .navbar {
            background-color:#ffffff;
            color: #007BFF;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        .navbar img{
            width: 150px;
            margin-top: -10px;
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            max-width: 1536px;
            margin: auto;
        }

        .navbar-logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #007BFF;
        }

        .navbar-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .navbar-menu li {
            position: relative;
        }

        .navbar-menu li a {
            display: block;
            padding: 0.5rem 1rem;
            color: #007BFF;
            text-decoration: none;
            position: relative;
        }

        .navbar-menu li a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #007BFF;
            transition: width 0.3s ease;
        }

        .navbar-menu li a:hover::after {
            width: 100%;
        }

        .navbar-submenu {
            display: none;
            position: absolute;
            top: 100%;
            width: 200px;
            left: 0;
            background-color: #ffffffc9;
            list-style: none;
            padding: 0;
            margin: 0;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .navbar-menu li:hover .navbar-submenu {
            display: block;
        }

        .navbar-submenu li a {
            padding: 0.5rem 1rem;
        }

        .navbar-toggle {
            display: none;
            cursor: pointer;
            color: #007BFF;
        }

        @media (max-width: 767px) {
            .navbar-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: white;
            }
           
            .navbar-menu.active {
                display: block;
            }

            .navbar-menu li {
                border-bottom: 1px solid rgba(0, 123, 255, 0.2);
                padding-left: 30px;
            }

            .navbar-submenu {
                position: static;
                box-shadow: none;
                padding-left: 30px;
                width: 100%;
            }

            .navbar-toggle {
                display: block;
            }
        }
               /* 页脚样式 */
        footer {
            background-color: #333;
            color: white;
            padding: 40px 0;
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            max-width: 1536px;
            margin: 0 auto;
        }

        .footer-section {
            margin: 20px;
        }

        .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: white;
            text-decoration: none;
        }

        .footer-section ul li a:hover {
            text-decoration: underline;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #555;
        }
              /* banner 样式 */
        .banner {
            background-size: cover;
            background-position: center;
            color: white;
            min-height: 400px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 90px;
            padding: 50px 0;
        }

        .banner h1 {
            font-size: 3rem;
        }

        /* URL 定位样式 */
        .breadcrumb {
            padding: 1rem;
            max-width: 1536px;
            margin: auto;
        }

        .breadcrumb a {
            color: #007BFF;
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }
        

        /* 内容部分样式 */
        .content-container {
            display: flex;
            gap: 20px;
            padding: 20px;
            max-width: 1536px;
    margin: auto;
        }

        .main-content,
        .search-box,
        .contact-info {
            background-color: #ffffff;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .main-content {
            width: 80%;
            line-height: 2;
        }
        .main-content img {
          margin: auto;
         max-width: 95% !important;  /* 图片最大宽度不超过容器 */
         height: auto !important;     /* 保持图片比例 */
             MARGIN-TOP: 2rem;
}
        .main-content:hover,
        .search-box:hover,
        .contact-info:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
           .search-box {
            margin-bottom: 20px;
            position: relative;
        }

        .search-box input[type="text"] {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-sizing: border-box;
        }

        .search-box button {
            background-color: #007BFF;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 20px;
            bottom: 20px;
        }

        .search-box button:hover {
            background-color: #0056b3;
        }


        .main-content h2 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: #007BFF;
            border-bottom: 2px solid #007BFF;
            padding-bottom: 5px;
        }

        .main-content p {
            margin-bottom: 10px;
            color: #333;
        }
           .news-meta {
            font-size: 0.9rem;
            color: #777;
            margin-bottom: 20px;
        }
              .news-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }

        .news-navigation a {
            display: flex;
            align-items: center;
            color: #007BFF;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .news-navigation a:hover {
            color: #0056b3;
        }

        .news-navigation .prev-news i {
            margin-right: 5px;
        }

        .news-navigation .next-news i {
            margin-left: 5px;
        }


        .contact-info {
            flex: 0 0 30%;
        }

        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #007BFF;
            border-bottom: 2px solid #007BFF;
            padding-bottom: 5px;
        }

        .contact-info p {
            margin-bottom: 10px;
            color: #333;
        }

        .contact-info p i {
            margin-right: 10px;
            color: #007BFF;
        }

        .qr-code {
            text-align: center;
            margin: 20px 0;
        }

        .qr-code h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #007BFF;
        }

        .qr-code img {
              margin: auto;
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        @media (max-width: 767px) {
            .content-container {
                flex-direction: column;
            }

            .main-content,
            .search-box,
            .contact-info {
                flex: 1;
                width: auto;
            }
        }

       .category-list {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            padding: 20px;
        }

        @media (max-width: 767px) {
            .category-list {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .category-item {
            background-color: #f4f4f4;
            border-radius: 5px;
            padding: 8px;
            text-align: center;
            transition: background-color 0.3s ease;
        }

        .category-item:hover {
            background-color: #e0e0e0;
        }

        .category-title {
            margin: 0;
            font-size: 16px;
            color: #333;
        }
        .crumbs {
    width: 100%;
    z-index: 2;
    font-size: 14px;
    color: #999
}

.crumbs a {
    display: inline-block;
    color: #333
}

.crumbs a:hover {
    color: #e93274
}
  /* 自定义分页样式 */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
            gap: 0.5rem;
        }
        .pagination li {
            list-style: none;
        }
        .pagination a, .pagination span {
            display: inline-block;
            padding: 0.5rem 1rem;
            border: 1px solid #e2e8f0;
            border-radius: 0.375rem;
            transition: all 0.2s ease;
        }
        .pagination a:hover {
            background-color: #f3f4f6;
            color: #165DFF;
        }
        .pagination .pagination-active {
            background-color: #165DFF;
            color: white;
            border-color: #165DFF;
        }
        .pagination .disabled {
            opacity: 0.5;
            pointer-events: none;
        }